centos 6.5上传mysql rpm包,MySQL數據庫系列之Centos6.5系統下RPM包安裝MySQL5.6

查看操作系統相關信息。

[root@bj_db1 ~]# cat /etc/issue

CentOS release 6.5 (Final)

Kernel \r on an \m

[root@bj_db1 ~]# uname -a

Linux bj_db1 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

2.創建需要下載rpm軟件包的目錄。

[root@bj_db1 ~]# mkdir -p /taokey/tools

3.查看下是否有系統自帶mysql的rpm包,如果有,需要刪除自帶的舊rpm包。

[root@bj_db1 ~]# rpm -qa | grep mysqlmysql-libs-5.1.71-1.el6.x86_64[root@bj_db1 ~]# yum -y remove mysql-libs-5.1*[root@bj_db1 ~]# rpm -qa | grep mysql[root@bj_db1 ~]#

4.在MySQL官網下載安裝MySQL-5.6.21所需的rpm軟件包。

需要下載三個rpm軟件包:

MySQL-client-5.6.21-1.rhel5.x86_64.rpm  MySQL-devel-5.6.21-1.rhel5.x86_64.rpm  MySQL-server-5.6.21-1.rhel5.x86_64.rpm[root@bj_db1 ~]# cd /taokey/tools/[root@bj_db1 tools]# wget http://dev.mysql.com/Downloads/MySQL-5.6/MySQL-server-5.6.21-1.rhel5.x86_64.rpm[root@bj_db1 tools]# wget http://dev.mysql.com/Downloads/MySQL-5.6/MySQL-devel-5.6.21-1.rhel5.x86_64.rpm[root@bj_db1 tools]# wget http://dev.mysql.com/Downloads/MySQL-5.6/MySQL-client-5.6.21-1.rhel5.x86_64.rpm

5.下載完之后,安裝三個rpm軟件包。

[root@bj_db1 tools]# rpm -ivh MySQL-server-5.6.21-1.rhel5.x86_64.rpm

error: Failed dependencies:

libaio.so.1()(64bit) is needed by MySQL-server-5.6.21-1.rhel5.x86_64

libaio.so.1(LIBAIO_0.1)(64bit) is needed by MySQL-server-5.6.21-1.rhel5.x86_64

libaio.so.1(LIBAIO_0.4)(64bit) is needed by MySQL-server-5.6.21-1.rhel5.x86_64

安裝MySQL-server報錯,原因是沒有安裝libaio,系統缺少libaio.so此軟件包,下邊yum安裝一下libaio.so軟件包。

[root@bj_db1 tools]# yum install -y libaio[root@bj_db1 tools]# rpm -ivh MySQL-server-5.6.21-1.rhel5.x86_64.rpm[root@bj_db1 tools]# rpm -ivh MySQL-client-5.6.21-1.rhel5.x86_64.rpm Preparing...                ########################################### [100%]   1:MySQL-client           ########################################### [100%][root@bj_db1 tools]# rpm -ivh MySQL-devel-5.6.21-1.rhel5.x86_64.rpm Preparing...                ########################################### [100%]   1:MySQL-devel            ########################################### [100%]

6.修改配置文件位置。

[root@bj_db1 tools]# cp /usr/share/mysql/my-default.cnf /etc/my.cnf

7.初始化MySQL及修改MySQL默認的root密碼。

[root@bj_db1 tools]# /usr/bin/mysql_install_db[root@bj_db1 tools]# /etc/init.d/mysql start[root@bj_db1 tools]# ps -ef | grep mysqlroot      2188     1  0 14:48 pts/1    00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/lib/mysql/bj_db1.pidmysql     2303  2188 30 14:48 pts/1    00:00:02 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/var/lib/mysql/bj_db1.err --pid-file=/var/lib/mysql/bj_db1.pidroot      2331  1853  0 14:49 pts/1    00:00:00 grep mysql[root@bj_db1 tools]# netstat -anpt | grep 3306tcp        0      0 :::3306                     :::*                        LISTEN      2303/mysqld[root@bj_db1 tools]# more /root/.mysql_secret# The random password set for the root user at Thu Apr  9 14:43:59 2015 (local time): F6K3v_xggFoLQeiN[root@bj_db1 tools]# mysql -uroot -pF6K3v_xggFoLQeiNWarning: 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 1Server version: 5.6.21Copyright (c) 2000, 2014, 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> SET PASSWORD = PASSWORD('123.com'); mysql> exitBye[root@bj_db1 tools]# mysql -uroot -p123.comWarning: 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 6Server version: 5.6.21 MySQL Community Server (GPL)Copyright (c) 2000, 2014, 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>

8.設置MySQL服務開機自啟動。

[root@bj_db1 tools]# chkconfig mysql on[root@bj_db1 tools]# chkconfig mysql --listmysql           0:off   1:off   2:on    3:on    4:on    5:on    6:off

9.MySQL三中修改賬號密碼的方法:

1).為特定用戶賬號設置密碼;

SET PASSWORD FOR "username"@"host" = PASSWORD("123.com");

2).直接修改表中內容的方式,修改數據庫賬號密碼;

update user set password=PASSWORD('your_password') WHERE User='root' and host='hostname or ip';

通常修改不會立即生效,需要執行flush

3).mysqladmin修改root密碼

mysqladmin -u root -h127.0.0.1 -p password 'new_password'

回車之后要求輸入舊密碼,舊密碼為空直接回車即可。

到此為止,使用RPM安裝MySQL5.6版本數據庫安裝完畢,謝謝大家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值