首先去http://dev.mysql.com/downloads/mysql/5.5.html#downloads站点下载:
别离下载以下三个文件(由于我的机器是32位,下面是32位版别的包,假如你的机器是64位的请下载64位版别):
MySQL-server-5.5.16-1.rhel5.i386.rpm
MySQL-client-5.5.16-1.rhel4.i386.rpm
MySQL-devel-5.5.16-1.rhel4.i386.rpm
运用wget指令运用断点传输的方法将这三个文件下载
wget -c http://dev.mysql.com/get/Downloads/MySQL-5.5/MySQL-server-5.5.16-1.rhel4.i386.rpm/from/http://mysql.spd.co.il/
wget -c http://dev.mysql.com/get/Downloads/MySQL-5.5/MySQL-client-5.5.16-1.rhel4.i386.rpm/from/http://mysql.spd.co.il/
wget -c http://dev.mysql.com/get/Downloads/MySQL-5.5/MySQL-devel-5.5.16-1.rhel4.i386.rpm/from/http://mysql.spd.co.il/
下载完成后开始装置:
rpm -ivh MySQL-server-5.5.16-1.rhel4.i386.rpm MySQL-client-5.5.16-1.rhel4.i386.rpm MySQL-devel-5.5.16-1.rhel4.i386.rpm
提示装置完成后,输入mysql 看是否装置成功
mysql
假如呈现如下错误信息:
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
阐明mysql服务还没有发动,输入service mysql start发动mysql服务
service mysql start
然后再输入mysql,若呈现以下提示信息,阐明成功。
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.16 MySQL Community Server (GPL)
Copyright (c) 2000,2011,Oracle and/or its affiliates. All rights reserved.
Centos以下RPM方式安装MYSQL5.5教程图2
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.
初次装置时,默认暗码为空,能够运用如下指令修改root暗码,
mysqladmin -u root passwordmypassword
mypassword 为你设定的新暗码
然后再次登录
mysql -u root –p
rpm包装置的MySQL是不会装置/etc/my.cnf文件的,解决方法,只需要仿制/usr/share/mysql目录下的my-huge.cnf 文件到/etc目录,并改名为my.cnf即可
cp /usr/share/mysql/my-huge.cnf /etc/my.cnf
配置长途拜访
处于安全考虑,Mysql默认是不允许长途拜访的,能够运用下面敞开长途拜访
//赋予任何主机拜访数据的权限
Centos以下RPM方式安装MYSQL5.5教程图3
mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION
//使修改收效
mysql>FLUSH PRIVILEGES
假如仍然不能长途拜访的话,那就很可能防火墙的原因了,能够在防火墙中敞开3306端口或者爽性关掉防火墙。
/etc/init.d/iptables status
会得到一系列信息,阐明防火墙开着。
/etc/init.d/iptables stop
永久封闭:
chkconfig --level 35 iptables off
以上是对自己初次在CentOS上装置mysql的一个总结,希望对大家有协助。