Q: 명령줄 인터페이스를 통해 MySQL에서 루트 사용자의 비밀번호를 어떻게 제거합니까?
A: 루트 사용자의 비밀번호를 null(즉, 비밀번호 없음)로 설정하려면 MySQL 명령줄 클라이언트에서 다음 단계를 따르세요.
<code class="sql">use mysql; update user set authentication_string=password(''), plugin='mysql_native_password' where user='root';</code>
'플러그인' 필드가 'auth_socket'으로 설정된 경우 비밀번호와 함께 비밀번호를 변경해야 할 수도 있습니다.
<code class="sql">use mysql; update user set authentication_string=password(''), plugin='mysql_native_password' where user='root';</code>
이러한 업데이트가 완료되면 다음 명령을 실행하여 비밀번호를 제공하지 않고도 루트 사용자로 연결할 수 있습니다.
<code class="sql">mysql -u root</code>
위 내용은 MySQL에서 루트 사용자의 비밀번호를 제거하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!