yum localinstall mysql57-community-release-el7-8.noarch.rpm
yum repolist enabled | grep "mysql.-community."
yum install mysql-community-server
systemctl start mysqld
systemctl enable mysqld
systemctl daemon-reload
一時パスワードを表示する
grep 'temporary password' /var/log/mysqld.log
データベースにログインします(上記の一時パスワードを使用します)
mysql -uroot-p
パスワードを変更する
ALTER USER 'root'@'localhost' IDENTIFIED BY'new password';
これで、centosでのMySQLのインストールは完了です。
Recommended Posts