MySQL5.6のrootパスワードを新しいパスワードに変更してみる

スポンサーリンク

VirtualBoxのインストールと、Vagrantをインストールし、CentOS7を動かしMySQLをインストールしました。今回はMySQLのコマンドラインからrootのパスワードを新しいパスワードに変更してみる。

■MySQLのバージョン

mysql Ver 14.14 Distrib 5.6.49, for Linux (x86_64) using EditLine wrapper

■Vagrantにログインする

Windows10の検索ボックスで「cmd」と検索して「コマンドプロンプト」を起動します。

vagrant up

起動後、上記のコマンドでVagrantを起動しますので、入力しEnterキーを押します。

vagrant ssh

Enterキーを押すとVagrantが起動。起動後、Vagrantへのログインを行うので、上記のコマンドを入力し、Enterキーを押します。

■Vagrantへのログイン後、MySQLを停止する

Last login: Sat Aug 1 06:40:16 2020 from 10.0.2.2
[vagrant@localhost ~]$

Enterキーを押すと、Vagrantへのログインが完了します。

[vagrant@localhost ~]$ mysqladmin password -u root -p

ログインが完了となりますので、まず上記のコマンドでMySQLを停止しますので、入力しEnterキーを押します。

Enter password:

Enterキーを押すと、現在MySQLのrootのパスワードを入力してくださいと表示されますので、入力し、Enterキーを押します。

New password:

Enterキーを押すと、「New password:」と表示されますので、変更する新しいパスワードを入力し、Enterキーを押します。

Confirm new password:

Enterキーを押すと、「Confirm new password:」と表示され、確認のためにもう1度新しいパスワードを入力し、Enterキーを押します。

Enterキーを押すと、何も表示されませんが、これでrootのパスワードが新しいパスワードに変更になりました。

[vagrant@localhost ~]$ mysql -u root -p

念の為、新しいパスワードを試すために、上記のコマンドを入力し、Enterキーを押します。

Enter password:

Enterキーを押すと、変更した新しいパスワードが求められますので、入力しEnterキーを押します。

Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.6.49 MySQL Community Server (GPL)

Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.

mysql>

Enterキーを押すと、MySQLに接続ができました。

コメント

タイトルとURLをコピーしました