MySQLは無料のオープンソースデータベース管理システムであり、レコードや情報を保存および取得するためにWebアプリケーションで一般的に使用されています。
MySQLは当初MYSQLABによって開発され、現在はOracleCorporationが所有しています。これは、MySQLのフォークであるMariaDBが登場するまで、Linuxオペレーティングシステムの主要なデータベースアプリケーションでした。
この記事では、CentOS 7 /RHEL7にMySQL8.0/5.7をインストールする方法を説明します。
MySQLリポジトリを追加
MySQLはOSリポジトリを介して配布されなくなりました。したがって、MySQLコミュニティサーバーをインストールするには、MySQLの公式リポジトリを追加する必要があります。
rpm -ivh https://dev.mysql.com/get/mysql80-community-release-el7-4.noarch.rpm
次のコマンドを使用して、MySQLリポジトリが追加され、有効になっていることを確認します。
yum repolist all | grep mysql | grep enabled
出力:次のようになります。
mysql-connectors-community/x86_64 MySQL Connectors Community enabled: 221 mysql-tools-community/x86_64 MySQL Tools Community enabled: 135 mysql80-community/x86_64 MySQL 8.0 Community Server enabled: 301
MySQLCommunityServerをインストールする
Oracleは現在、両方の安定したバージョン(v8.0およびv5.7)を提供しています。マシンにインストールするものを選択できます。
MySQL8.0をインストールする
yumコマンドを使用してMySQLコミュニティサーバー8.0をインストールします。
yum install -y mysql-community-server
MySQL5.7をインストールする
古いバージョンのMySQLを試してみたい場合は、以下のコマンドを使用してMySQL5.7をマシンにインストールしてください。
yum install -y mysql-community-server --disablerepo=mysql80-community --enablerepo=mysql57-community
MySQLのインストール後、次のコマンドを使用してMySQLサーバーを起動できます。
systemctl start mysqld
次に、システムの起動時にMySQLサービスが自動的に開始するようにします。
systemctl enable mysqld
最後に、次のコマンドを使用してMySQLサーバーが起動しているかどうかを確認します。
systemctl status mysqld
初期MySQLルートパスワード
CentOS / RHELでは、MySQLの初期パスワードは/var/log/mysqld.log
にあります。 。以下のコマンドを使用して、ログファイルからパスワードを取得できます。
cat /var/log/mysqld.log | grep -i 'temporary password'
出力:
2021-11-27T08:27:27.063799Z 6 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: PJyCjhTjP1:n
安全なMySQLサーバー
次に、mysql_secure_installation
を実行する必要があります MySQLのインストールを保護します。このコマンドは、rootパスワードの設定、匿名ユーザーの削除、rootログインのリモートでの禁止などを処理します。
mysql_secure_installation
出力:
Securing the MySQL server deployment. Enter password for user root: << Enter the initital MySQL root password The existing password for the user account root has expired. Please set a new password. New password: << Enter new MySQL root password Re-enter new password: << Re-enter new MySQL root password The 'validate_password' component is installed on the server. The subsequent steps will run with the existing configuration of the component. Using existing password for root. Estimated strength of the password: 100 Change the password for root ? ((Press y|Y for Yes, any other key for No) : N << Type N as we have already set new password ... skipping. By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y << Type Y to remove anonymous users Success. Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? (Press y|Y for Yes, any other key for No) : Y << Type Y to disallow root login remotely Success. By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? (Press y|Y for Yes, any other key for No) : Y << Type Y to remove test database - Dropping test database... Success. - Removing privileges on test database... Success. Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y << Type Y to reload privilege tables Success. All done!
MySQLサーバーの操作
rootユーザーとそのパスワードを使用してMySQLサーバーにログインします。
mysql -u root -p
出力:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 11 Server version: 8.0.27 MySQL Community Server - GPL Copyright (c) 2000, 2021, Oracle and/or its affiliates. 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>
phpMyAdminをインストール
phpMyAdminは、MySQLおよびMariaDBデータベースを管理するためのオープンソースのWebベースの管理ツールです。以下のリンクをたどって、オペレーティングシステムに基づいてphpMyAdminをインストールおよび構成します。
読む:CentOS 7 /RHEL7にphpMyAdminをインストールする
結論
それで全部です。 MySQL 8.0/5.7をCentOS7/RHEL7にインストールする方法を学んだことを願っています。