mysql5.5.32 rpm 安装

#下载mysql安装包,注意64位和32位
[root@166087 mysql]# wget   

#虚拟机是国外的vps,32位的机器,所以安装是用的32位机器
[root@166087 mysql]# tar xf MySQL-5.5.32-1.linux2.6.i386.rpm-bundle.tar

#mysql 各种工具
[root@166087 mysql]# ls
MySQL-5.5.32-1.linux2.6.i386.rpm-bundle.tar  MySQL-server-5.5.32-1.linux2.6.i386.rpm
MySQL-client-5.5.32-1.linux2.6.i386.rpm      MySQL-shared-5.5.32-1.linux2.6.i386.rpm
MySQL-devel-5.5.32-1.linux2.6.i386.rpm       MySQL-shared-compat-5.5.32-1.linux2.6.i386.rpm
MySQL-embedded-5.5.32-1.linux2.6.i386.rpm    MySQL-test-5.5.32-1.linux2.6.i386.rpm

#查找是否安装过mysql
[root@166087 mysql]# rpm -qa | grep -i mysql
MySQL-devel-5.6.27-1.linux_glibc2.5.i386
MySQL-server-5.6.27-1.linux_glibc2.5.i386
MySQL-client-5.6.27-1.linux_glibc2.5.i386

#卸载掉之前的mysql版本
[root@166087 mysql]# rpm -ev MySQL-devel-5.6.27-1.linux_glibc2.5.i386
[root@166087 mysql]# rpm -ev MySQL-server-5.6.27-1.linux_glibc2.5.i386

#安装服务端
[root@166087 mysql]# rpm -ivh MySQL-server-5.5.32-1.linux2.6.i386.rpm
Preparing...                ########################################### [100%]
   1:MySQL-server           ########################################### [100%]
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h 166087.sys.ipv4.io password 'new-password'
Alternatively you can run:
/usr/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.
See the manual for more instructions.
Please report any problems with the /usr/bin/mysqlbug script!

#安装客户端
[root@166087 mysql]# rpm -ivh MySQL-client-5.5.32-1.linux2.6.i386.rpm
Preparing...                ########################################### [100%]
   1:MySQL-client           ########################################### [100%]
[root@166087 mysql]#

#启动服务
[root@166087 mysql]# /etc/init.d/mysql start
Starting MySQL.. SUCCESS!

#尝试登录
[root@166087 mysql]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.32 MySQL Community Server (GPL)
Copyright (c) 2000, 2013, 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>


你可能感兴趣的:(rpm安装mysql)