MySQLは、レコードや情報を保存および取得するためにWebアプリケーションで一般的に使用される無料のデータベース管理システムです。当初はMYSQLABによって開発され、現在はOracleCorporationが所有しています。
MySQLは、MySQLのフォークであるMariaDBが登場するまで、Linuxオペレーティングシステムの主要なデータベースでした。
ここでは、MySQL8.0をFedora35 /Fedora34にインストールする方法を説明します。
MySQLリポジトリを追加
まず、MySQLの公式リポジトリを追加して、MySQLコミュニティサーバーをインストールします。
# Fedora 35 sudo rpm -ivh https://dev.mysql.com/get/mysql80-community-release-fc35-1.noarch.rpm # Fedora 34 sudo rpm -ivh https://dev.mysql.com/get/mysql80-community-release-fc34-2.noarch.rpm
次に、次のコマンドを使用して、MySQLリポジトリが有効になっているかどうかを確認します。
sudo dnf repolist all | grep mysql | grep enabled
出力:
mysql-connectors-community MySQL Connectors Community enabled mysql-tools-community MySQL Tools Community enabled mysql80-community MySQL 8.0 Community Server enabled
MySQLCommunityServerをインストールする
MySQL8.0をインストールする
リポジトリを追加したら、dnf
を使用します コマンドを入力して、MySQLコミュニティサーバー8.0をインストールします。
sudo dnf install -y mysql-community-server
MySQL5.7をインストールする
MySQL5.7はFedora35およびFedora34では使用できませんMySQLサーバーのインストール後、次のコマンドを使用してサービスを開始できます。
sudo systemctl start mysqld
次に、システムの起動時にMySQLサービスを有効にします。
sudo systemctl enable mysqld
最後に、次のコマンドを使用してMySQLサーバーのステータスを確認します。
sudo systemctl status mysqld
初期MySQLルートパスワード
Fedoraでは、初期のMySQLルートパスワードは/var/log/mysqld.log
にあります。 。以下のコマンドを使用して、ログファイルから初期パスワードを取得できます。
sudo cat /var/log/mysqld.log | grep -i 'temporary password'
出力:
2021-11-27T07:52:26.014940Z 6 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: mSa1,T_!xPyp
安全なMySQLサーバー
次に、mysql_secure_installation
を実行する必要があります MySQLのインストールを保護します。このコマンドは、rootパスワードの設定、匿名ユーザーの削除、rootログインのリモートでの禁止などを処理します。
sudo 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サーバーの操作
これで、mysql
を使用できます MySQLサーバーにログインし、目的のアクティビティを実行するコマンド。
mysql -u root -p
出力:
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 12 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>
結論
それで全部です。 MySQL8.0をFedora35/Fedora34にインストールする方法を学んだことを願っています。