1. 程式人生 > >mysql 指定版本安裝

mysql 指定版本安裝

inux star evel 解決方法 如果 重要 per -i connect

CentOS Mysql 指定版本安裝

1.檢查mysql rpm相關的包是否安裝(很重要!!!)

rpm -qa | grep -i mysql

mysql-libs-5.1.61-4.el6.x86_64 如果存在則刪除

yum -y remove mysql-libs 刪除依賴包。

2.下載制定版本rpm包 http://downloads.mysql.com/archives/community/

選擇Linux 通用版本

Client Utilities 和 MySQL Server 還有mysql-devel 三個都需要下載安裝

使用 wget 復制的下載連接下載mysql-server、mysql-client和mysql-devel

3.下載完成後,安裝rpm包

Rpm -ivh MySQL-server-5.6.10-1.linux_glibc2.5.x86_64.rpm

錯誤信息

原因缺少libaio庫

解決方法

wget http://mirror.centos.org/centos/6/os/x86_64/Packages/libaio-0.3.107-10.el6.x86_64.rpm

rpm -ivh libaio-0.3.107-10.el6.x86_64.rpm 安裝

原因:缺少依賴包perl

解決方法:yum -install -y perl

安裝mysql-client

wget http://downloads.mysql.com/archives/get/file/MySQL-client-5.6.10-1.linux_glibc2.5.x86_64.rpm

rpm -ivh MySQL-client-5.6.10-1.linux_glibc2.5.x86_64.rpm

安裝mysql-devel

wget http://downloads.mysql.com/archives/get/file/MySQL-devel-5.6.10-1.linux_glibc2.5.x86_64.rpm

rpm -ivh MySQL-devel-5.6.10-1.linux_glibc2.5.x86_64.rpm

4.安裝成功後修改配置文件

vi /etc/my.cnf

[mysqld]

# Options for mysqld process:

#skip-grant-tables

character_set_server=utf8

lower_case_table_names=1

max_connections=1000

datadir=/var/lib/mysql

清空之後把上面的復制進去保存退出

5.開啟mysql服務

Service mysql start

6.修改mysql密碼

service mysql stop

mysqld_safe --user=mysql --skip-grant-tables --skip-networking &

mysql -u root

use mysql

UPDATE user SET password=password("server") WHERE user=‘root‘;

修改後的密碼為server

mysql 指定版本安裝