Home >Database >Mysql Tutorial >阿里云安装mysql

阿里云安装mysql

WBOY
WBOYOriginal
2016-06-07 15:46:411285browse

1 、申请阿里云 Linux 服务器 昨天在阿里云申请了一个免费试用 5 天的 Linux 云服务器。 操作系统: Red Hat Enterprise Linux Server 5.4 64 位。 CPU : 1 核 内存: 512M 硬盘空间: 20G 带宽: 1Mbps 。 今天在这台云服务器上安装了基本环境( JDK 、 To

1、申请阿里云Linux服务器

昨天在阿里云申请了一个免费试用5天的Linux云服务器。

操作系统:Red Hat Enterprise Linux Server 5.4 64位。

CPU1

内存:512M

硬盘空间:20G

带宽:1Mbps

今天在这台云服务器上安装了基本环境(JDKTomcatMySQL)。本文主要在阿里云Linux云服务器安装MySQL全过程,以及对安装时遇到的问题进行记录。

2、下载MySQL服务器和客户端

         访问MySQL的官网,进入其下载页面(http://dev.mysql.com/downloads/mysql/#downloads),选择MySQL Community Server,在“Select Platform”下拉框中选择“Oracle & Red Hat Linux 4 & 5”。

         因为是64位的操作系统,所以选择下载如下rpm包:

1MySQL-server-5.6.10-1.rhel5.x86_64.rpmMySQL服务器;

2MySQL-client-5.6.10-1.rhel5.x86_64.rpmMySQL客户端;

3MySQL-devel-5.6.10-1.rhel5.x86_64.rpmMysql开发依赖包。

将这些rpm包通过FTP上传到Linux服务器的某个目录,例如:/root/software

也可在Linux服务器上通过wget命令取得这些rpm包,Linux命令如下:

阿里云安装mysqlwget –c http://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-server-5.6.10-1.rhel5.x86_64.rpm/from/http://cdn.mysql.com
阿里云安装mysql
wget –c http://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-client-5.6.10-1.rhel5.x86_64.rpm/from/http://cdn.mysql.com
阿里云安装mysql
wget –c http://dev.mysql.com/get/Downloads/MySQL-5.6/MySQL-devel-5.6.10-1.rhel5.x86_64.rpm/from/http://cdn.mysql.co



3、安装MySQL服务器和客户端

3.1 安装MySQL服务器

         下载完成后使用如下命令开始安装MySQL服务器:

阿里云安装mysqlrpm -ivh MySQL-server-5.6.10-1.rhel5.x86_64.rpm

 

3.1.1 安装依赖包libaio

在运行第一条安装MySQL服务器时会提示依赖包libaio.so.1没有安装,错误提示如下:

阿里云安装mysqlerror: Failed dependencies: 
阿里云安装mysqllibaio.so.
1()(64bit) is needed by MySQL-server-5.6.10-1.rhel5.x86_64 
阿里云安装mysqllibaio.so.
1(LIBAIO_0.1)(64bit) is needed by MySQL-server-5.6.10-1.rhel5.x86_64
阿里云安装mysqllibaio.so.
1(LIBAIO_0.4)(64bit) is needed by MySQL-server-5.6.10-1.rhel5.x86_64

需要使用yum命令快速安装依赖包libaio,运行如下命令:

阿里云安装mysqlyum install libaio

运行该命令时会发现在这台云服务器上无法通过yum快速安装软件,搜索了一些资料,原来是阿里云安装的是Red Hat5.464位系统,但是提供的是CentOS 32位的系统。错误信息参考如下:

阿里云安装mysqlSetting up Install Process 
阿里云安装mysqlNo 
package libaio available.
阿里云安装mysqlNothing to 
do

    网上找到的一个解决方案是将yum替换成CentOS的版本,我尝试了下是可行的。过程如下:

1)通过rpm命令查看有哪些yum包,然后进行卸载

笔者在云服务器进行的操作如下:

阿里云安装mysql[root@AY130221101729bc93912 software]# rpm -qa|grep yum
阿里云安装mysqlyum
-3.2.22-20.el5
阿里云安装mysqlyum
-metadata-parser-1.1.2-3.el5
阿里云安装mysql[root@AY130221101729bc93912 software]# rpm 
---nodeps yum-3.2.22-20.el5
阿里云安装mysqlwarning: 
/etc/yum.conf saved as /etc/yum.conf.rpmsave
阿里云安装mysql[root@AY130221101729bc93912 software]# rpm 
---nodeps yum-metadata-parser-1.1.2-3.el5

2)通过wget命令在163的镜像上下载CentOSyum

参考命令如下:

阿里云安装mysqlwget http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-3.2.22-40.el5.centos.noarch.rpm
阿里云安装mysql
wget http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-metadata-parser-1.1.2-4.el5.x86_64.rpm 
阿里云安装mysql
wget http://mirrors.163.com/centos/5/os/x86_64/CentOS/yum-fastestmirror-1.1.16-21.el5.centos.noarch.rpm

说明:可能版本会有一些不同,请大家在http://mirrors.163.com/centos/5/os/x86_64/CentOS/下查找yum-3xxx开头、yum-metadata开头和yum-fastestmirror开头的rpm包下载。

    3)安装yum相关的rpm

     使用如下命令安装在(2)中下载的rpm包:

阿里云安装mysqlrpm -ivh yum-*

   (4)下载CentOS-Base.repo

找一个CentOS的包资源配置库,名为CentOS-Base.repo,放到/etc/yum.repos.d/路径:

阿里云安装mysql[root@AY130221101729bc93912 software]# cd /etc/yum.repos.d/
阿里云安装mysql[root@AY130221101729bc93912 yum.repos.d]# wget http:
//www.linuxidc.com/files/2011/05/06/CentOS-Base.repo
阿里云安装mysql
--2013-02-22 08:58:27-- http://www.linuxidc.com/files/2011/05/06/CentOS-Base.repo
阿里云安装mysql
Resolving www.linuxidc.com阿里云安装mysql 60.191.129.94
阿里云安装mysqlConnecting to www.linuxidc.com
|60.191.129.94|:80阿里云安装mysql connected.
阿里云安装mysqlHTTP request sent, awaiting response阿里云安装mysql 
200 OK
阿里云安装mysqlLength: 
1426 (1.4K) [application/octet-stream]
阿里云安装mysqlSaving to: `CentOS
-Base.repo'
阿里云安装mysql

阿里云安装mysql
100%[==========================================================================================>1,426       --.-K/s   in 0s      
阿里云安装mysql
阿里云安装mysql
2013-02-22 08:58:28 (124 MB/s) - `CentOS-Base.repo' saved [1426/1426]

(5)生成缓存文件到/var/cache/yum目录

阿里云安装mysql[root@AY130221101729bc93912 yum.repos.d]# yum makecache
阿里云安装mysqlLoaded plugins: fastestmirror
阿里云安装mysqlDetermining fastest mirrors
阿里云安装mysqladdons                                                                                  
| 1.9 kB     00:00     
阿里云安装mysqladdons
/filelists_db                                                             | 568 B     00:00     
阿里云安装mysql
阿里云安装mysqladdons
/other_db                                                                                   
阿里云安装mysqlbase   
阿里云安装mysql……                                                                                                                                                    
3641/3641
阿里云安装mysqlbase                                                                                                                      
3641/3641
阿里云安装mysqlMetadata Cache Created
p align="justify">p>

 

6)安装依赖包libaio

第(5)步做完后,此时可以成功运行yum install libaio命令,参考执行情况如下:

阿里云安装mysql[root@AY130221101729bc93912 yum.repos.d]# yum install libaio 
阿里云安装mysqlLoaded plugins: fastestmirror
阿里云安装mysqlLoading mirror speeds from cached hostfile
阿里云安装mysqlSetting up Install Process
阿里云安装mysqlResolving Dependencies
阿里云安装mysql……
阿里云安装mysqlComplete

 

3.1.2 安装MySQL Serverrpm

         依赖包安装完成后,可以执行rpm -ivh MySQL-server-5.6.10-1.rhel5.x86_64.rpm包安装MySQL的服务器端。参考执行情况如下(省略了部分内容):

阿里云安装mysql[root@AY130221101729bc93912 software]# rpm -ivh MySQL-server-5.6.10-1.rhel5.x86_64.rpm 
阿里云安装mysqlPreparing阿里云安装mysql                ########################################### [
100%]
阿里云安装mysql  
1:MySQL-server           ########################################### [100%]
阿里云安装mysql
2013-02-22 09:03:18 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
阿里云安装mysql…….
阿里云安装mysqlA random root password has been set. You will find it in 
'/root/.mysql_secret'.
阿里云安装mysql
2013-02-22 09:03:25 4132 [Note] Binlog end
阿里云安装mysql
2013-02-22 09:03:25 4132 [Note] InnoDB: FTS optimize thread exiting.
阿里云安装mysql……

        安装完成后会生成root用户的随机密码,请使用“cat /root/.mysql_secret”或类似命令进行查看。

3.2 安装MySQL客户端

         服务端安装完成后,使用如下命令安装MySQL客户端,命令如下:

阿里云安装mysqlrpm -ivh MySQL-client-5.5.28-1.rhel5.i386.rpm

 

3.3 安装MySQL开发依赖包

         接着安装MySQL-devel-5.5.28-1.rhel5.i386.rpm,命令如下:

阿里云安装mysqlrpm -ivh MySQL-devel-5.5.28-1.rhel5.i386.rpm

 

3.4 MySQL的几个重要目录

1)数据库目录
   /var/lib/mysql/

2)配置文件
   /usr/share/mysqlmysql.server命令及配置文件)

3)相关命令
   /usr/bin(mysqladmin mysqldump等命令)

   4)启动脚本
   /etc/rc.d/init.d/(启动脚本文件mysql的目录)

         若想查看MySQL安装到哪个目录,可使用“whereis mysql”命令查看,参考执行结果如下所示:

阿里云安装mysql[root@AY130221101729bc93912 mysql]# whereis mysql
阿里云安装mysqlmysql: 
/usr/bin/mysql /usr/include/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gz

 

3.5 启动MySQL

         安装完成后mysql是没有启动的,运行mysql命令会提示如下错误:

阿里云安装mysql[root@AY130221101729bc93912 software]# mysql
阿里云安装mysqlERROR 
2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

      可使用如下命令启动MySQL

阿里云安装mysqlservice mysql start

      或者使用如下命令:

阿里云安装mysql/etc/init.d/mysql start

 

3.6 登录MySQL

使用mysql命令登录MySQL服务器,运行MySQL的命令时,会提示需要设置root用户密码,提示信息如下:

阿里云安装mysql[root@AY130221101729bc93912 mysql]# mysql -u root -p
阿里云安装mysqlEnter password: 
阿里云安装mysqlWelcome to the MySQL monitor. Commands end with ; or \g.
阿里云安装mysqlYour MySQL connection id is 
5
阿里云安装mysqlServer version: 
5.6.10
阿里云安装mysql
阿里云安装mysqlCopyright (c) 
20002013, Oracle and/or its affiliates. All rights reserved.
阿里云安装mysql
阿里云安装mysqlOracle is a registered trademark of Oracle Corporation and
/or its
阿里云安装mysqlaffiliates. Other names may be trademarks of their respective
阿里云安装mysqlowners.
阿里云安装mysql
阿里云安装mysqlType 
'help;' or '\h' for help. Type '\c' to clear the current input statement.
阿里云安装mysqlmysql
> show databases;
阿里云安装mysqlERROR 
1820 (HY000): You must SET PASSWORD before executing this statement

可使用SET PASSWORD命令修改root用户的密码,参考如下:

阿里云安装mysqlmysql> SET PASSWORD = PASSWORD('root123456');
阿里云安装mysqlQuery OK, 
0 rows affected (0.00 sec)
阿里云安装mysqlmysql
> show databases;
阿里云安装mysql
+--------------------+
阿里云安装mysql
| Database           |
阿里云安装mysql
+--------------------+
阿里云安装mysql
| information_schema |
阿里云安装mysql
| mysql              |
阿里云安装mysql
| performance_schema |
阿里云安装mysql
| test               |
阿里云安装mysql
+--------------------+

 

3.7 设置开机自启动

       设置开机自启动的方法有很多,例如使用chkconfig命令,另外也可以在/etc/rc.local文件中加上如下MySQL的启动命令,例如:

阿里云安装mysql/etc/init.d/mysql start

     设置完成后重启系统,使用natstat –nat命令可看到MySQL3306端口:

阿里云安装mysqlnetstat -nat
阿里云安装mysqlActive Internet connections (servers and established)
阿里云安装mysqlProto Recv
-Q Send-Q Local Address               Foreign Address             State      
阿里云安装mysqltcp        
0      0 127.0.0.1:8005              0.0.0.0:*                   LISTEN      
阿里云安装mysqltcp        
0      0 0.0.0.0:8009                0.0.0.0:*                   LISTEN      
阿里云安装mysqltcp        
0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN   
阿里云安装mysql……

        

5、参考文档

1)《Linux下安装和使用MySQL》:http://www.yesky.com/187/1754687.shtml

2)《CentOS下以RPM方式安装MySQL5.5》:http://blog.seweal.com/post/centos-mysql-install-rpm

3)《Redhat Linux无法使用yum快速安装软件解决方案》:

     http://www.2cto.com/os/201112/113105.html

4CentOS的一些rpm包的镜像下载路径:http://mirrors.163.com/centos/5/os/x86_64/CentOS/

5MySQLServerClient端的下载路径:http://dev.mysql.com/downloads/mysql/#downloads

posted on 2013-02-22 18:23 阿蜜果 阅读(13846) 评论(9)  编辑  收藏 所属分类: MySql 、解决方案

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn