[root@itzhouq32 tools]# cat /etc/issue CentOS release 6.5 (Final) Kernel \r on an \m [root@itzhouq32 tools]# uname -a Linux itzhouq32 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
[root@itzhouq32 /]# mkdir soft [root@itzhouq32 /]# cd soft [root@itzhouq32 soft]# ls [root@itzhouq32 soft]#
若是有须要卸载
用这个查找mysql
# rpm -qa | grep mysql
用这个卸载sql
yum -y remove mysql-libs-5.1*
分别执行下面的三条命令数据库
# wget http://dev.mysql.com/Downloads/MySQL-5.6/MySQL-server-5.6.21-1.rhel5.x86_64.rpm # wget http://dev.mysql.com/Downloads/MySQL-5.6/MySQL-devel-5.6.21-1.rhel5.x86_64.rpm # wget http://dev.mysql.com/Downloads/MySQL-5.6/MySQL-client-5.6.21-1.rhel5.x86_64.rpm
若是下载的速度太慢,也能够使用window下载后传输到虚拟机的这个目录,而后安装。安全
# rpm -ivh MySQL-server-5.6.21-1.rhel5.x86_64.rpm
若是有如下报错信息,须要安装依赖包。dom
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
执行:tcp
# yum install -y libaio
再次安装ide
# rpm -ivh MySQL-server-5.6.21-1.rhel5.x86_64.rpm
# rpm -ivh MySQL-client-5.6.21-1.rhel5.x86_64.rpm Preparing... ########################################### [100%] 1:MySQL-client ########################################### [100%]
# cp /usr/share/mysql/my-default.cnf /etc/my.cnf
# /usr/bin/mysql_install_db # /etc/init.d/mysql start # ps -ef | grep mysql # netstat -anpt | grep 3306 # more /root/.mysql_secret
而后会显示你的数据库随机码code
# The random password set for the root user at Fri Mar 15 01:43:14 2019 (local time): BKEIavP3r8C8wNoB
# mysql -uroot -pBKEIavP3r8C8wNoB
登陆成功后会显示版本信息server
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 2 Server version: 5.6.21 Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
mysql> SET PASSWORD = PASSWORD('2626'); Query OK, 0 rows affected (0.00 sec) mysql> EXIT Bye
我设置了密码为2626,并退出MySQLip
# chkconfig mysql on # chkconfig mysql --list mysql 0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭
# service mysql status SUCCESS! MySQL running (2447)
默认状况下MySQL为安全起见,不支持远程登陆MySQL,因此须要设置开启登陆MySQL的权限。登陆MySQL后输入命令:
mysql> grant all privileges on *.* to 'root' @'%' identified by '2626'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec)
其中2626是用于远程访问的密码,能够与root密码不同。这样别的用户远程访问你的数据库时,能够使用root帐号,密码2626登陆。
[root@itzhouq32 bin]# /sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT [root@itzhouq32 bin]# /etc/rc.d/init.d/iptables save iptables:将防火墙规则保存到 /etc/sysconfig/iptables: [肯定] [root@itzhouq32 bin]#
OK,打完收工了!