<root로 로그인>
# mysql -uroot -p
password: *****
mysql>use mysql
<로그인 할 사용자 생성>
mysql>insert into user(host,user,password) values('접속허용할 호스트네임 or IP','root',password('패스워드'));
<권한주기>
mysql> grant all privileges on *.* to 'root'@'%' identified by '암호' with grant option;
mysql> flush privileges
mysql> select * from user where User = 'root'
<원격지에서 접속 : -h 옵션>
# mysql -h host -u user -p
원본글주소:http://jonnychoe.egloos.com/5217253
'computer science > DataBase' 카테고리의 다른 글
[펌] mysql 완전 삭제 (0) | 2012.04.11 |
---|---|
[펌]mysql root 비밀번호 초기화 (0) | 2012.04.11 |