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 mysql3、解压并安装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 install4、配置
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