web-dev-qa-db-ja.com

Centosでbashスクリプトを使用してMYSQL5.7をインストールします

Centos 7を使用していて、vagrantのセットアップ中にmysql5.7をインストールするスクリプトを作成しようとしています。ルートパスワードを手動で変更する方法を知っていますが、これをスクリプトでどのように記述しますか?

私はすでにこれを持っています:

wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm
yum -y localinstall mysql57-community-release-el7-7.noarch.rpm
yum -y install mysql-community-server
service mysqld start

これが私が手動で行うことを知っていることです:一時パスワードを取得します

grep 'temporary' /var/log/mysqld.log

次に、プロンプトでパスを入力して入力します

mysql -u root -p
Enter Passwword:

次に、パスを変更するか、mysql_secure_installationを実行します

ALTER USER 'root'@'localhost' IDENTIFIED BY 'Newhakase-labs123@';
flush privileges;
1
user204588

これらのコマンドをGoogleCloudのCentOS7.5インスタンスに対してテストしました。スクリプトの実行が完了すると、新しいパスワードでデータベースサーバーにログインできるようになります。

#!/bin/bash
# Description: Set up MySQL Community Release 5.7

# Get the repo RPM and install it.
wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm 
yum -y install ./mysql57-community-release-el7-7.noarch.rpm 

# Install the server and start it
yum -y install mysql-community-server 
systemctl start mysqld 

# Get the temporary password
temp_password=$(grep password /var/log/mysqld.log | awk '{print $NF}')

# Set up a batch file with the SQL commands
echo "ALTER USER 'root'@'localhost' IDENTIFIED BY 'Newhakase-labs123@'; flush privileges;" > reset_pass.sql

# Log in to the server with the temporary password, and pass the SQL file to it.
mysql -u root --password="$temp_password" --connect-expired-password < reset_pass.sql
3
Haxiel