网站地图

centos linux下安装mysql

创建时间:2014-01-07 14:02:52最后修改:2014-03-19 21:40:28

centos linux下常用的mysql安装方式是yum方式安装或编译安装。

centos linux yum方式安装mysql:

yum -y install mysql mysql-server mysql-devel
安装完后将mysql添加到系统启动项:
chkconfig mysqld on
启动、停止或重启方式:
/etc/init.d/mysqld [start|restart|stop]
或
service mysqld [start|restart|stop]

centos linux 编译安装mysql:

1、下载mysql,下载地址:http:/dev.mysql.com/

2、创建用于运行mysql的用户:

groupadd mysql  
useradd -r -g mysql mysql
3、解压并安装MySQL
tar zxvf mysql-5.5.13.tar.gz  
cd mysql-5.5.13  
cmake . /  
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql /  
-DINSTALL_DATADIR=/usr/local/mysql/data  
make  
make install
4、配置
cd /usr/local/mysql  
chown -R mysql .  
chgrp -R mysql .  
scripts/mysql_install_db --user=mysql  
chown -R root .
将mysql的配置文件拷贝到/etc
cp support-files/my-medium.cnf /etc/my.cnf
启动mysql:
bin/mysqld_safe --user=mysql &  
#启动mysql,看是否成功  
netstat -tnl|grep 3306 
上面是一种启动mysql的方法,还有一种简单的方便,如下:
#将mysql的启动服务添加到系统服务中  
cp support-files/mysql.server /etc/init.d/mysql.server  
#现在可以使用下面的命令启动mysql  
service mysql.server start  
#停止mysql服务  
service mysql.server stop  
#重启mysql服务  
service mysql.server restart 
将mysql服务添加到开机启动项,让mysql服务开机启动
chkconfig --add mysql.server