MySQL 계정생성하기
※ 루트 권한으로 접속
# mysql -u root -p
※ 사용하고자 하는 데이타베이스 생성
mysql> create database db명;
※ 계정에게 db명의 database 사용의 모든권한을 준다
mysql> grant all privileges on db명.* to 계정@localhost identified by "암호";
※ 로컬외의 외부접속을 위한 설정
mysql> grant all privileges on db명.* to 계정@"%" identified by "암호";
※ 권한을 다시 로드한다
mysql> flush privileges;