Forgot the MySQL root user password on Mac OS X system and need to reset.

1036 단어
Have you forgotten your Mac OS X 'ROOT' password and need to reset it? Follow these 4 simple steps: MySQL 루트 사용자의 로그인 비밀번호를 잊으셨습니까?비밀번호 재설정은 다음 4가지를 기준으로 수행할 수 있습니다.
  • Stop the mysqld server. Typically this can be done by from'System Prefrences'> MySQL >'Stop MySQL Server'(설정에서 MySQL이 실행되는 서비스를 먼저 닫음)
  • Start the server in safe mode with privilege bypass From a terminal: (터미널에서 다음 명령을 사용하여 MySQL 서비스를 보안 모드로 오픈)
  • sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables
    
  • In a new terminal window: (방금 터미널은 무시하고 새 터미널 창을 열고 다음 명령을 입력함)
  •  a). sudo /usr/local/mysql/bin/mysql -u root
    

    (다음 명령에서 New Password를 비밀번호로 바꿉니다)
      b). UPDATE mysql.user SET Password=PASSWORD('NewPassword') WHERE user='root'
    
    c). FLUSH PRIVILEGES
    
    d). \q
    
  • Stop the mysqld server again and restart it in normal mode. (설정에서 MySQL이 실행하는 서비스를 다시 닫고 다시 시작합니다.)
  • 좋은 웹페이지 즐겨찾기