MySQL
-
mysql 의 기본 데이터베이스인 mysql컴퓨터/서버관리 2008. 9. 10. 18:00
# mysql -u root -p asdf mysql> connect mysql; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Connection id: 410643 Current database: mysql mysql> show tables; +-----------------+ | Tables_in_mysql | +-----------------+ | columns_priv | | db | | func | | host | | tables_priv | | user | +-----------------+ 6 rows in..
-
mysql에서 root 암호 변경컴퓨터/서버관리 2008. 9. 9. 22:05
/usr/local/mysql/bin에 보면 mysql데이터베이스를 관리할 수 있는 몇가지 유용한 명령어들이 있다. 이중 mysqladmin이라는 명령어는 mysql을 시작, 종료, 재시작등을 할 수 있는 아주 중요한 명령어이다. 이 명령어를 이용하여 root사용자의 암호를 변경할 수 있다. [root@localhost root]# [root@localhost root]# mysqladmin -u root -p password 새로운암호 Enter password:이전암호 [root@localhost root]#
-
mysql 콘솔 명령어컴퓨터/서버관리 2008. 2. 18. 20:10
mysql 명령어 확인 $ man mysql $ man mysqladmin mysql 접속 $ mysql -umyusername -pmypassword -u, -p 다음에 값을 한칸 띠고 써도 된다. 생성되어 있는 DB들 보기 mysql> show databases; 새로운 DB 생성 mysql> create database fxwoodbury2; fxwoodbury2 라는 DB를 생성함 DB 삭제 mysql> drop database fxwoodbury2; fxwoodbury2 라는 DB를 삭제함 DB 접속 mysql> connect fxwoodbury2; 테이블 리스트 보기 mysql> show tables;