個人的にHotな話題のMySQLですが、PerconaServerを代わりに使用してみました。
環境:CentOS7
インストールは、手抜きですがyumリポジトリから。
yum install http://www.percona.com/downloads/percona-release/redhat/0.1-6/percona-release-0.1-6.noarch.rpm
リポジトリがインストールされたら、perconaserverをyumインストールすればOKです。
yum install Percona-Server-server-57
インストール後、起動。MySQLを起動するのと同じ要領です。
systemctl start mysql
なお、初回起動時にはmysqlのrootパスワードがログに書き込まれます。
[/var/log/mysqld.log]
2018-08-24T21:05:43.934467Z 1 [Note] A temporary password is generated for root@localhost: *********
mysql -u root -p で接続できるか確認してください。
$ mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 21
Server version: 5.7.23-24 Percona Server (GPL), Release 24, Revision 57a9574
Copyright (c) 2009-2018 Percona LLC and/or its affiliates
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
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>
mysql>
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| kuromitsu |
| mysql |
| performance_schema |
+--------------------+
4 rows in set (0.00 sec)