1. root로 접근하여 db 생성
mysql> create database testDB;
생성db확인
mysql> show create database testDB;
2. 사용자 추가/사용권한 부여
mysql> grant all privileges on testDB.* to test1@localhost identified by '12345';
** 참고로 현재 사용자 확인
mysql>use mysql;
mysql> select host, user from user;
create user test2@localhost identified by '12345';
계정삭제
drop user test2@localhost;
댓글 없음:
댓글 쓰기