- root로 접속해서 데이터베이스를 생성
mysql> create database test;
mysql> show databases; -->생성 확인해보기 - 생성한 데이터베이스에 접속할 계정아이디와 패스워드를 만듦
(grant all privileges on DB명.* to 아이디@'%' identified by '패스워드';)
mysql> grant all privileges on test.* to test@'%' identified by 'test';
댓글 없음:
댓글 쓰기
참고: 블로그의 회원만 댓글을 작성할 수 있습니다.