Mysql root 암호 초기화 방법
Windows 기준입니다.
1.
먼저 mysql 관련 프로세스를 모두 종료합니다.
mysql.exe, mysqld.exe, mysqlc.exe 등 모두 종료해야 합니다.
2.
실행 창에서 cmd 또는 command 로 코맨드 창을 2개 엽니다.
첫번째 창에는 아래와 같은 명령으로 암호 없이 mysql 에 접속가능하게 합니다.
mysqld --skip-grant
두 번째 창에서 root 암호를 변경해 줍니다.
c:\>mysql
mysql>mysql -uroot mysql
mysql>update user set password=password('new password') where user='root';
mysql>flush privileges;
mysql>quit
새로운 암호로 로그인을 확인해 봅니다.
Microsoft Windows [Version 5.2.3790] (C) Copyright 1985-2003 Microsoft Corp.
C:\Documents and Settings\Administrator>mysql ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: N O)
C:\Documents and Settings\Administrator>mysql -uroot mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 7 Server version: 5.1.41-community MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> update user set password=password('my password') where user='root'; Query OK, 1 row affected (0.19 sec) Rows matched: 1 Changed: 1 Warnings: 0
mysql> mysql> flush privileges; Query OK, 0 rows affected (0.00 sec)
mysql> quit Bye
C:\Documents and Settings\Administrator> |
'일반 > 인터넷' 카테고리의 다른 글
미디어위키 설치 (0) | 2013.11.26 |
---|---|
가족관계 증명서 인터넷 무료 출력 프로그램 (3) | 2013.04.24 |
웹(이메일)의 압축파일(ZIP 등), 보안 인증, 디지털 서명 관련 (0) | 2011.12.10 |
악성코드,스파이웨어,검색도우미,애드웨어, 쇼핑도우미 등 배포는 다음 블로그에서 하세요.~ (6) | 2011.09.02 |
RUNDLL, 지정된 모듈을 찾을 수 없습니다, Microsoft, WinServerDll.dll (1) | 2011.09.02 |
RUNDLL, 지정된 모듈을 찾을 수 없습니다, Microsoft, spoolver.dll (2) | 2011.09.02 |
현재의 웹 페이지에서 신뢰할 수 있는 사이트 목록에 포함되어 있는 사이트를 열려고 합니다. 해당 사이트를 열도록 허용하시겠습니까? (5) | 2011.08.11 |
midisappe.dll 파일 오류 (6) | 2011.08.02 |
네이버 파워 지식인 상품 받다 (0) | 2011.04.22 |
Office 2003, Office 2007 또는 Office 2010 제품군을 제어판에서 제거할 수 없을 때 제거하는 방법 (0) | 2011.02.20 |