Products & Services/WordPress

wordpress 비밀번호 분실시 대응.

TechNote.kr 2016. 1. 11. 15:09
728x90

wordpress를 무심코 설치하다 보니, 그냥 임의로 들어있는 비밀번호가 나의 비밀번호가 되어 버렸다.

충격적이게도 너무 복잡한 비밀번호라 기억도 안나고 바로 밑에 비밀번호찾기는 이메일로 전송해 주는것 같은데 내서버에는 메일서버도 들어 있지 않아 비밀번호를 찾을 방법이 없다.


이럴때는 그냥 Database를 뒤져서 설정하는 수 밖에 없다.


mysql> use wordpress;

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A


Database changed

mysql> update wp_users set user_pass = md5("newpassword") where ID = 1;

Query OK, 1 row affected (0.00 sec)

Rows matched: 1  Changed: 1  Warnings: 0


위와 같이 하고 새로 설정한 비밀번호를 넣고 들어가면 접속 성공.!

728x90