好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

阿里云安装mysql

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 位。

CPU : 1 核

内存: 512M

硬盘空间: 20G

带宽: 1Mbps 。

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

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

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

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

( 1 ) MySQL-server-5.6.10-1.rhel5.x86_64.rpm : MySQL 服务器;

( 2 ) MySQL-client-5.6.10-1.rhel5.x86_64.rpm : MySQL 客户端;

( 3 ) MySQL-devel-5.6.10-1.rhel5.x86_64.rpm : Mysql 开发依赖包。

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

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

wget –c http: // dev.mysql测试数据/get/Downloads/MySQL-5.6/MySQL-server-5.6.10-1.rhel5.x86_64.rpm/from/ http://cdn.mysql测试数据
wget –c http: // dev.mysql测试数据/get/Downloads/MySQL-5.6/MySQL-client-5.6.10-1.rhel5.x86_64.rpm/from/ http://cdn.mysql测试数据
wget –c http: // dev.mysql测试数据/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 服务器:

rpm - ivh MySQL - server - 5.6 . 10 - 1 .rhel5.x86_64.rpm

3.1.1 安装依赖包 libaio

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

error: Failed dependencies:
libaio.so. 1 ()(64bit) is needed by MySQL - server - 5.6 . 10 - 1 .rhel5.x86_64
libaio.so. 1 (LIBAIO_0. 1 )(64bit) is needed by MySQL - server - 5.6 . 10 - 1 .rhel5.x86_64
libaio.so. 1 (LIBAIO_0. 4 )(64bit) is needed by MySQL - server - 5.6 . 10 - 1 .rhel5.x86_64

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

yum install libaio

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

Setting up Install Process
No package libaio available.
Nothing to do

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

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

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

[root@AY130221101729bc93912 software]# rpm - qa | grep yum
yum - 3.2 . 22 - 20 .el5
yum - metadata - parser - 1.1 . 2 - 3 .el5
[root@AY130221101729bc93912 software]# rpm - e -- nodeps yum - 3.2 . 22 - 20 .el5
warning: / etc / yum.conf saved as / etc / yum.conf.rpmsave
[root@AY130221101729bc93912 software]# rpm - e -- nodeps yum - metadata - parser - 1.1 . 2 - 3 .el5

( 2 )通过 wget 命令在 163 的镜像上下载 CentOS 的 yum 包

参考命令如下 :

wget http: // mirrors.163测试数据/centos/5/os/x86_64/CentOS/yum-3.2.22-40.el5.centos.noarch.rpm
wget http: // mirrors.163测试数据/centos/5/os/x86_64/CentOS/yum-metadata-parser-1.1.2-4.el5.x86_64.rpm
wget http: // mirrors.163测试数据/centos/5/os/x86_64/CentOS/yum-fastestmirror-1.1.16-21.el5.centos.noarch.rpm

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

( 3 )安装 yum 相关的 rpm 包

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

rpm - ivh yum -*

( 4 )下载 CentOS-Base.repo

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

[root@AY130221101729bc93912 software]# cd / etc / yum.repos.d /
[root@AY130221101729bc93912 yum.repos.d]# wget http: // HdhCmsTestlinuxidc测试数据/files/2011/05/06/CentOS-Base.repo
-- 2013 - 02 - 22 08 : 58 : 27 -- http: // HdhCmsTestlinuxidc测试数据/files/2011/05/06/CentOS-Base.repo
Resolving HdhCmsTestlinuxidc测试数据 60.191 . 129.94
Connecting to HdhCmsTestlinuxidc测试数据 | 60.191 . 129.94 | : 80 connected.
HTTP request sent, awaiting response 200 OK
Length: 1426 ( 1 .4K) [application / octet - stream]
Saving to: `CentOS - Base.repo '

100 % [ ==========================================================================================> ] 1 , 426 -- . - K / s in 0s

2013 - 02 - 22 08 : 58 : 28 ( 124 MB / s) - `CentOS - Base.repo ' saved [1426/1426]

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

[root@AY130221101729bc93912 yum.repos.d]# yum makecache
Loaded plugins: fastestmirror
Determining fastest mirrors
addons | 1.9 kB 00 : 00
addons / filelists_db | 568 B 00 : 00

addons / other_db
base
…… 3641 / 3641
base 3641 / 3641
Metadata Cache Created p align = " justify " > p >

( 6 )安装依赖包 libaio

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

[root@AY130221101729bc93912 yum.repos.d]# yum install libaio
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
Setting up Install Process
Resolving Dependencies
……
Complete

3.1.2 安装 MySQL Server 的 rpm 包

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

[root@AY130221101729bc93912 software]# rpm - ivh MySQL - server - 5.6 . 10 - 1 .rhel5.x86_64.rpm
Preparing ########################################### [ 100 % ]
1 :MySQL - server ########################################### [ 100 % ]
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).
…….
A random root password has been set. You will find it in ' /root/.mysql_secret ' .
2013 - 02 - 22 09 : 03 : 25 4132 [Note] Binlog end
2013 - 02 - 22 09 : 03 : 25 4132 [Note] InnoDB: FTS optimize thread exiting.
……

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

3.2 安装 MySQL 客户端

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

rpm - ivh MySQL - client - 5.5 . 28 - 1 .rhel5.i386.rpm

3.3 安装 MySQL 开发依赖包

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

rpm - ivh MySQL - devel - 5.5 . 28 - 1 .rhel5.i386.rpm

3.4 MySQL 的几个重要目录

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

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

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

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

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

[root@AY130221101729bc93912 mysql]# whereis mysql
mysql: / usr / bin / mysql / usr / include / mysql / usr / share / mysql / usr / share / man / man1 / mysql. 1 .gz

3.5 启动 MySQL

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

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

可使用如下命令启动 MySQL :

service mysql start

或者使用如下命令:

/ etc / init.d / mysql start

3.6 登录 MySQL

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

[root@AY130221101729bc93912 mysql]# mysql - u root - p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.6 . 10

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 > show databases;
ERROR 1820 (HY000): You must SET PASSWORD before executing this statement

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

mysql > SET PASSWORD = PASSWORD( ' root123456 ' );
Query OK, 0 rows affected ( 0.00 sec)
mysql > show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+

3.7 设置开机自启动

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

/ etc / init.d / mysql start

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

netstat - nat
Active Internet connections (servers and established)
Proto Recv - Q Send - Q Local Address Foreign Address State
tcp 0 0 127.0 . 0.1 : 8005 0.0 . 0.0 : * LISTEN
tcp 0 0 0.0 . 0.0 : 8009 0.0 . 0.0 : * LISTEN
tcp 0 0 0.0 . 0.0 : 3306 0.0 . 0.0 : * LISTEN
……

5 、参考文档

( 1 )《 在 Linux 下安装和使用 MySQL 》: http://HdhCmsTestyesky测试数据/187/1754687.shtml

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

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

http://HdhCmsTest2cto测试数据/os/201112/113105.html

( 4 ) CentOS 的一些 rpm 包的镜像下载路径: http://mirrors.163测试数据/centos/5/os/x86_64/CentOS/

( 5 ) MySQL 的 Server 和 Client 端的下载路径: http://dev.mysql测试数据/downloads/mysql/#downloads

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

查看更多关于阿里云安装mysql的详细内容...

  阅读:146次