DB/MySQL2013. 9. 4. 09:23

출처 - http://blog.daum.net/_blog/BlogTypeView.do?blogid=0ZC9T&articleno=17&_bloghome_menu=recenttext

필요한것만 딱딱 정리해주셨네..


요기는 내가 필요한것만..


#사용자 추가

insert into user(host,user,password) values('localhost','계정명',password('비밀번호^')); //로컬

insert into user(host,user,password) values('%','계정명',password('비밀번호')); //외부접속

flush privileges;


#권한 추가

grant all privileges on DB명.* to 계정명@localhost identified by '비밀번호' with grant option; //로컬

grant all privileges on DB명.* to '계정명'@'%' identified by '비밀번호' with grant option; //외부접속

flush privileges;



#버전마다 계정생성시 차이가 있을수있다고 한다.

현재 버전은 - 5.1.69

Posted by E.No