ROOT로그인하기
[daforu@os daforu]$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 66 to server version: 4.0.18-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
데이터베이스만들기
mysql> create database db명;
Query OK, 1 row affected (0.00 sec)
계정생성SQL문
mysql> GRANT USAGE ON *.* TO 아이디@localhost IDENTIFIED BY "비밀번호";
Query OK, 0 rows affected (0.00 sec)
생성한데이터베이스에 사용권한 부여하기
mysql> use db명;
Database changed
mysql> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON db명.* TO 아이디@localhost;
Query OK, 0 rows affected (0.01 sec)
***
또는
mysql> GRANT all ON db명.* TO 아이디@localhost; <- 선택디비관련모든권한주기
Query OK, 0 rows affected (0.00 sec)
권한을 다시 로드하기
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
.. 다시 로그인
[daforu@os bin]$ pwd
/usr/local/mysql/bin
[daforu@os bin]$ mysql -u 아이디 -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 90 to server version: 4.0.18-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
현재 계정에 있는 테이블은 2개!
mysql> show databases;
+-------------+
| Database |
+-------------+
| blog_deokae |
| test |
+-------------+
2 rows in set (0.00 sec)
'프로그래밍' 카테고리의 다른 글
[보리보드] DB 설계 작업 (0) | 2008.02.21 |
---|---|
[JSP] string 출력시 한글 안깨지게 하기. (1) | 2007.07.16 |
[JSP+MYSQL] JSP에서 Mysql DB 읽어오기 (0) | 2007.07.16 |
mysql 테이블 생성하기 (0) | 2007.07.16 |
자바의 시작 hello java (0) | 2007.06.10 |