CentOS 6 5 下安裝MySQL 5 7 12,使用官網下載的rpm安裝包
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
CentOS 6.5 下安裝MySQL 5.7.12,使用官網下載的rpm安裝包
下載安裝包
下載地址:http://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.12-1.el6.x86_64.rpm-bundle.tar
這你可以參考:如何從官網下載MySQL最新版本的安裝包?
解壓安裝包
tar -xvf mysql-5.7.12-1.el6.x86_64.rpm-bundle.tar
移除已經安裝的早期版本
如果不移除的話,會提示有衝突,版本可能有所不同
yum -y remove mysql-libs-5.1.73*
這個可以參考:
CentOS安裝mysql*.rpm提示conflicts with file from package的解決辦法
CentOS下如何完全解除安裝MySQL?解決解除安裝不乾淨的問題
安裝順序
rpm -ivh mysql-community-common-5.7.12-1.el6.x86_64.rpm rpm -ivh mysql-community-libs-5.7.12-1.el6.x86_64.rpm rpm -ivh mysql-community-client-5.7.12-1.el6.x86_64.rpmrpm -ivh mysql-community-server-5.7.12-1.el6.x86_64.rpmrpm -ivh mysql-community-devel-5.7.12-1.el6.x86_64.rpm
啟動Mysql服務
# service mysqld start初始化 MySQL 資料庫: [確定]Installing validate password plugin: [確定]正在啟動 mysqld:
修改管理員密碼
檢視初始管理員密碼,下面的命令適用於 RHEL, Oracle Linux, CentOS, and Fedora 平臺:
grep 'temporary password' /var/log/mysqld.log
SLES平臺使用下面的命令:
grep 'temporary password' /var/log/mysql/mysqld.log
你會發現初始密碼超級的複雜,還好我使用XShell,可以複製貼上
# grep 'temporary password' /var/log/mysqld.log2016-05-14T02:57:24.372528Z 1 [Note] A temporary password is generated for [email protected]: ?sSq8?.IucXV[[email protected] /]# [[email protected] /]# mysql -uroot -p?sSq8?.IucXVmysql: [Warning] Using a password on the command line interface can be insecure.Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 15Server version: 5.7.12Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>
注意:這種寫法(mysql -uroot -p?sSq8?.IucXV)有時因密碼中的特殊字元而不可行,需要先執行(mysql -uroot -p),再根據提示輸入密碼。
使用下面的命令修改密碼
ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';
密碼必須包含大寫字母小寫字母數字和符號,不然會提示:ERROR 1819 (HY000): Your password does not satisfy the current policy requirements(您的密碼不符合當前的安全策略要求)
授權遠端登入
參考:CentOS6.5下通過Shell修改MySQL初始密碼,開啟遠端登入,授權遠端登入使用者
如果不開啟遠端登入許可權,將會遇到類似下面的錯誤:
在客戶機上使用 Navicat for MySQL 遠端連線就報10038的錯
該問題的案例請參考:mysql遠端報10038錯誤
結束語
注意,使用 yum 安裝的和使用rpm安裝的有所不同(要麼就是不同的版本安裝後初始密碼的位置不同),我記得之前安裝完之後初始密碼是儲存在 /root/.mysql_sercret 檔案中的。
要在Windows下連線還需要做點工作,參考:CentOS下安裝MySQL,Windows下使用Navicat for MySql連線
之前寫過,這次又重新總結,發現還是存在著一些差異!
如果你在安裝過程中發現、遇到了什麼問題,歡迎一起探討。
官網參考:http://dev.mysql.com/doc/refman/5.7/en/linux-installation-rpm.html
=======================分隔符===============================
一篇文章不貼張圖,還真有點不習慣!