5.7和以前版本的MySQL有一些不一樣,現把CentOS 7下MySQL 5.7安裝、配置與應用完整過程記下來,或許對新手來講有用。mysql
本文描述的安裝是採用通用的二進制壓縮包(linux – Generic)以解壓方式安裝,至關於綠色安裝了。linux
1、下載通用安裝二進制包sql
先下載mysql安裝包:打開 http://dev.mysql.com/downloads/mysql/
選擇 linux – Generic並在其下選擇
Linux – Generic (glibc 2.5) (x86, 64-bit), Compressed TAR Archive
進行下載。能夠先下載到一個臨時目錄裏,解壓後,獲得兩個包:
mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz
mysql-test-5.7.11-linux-glibc2.5-x86_64.tar.gz
只須要mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz 這個包就好了。shell
2、創建用戶和目錄服務器
創建用戶mysql,組mysql。後面mysql就使用這個用戶來運行(注意這也是mysql啓動腳本中默認的用戶,所以最好不要更名)。socket
(使用-r參數表示mysql用戶是一個系統用戶,不能登陸)分佈式
創建目錄/work/program,後面mysql就安裝在這個目錄下面。ide
3、安裝函數
【解壓】
將前面獲得的mysql-5.7.11-linux-glibc2.5-x86_64.tar.gz解壓至/work/program目錄下測試
這時在program下獲得的目錄名很長,若是不想更名,則能夠創建一個聯接:
此後就能夠用/work/program/mysql來找到mysql的安裝目錄了
注意,若是mysql目錄下沒有data目錄,手動建一個。
【目錄權限設置】
將mysql及其下全部的目錄全部者和組均設爲mysql:
【初始化】
注意:
初始化成功後出現以下信息:
201x-xx-xxT07:10:13.583130Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use –explicit_defaults_for_timestamp server option (see documentation for more details).
201x-xx-xx T07:10:13.976219Z 0 [Warning] InnoDB: New log files created, LSN=45790
201x-xx-xx T07:10:14.085666Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.
201x-xx-xx T07:10:14.161899Z 0 [Warning] No existing UUID has been found, so we assume that this is the first time that this server has been started. Generating a new UUID: 1fa941f9-effd-11e5-b67d-000c2958cdc8.
201x-xx-xx T07:10:14.165534Z 0 [Warning] Gtid table is not ready to be used. Table ‘mysql.gtid_executed’ cannot be opened.
201x-xx-xx T07:10:14.168555Z 1 [Note] A temporary password is generated for root@localhost: q1SLew5T_6K,
注意最後一行,這也是和之有版本不一樣的地方,它給了root一個初始密碼,後面要登陸的時候要用到這個密碼。
【配置】
將mysql/support-files下的my-default.cnf更名爲my.cnf,拷到/etc下(或者考到{mysql}下,而後做一個軟連接到/etc下):
my.cnf中關鍵配置:
[mysqld]
basedir = /work/program/mysql
datadir = /work/program/mysql/data
port = 3306
socket = /work/program/mysql/tmp/mysql.sock
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
注意,tmp目錄不存在,請建立之。
若是不把my.cnf拷到/etc下,運行時會出現:
mysqld: Can’t change dir to ‘/usr/local/mysql/data/’ (Errcode: 2 – No such file or directory)
這樣的出錯提示,說明它沒找到my.cnf中的配置;而去找了程序編譯時的默認安裝位置:/usr/local/mysql
4、運行
【運行服務器程序】
注:在這個啓動腳本里已默認設置–user=mysql;在腳本末尾加&表示設置此進程爲後臺進程,區別就是在控制檯輸入bg,便可將當前進程轉入後臺,當前shell可進行其餘操做。
【中止mysql】
{mysql}/bin/mysqladmin -uroot -p
(注意此時的root是指mysql的root用戶)
5、設置mysql以服務運行而且開機啓動
將{mysql}/ support-files/mysql.server 拷貝爲/etc/init.d/mysql並設置運行權限
把mysql註冊爲開機啓動的服務
固然也能夠手動進行服務的開啓和關閉:
6、客戶端鏈接測試
此時要求輸入密碼,就是前面初始化時生成的密碼。
這時若是鏈接服務的時候出現錯誤:
ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ (2)
則須要在在my.cnf中填加:
[client]
socket = /work/program/mysql/tmp/mysql.sock
連上後,在作任何操做前,mysql要求要改掉root的密碼後才能進行操做。
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
mysql> alter user ‘root’@’localhost’ identified by ‘xxxxxxx';
7、TIPS
【查看mysql是否運行】
ps -ef|grep mysqld
netstat -lnp | grep -i mysql
【mysql啓動時讀取配置文件my.cnf的順序】
能夠運行以下命令查看:
./bin/mysqld –verbose –help |more
Default options are read from the following files in the given order:
/etc/my.cnf /etc/mysql/my.cnf /usr/local/mysql/etc/my.cnf ~/.my.cnf
能夠看到,啓動時能夠從上述目錄下讀取配置文件my.cnf。若是當前my.cnf文件不位於上述位置,則必須考過去或作連接。
MySQL 5.7新特性之Generated Column(函數索引) http://www.linuxidc.com/Linux/2016-02/128066.htm
升級到MySQL 5.7 解決分區問題 http://www.linuxidc.com/Linux/2016-02/128060.htm
MySQL 5.7 完美的分佈式事務支持 http://www.linuxidc.com/Linux/2016-02/128053.htm
MySQL 5.7 新特性詳解 http://www.linuxidc.com/Linux/2016-01/127636.htm
MySQL 5.7.11 發佈下載 http://www.linuxidc.com/Linux/2016-02/128268.htm