phpMyAdmin 문제입니다. 도와주세요 ㅠㅠ 정보
phpMyAdmin 문제입니다. 도와주세요 ㅠㅠ
본문
댓글 전체
지우고 다시해보세요. 저도 그랬는데..지우고 다시했음.
데이타 베이스 root 권한을 가진다는 것은
서버 최고관리자 권한을 가지고 있는걸로 판단했을때
ssh 로 접근해서 mysql 의 root 를 확 바꿔버립니다.
killall mysqld
/usr/local/mysql/bin/mysqld_safe --skip-grant-tables &
mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2 to server version: 4.0.20-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use mysql
Database changed
mysql> update user set password=password('비밀번호') where user='root';
Query OK, 2 rows affected (0.02 sec)
Rows matched: 2 Changed: 2 Warnings: 0
mysql> exit
Bye
killall mysqld
/usr/local/mysql/bin/mysqld_safe &
서버 최고관리자 권한을 가지고 있는걸로 판단했을때
ssh 로 접근해서 mysql 의 root 를 확 바꿔버립니다.
killall mysqld
/usr/local/mysql/bin/mysqld_safe --skip-grant-tables &
mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2 to server version: 4.0.20-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use mysql
Database changed
mysql> update user set password=password('비밀번호') where user='root';
Query OK, 2 rows affected (0.02 sec)
Rows matched: 2 Changed: 2 Warnings: 0
mysql> exit
Bye
killall mysqld
/usr/local/mysql/bin/mysqld_safe &