MySQL5.7

MySQL5.7 global status

estis2015/10/26 (月) 00:04 に投稿
mysql> show global status;
+-----------------------------------------------+--------------------------------------------------+
| Variable_name                                 | Value                                            |
+-----------------------------------------------+--------------------------------------------------+
| Aborted_clients                               | 0                                                |
| Aborted_connects                              | 1                                                |

MySQL5.7 global variables

estis2015/10/26 (月) 00:00 に投稿
mysql> show global variables;
+----------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

MySQL5.7 インストール直後のデータベースとテーブル

estis2015/10/25 (日) 23:52 に投稿
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)


mysql> show table status from information_schema;
+---------------------------------------+--------+---------+------------+------+----------------+-------------+-----------------+--------------+-----------+----------------+---------------------+-------------+------------+-----------------+----------+------------------+---------+

MySQL5.7 インストール直後のユーザー

estis2015/10/25 (日) 23:41 に投稿

mysql.sys@localhost ユーザーがいる。

max_questions
max_updates
max_connections
max_user_connections
plugin
authentication_string
password_expired
password_last_changed
password_lifetime
account_locked

といった項目が増えている。

mysql> select * from mysql.user\G
*************************** 1. row ***************************
                  Host: localhost
                  User: root
           Select_priv: Y
           Insert_priv: Y
           Update_priv: Y
           Delete_priv: Y
           Create_priv: Y
             Drop_priv: Y
           Reload_priv: Y

MySQL5.7 を CentOS6 にソースからインストール

estis2015/10/25 (日) 15:00 に投稿

Cent0S6 最小構成にソースインストール

参考URL
https://dev.mysql.com/doc/refman/5.7/en/installing-source-distribution…

システムユーザー mysql 作成

# groupadd mysql
# useradd -r -g mysql mysql

必要なものを事前にインストール
(まとめて書いているけれど、初回試行錯誤の賜物。gcc* は、手抜き重視のため)

# yum install cmake
# yum install gcc*
# yum install git
# yum install ncurses-devel
# yum install bison

ソースダウンロード

# cd /usr/local/src/
# wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.9.tar.gz
# tar xvzf mysql-5.7.9.tar.gz

コンパイル & インストール