CentOS 7インストール構成MySQL 5.6
5522 ワード
CentOS 7インストール構成MySQL 5.6
MySQLのインストール
cd /usr/local
wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm
sudo yum install mysql-server
プロファイル
vim /etc/my.cnf
[mysqld]に次の項目を追加します.
#--------------UTF-8------------------
init-connect='SET NAMES utf8'
character_set_server=utf8
#--------------UTF-8------------------
保存終了
mysqlを再起動
service mysqld restart
mysqlが起動できないことを発見しました.ヒント:
Job for mysqld.service failed because a timeout was exceeded. See "systemctl status mysqld.service" and "journalctl -xe" for details.
mysqlエラーログを表示します.
cat /var/log/mysqld.log
発見ログのヒント:
[ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
解決策:
mysql_install_db --user=mysql --ldata=/var/lib/mysql/
その後再起動コマンドを実行し、起動に成功しました!
ログイン、パスワードの変更
デフォルトアカウントroot、パスワードが空です
[root@VM_57_92_centos ~]# mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.6.36 MySQL Community Server (GPL)
Copyright (c) 2000, 2017, 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> set password for 'root'@'localhost'=password(' ');
Query OK, 0 rows affected (0.00 sec)
リモート・ユーザーの追加、データベースの作成、認可
ユーザーの作成
mysql> CREATE USER ' '@'%' IDENTIFIED BY ' ';
Query OK, 0 rows affected (0.00 sec)
データベースの作成
mysql> CREATE DATABASE blog;
Query OK, 0 rows affected (0.00 sec)
権限
mysql> GRANT ALL ON blog.* TO 'blog'@'%';
Query OK, 0 rows affected (0.00 sec)
blogデータベースの下のすべてのデータテーブルをblogというユーザーに許可する