[MYSQL] 계정 추가 및 외부 접속 허용
- 07-05
- 1,570 회
- 0 건
계정추가
[code]
create database {디비이름};
grant all privileges on {디비이름}.* to {아이디}@localhost identified by '{비밀번호}' with grant option;
[/code]
외부접속 허용
[code]
grant all privileges on *.* to {아이디}@'%' identified by '{비밀번호}' with grant option;
[/code]