Contents
mariadbの削除
centOS7には標準でmariadbがインストールされている。
競合を避けるために予めアンインストールする。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# rpm -qa | grep maria mariadb-libs-5.5.50-1.el7_2.x86_64 # yum remove mariadb-libs Downloading packages: Running transaction check Running transaction test Transaction test succeeded Running transaction 削除中 : 2:postfix-2.10.1-6.el7.x86_64 1/2 削除中 : 1:mariadb-libs-5.5.50-1.el7_2.x86_64 2/2 検証中 : 1:mariadb-libs-5.5.50-1.el7_2.x86_64 1/2 検証中 : 2:postfix-2.10.1-6.el7.x86_64 2/2 削除しました: mariadb-libs.x86_64 1:5.5.50-1.el7_2 依存性の削除をしました: postfix.x86_64 2:2.10.1-6.el7 完了しました! |
MySQLリポジトリの追加
参考ページによるとCentOS7から標準リポジトリでMySQLが提供されないため、MySQLリポジトリをシステムに追加する必要がある。
RHEL系の Linux は、パッケージ管理ツール yum を利用して様々なソフトウェアをインストールすることができますが、CentOS 7 からは標準リポジトリで MySQL が提供されなくなり、代わりに MySQL と互換性のある MariaDB が提供されるようになりました。 MySQL は、MySQL 公式の yum リポジトリを利用することでインストールできます。
1 |
# yum localinstall http://dev.mysql.com/get/mysql57-community-release-el6-7.noarch.rpm |
MySQLのリポジトリの状態確認
1 2 3 4 5 6 7 8 9 10 11 |
# yum repolist all | grep mysql mysql-connectors-community/x86_64 MySQL Connectors Community 有効: 21 mysql-connectors-community-source MySQL Connectors Community - Sourc 無効 mysql-tools-community/x86_64 MySQL Tools Community 有効: 38 mysql-tools-community-source MySQL Tools Community - Source 無効 mysql55-community/x86_64 MySQL 5.5 Community Server 無効 mysql55-community-source MySQL 5.5 Community Server - Sourc 無効 mysql56-community/x86_64 MySQL 5.6 Community Server 無効 mysql56-community-source MySQL 5.6 Community Server - Sourc 無効 mysql57-community/x86_64 MySQL 5.7 Community Server 有効: 130 mysql57-community-source MySQL 5.7 Community Server - Sourc 無効 |
MySQL5.6のリポジトリが無効(disabled)になっているので、この状態を反転させる。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# yum -y install yum-utils # yum-config-manager --disable mysql57-community # yum-config-manager --enable mysql56-community # yum repolist all | grep mysql mysql-connectors-community/x86_64 MySQL Connectors Community 有効: 21 mysql-connectors-community-source MySQL Connectors Community - Sourc 無効 mysql-tools-community/x86_64 MySQL Tools Community 有効: 38 mysql-tools-community-source MySQL Tools Community - Source 無効 mysql55-community/x86_64 MySQL 5.5 Community Server 無効 mysql55-community-source MySQL 5.5 Community Server - Sourc 無効 mysql56-community/x86_64 MySQL 5.6 Community Server 有効: 299 mysql56-community-source MySQL 5.6 Community Server - Sourc 無効 mysql57-community/x86_64 MySQL 5.7 Community Server 無効 mysql57-community-source MySQL 5.7 Community Server - Sourc 無効 |
MySQLのインストール
1 2 3 |
# yum -y install mysql-community-server # mysqld --version mysqld Ver 5.6.33 for Linux on x86_64 (MySQL Community Server (GPL)) |
MySQLの起動
1 2 |
# systemctl start mysqld # systemctl enable mysqld |
mysql_secure_installationの実行
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MySQL to secure it, we'll need the current password for the root user. If you've just installed MySQL, and you haven't set the root password yet, the password will be blank, so you should just press enter here. Enter current password for root (enter for none): ← 新規作成のためパスワードなしでEnter OK, successfully used password, moving on... Setting the root password ensures that nobody can log into the MySQL root user without the proper authorisation. Set root password? [Y/n] y ← 新規パスワード作成するので "Y" New password: PASSWORD ← 新規パスワードの入力 Re-enter new password: PASSWORD ← 再度 新規パスワードの入力 Password updated successfully! Reloading privilege tables.. ... Success! 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? [Y/n] y anonymousユーザの削除をします "Y" ... 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? [Y/n] y ← リモートホストからのrootログインを禁止する "Y" ... 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? [Y/n] y ← テストデータベースの削除をします "Y" - Dropping test database... ERROR 1008 (HY000) at line 1: Can't drop database 'test'; database doesn't exist ... Failed! Not critical, keep moving... - 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? [Y/n] y ← ユーザ権限が保存されているテーブルをリロードする "Y" ... Success! All done! If you've completed all of the above steps, your MySQL installation should now be secure. Thanks for using MySQL! Cleaning up... |