免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

MYSQL5.7.17版本的安裝步驟-創新互聯

本篇內容主要講解“MYSQL5.7.17版本的安裝步驟”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“MYSQL5.7.17版本的安裝步驟”吧!

創新互聯建站歡迎來電:13518219792,為您提供成都網站建設網頁設計及定制高端網站建設服務,創新互聯建站網頁制作領域十年,包括成都宣傳片制作等多個行業擁有多年建站經驗,選擇創新互聯建站,為網站錦上添花!

MYSQL 5.7.17 安裝:

  • 軟件獲取:

官網下載mysql-advanced-5.7.17-linux-glibc2.5-x86_64.tar.gz

  • 解壓安裝:

解壓mysql-advanced-5.7.17-linux-glibc2.5-x86_64.tar.gz

tar -xvzf mysql-advanced-5.7.17-linux-glibc2.5-x86_64.tar.gz

將解壓的安裝文件拷貝到安裝目錄(可自定義)

[root@VMOS01 mysql]# cp -r mysql-advanced-5.7.17-linux-glibc2.5-x86_64 /usr/local/

[root@VMOS01 mysql]# cd /usr/local

[root@VMOS01 local]# mv mysql-advanced-5.7.17-linux-glibc2.5-x86_64 mysql-5.7.17

  • 建立軟鏈接:

[root@VMOS01 local]# ln -s mysql-5.7.17 mysql

[root@VMOS01 local]# ln -s /usr/local/mysql/bin/mysql  /usr/bin/mysql

  • 添加MYSQL 運行用戶:

[root@VMOS01 local]# useradd -r -M -u 496 -s /sbin/nologin mysql

將軟件、目錄賦權給運行用戶mysql:

[root@VMOS01 local]# chown -R mysql.mysql /usr/local/mysql-5.7.17/

[root@VMOS01 local]# chown -R mysql.mysql /usr/local/mysql

[root@VMOS01 local]# chgrp -R mysql /usr/local/mysql-5.7.17/

  • 初始化mysql db:

[root@VMOS01 local]# cd /usr/local/mysql

[root@VMOS01 bin]# cd ..

[root@VMOS01 mysql]# ./bin/mysql_install_db --user=mysql --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data/

2017-04-09 22:38:11 [WARNING] mysql_install_db is deprecated. Please consider switching to mysqld --initialize

2017-04-09 22:38:20 [WARNING] The bootstrap log isn't empty:

2017-04-09 22:38:20 [WARNING] 2017-04-10T05:38:12.530858Z 0 [Warning] --bootstrap is deprecated. Please consider using --initialize instead

mysql5.7新特性:由上面可以看出, mysql_install_db 已經不再推薦使用了,建議改成 mysqld --initialize 完成實例初始化。

[root@VMOS01 mysql]# ./bin/mysqld --defaults-file=/etc/my.cnf --user=mysql --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data/  --initialize

2017-04-10T06:12:09.706181Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).

2017-04-10T06:12:11.269373Z 0 [Warning] InnoDB: New log files created, LSN=45790

2017-04-10T06:12:11.496771Z 0 [Warning] InnoDB: Creating foreign key constraint system tables.

2017-04-10T06:12:11.564642Z 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: a27f16b1-1db4-11e7-b5f3-000c2993673d.

2017-04-10T06:12:11.566539Z 0 [Warning] Gtid table is not ready to be used. Table 'mysql.gtid_executed' cannot be opened.

2017-04-10T06:12:12.196832Z 0 [Warning] CA certificate ca.pem is self signed.

2017-04-10T06:12:12.439938Z 1 [Note] A temporary password is generated for root@localhost: S8t6ikvw<t1E 【記住初始密碼】

  • 啟動mysql:

[root@VMOS01 support-files]# ./mysql.server start

Starting MySQL SUCCESS!

***

  • 將mysql添加到系統服務管理:

[root@VMOS01 support-files]# cp -v mysql.server /etc/init.d

`mysql.server' -> `/etc/init.d/mysql.server'

[root@VMOS01 support-files]# cd /etc/init.d

[root@VMOS01 init.d]# chkconfig --add mysql.server

[root@VMOS01 init.d]# service mysql.server status

SUCCESS! MySQL running (33215)

[root@VMOS01 init.d]# service mysql.server stop

Shutting down MySQL.. SUCCESS!

[root@VMOS01 init.d]# service mysql.server start

Starting MySQL. SUCCESS!

  • 注意點:

編輯my.cnf 讓本地命令行登陸管理mysql, 不會提示找不到mysql.sock文件錯誤:

[root@VMOS01 mysql]# more /etc/my.cnf

[client]

socket=/var/lib/mysql/mysql.sock

[root@VMOS01 init.d]# mysql -uroot -p

Enter password: 【輸入初始DB的密碼】

**************************

  • 需要更改root@localhost初始密碼:

第一次登陸mysql,需要更改root@localhost密碼,否則會出現如下錯誤:

[root@VMOS01 support-files]# mysql -ur0ot -p

Enter password:

mysql> show databases;

ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

mysql> alter user root@localhost identified by "Root15()";

mysql> show databases;

+--------------------+

| Database               |

+--------------------+

| information_schema |

| mysql              |

| performance_schema |

| sys                |

+--------------------+

至此mysql 5.7.17安裝完成。

到此,相信大家對“MYSQL5.7.17版本的安裝步驟”有了更深的了解,不妨來實際操作一番吧!這里是創新互聯網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

本文題目:MYSQL5.7.17版本的安裝步驟-創新互聯
文章分享:http://m.newbst.com/article2/dggoic.html

成都網站建設公司_創新互聯,為您提供網站策劃響應式網站軟件開發企業建站動態網站自適應網站

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

外貿網站制作