因为之前一直使用的是ubuntu很少使用centos,今天需要安装数据库,本着快速解决此需求的心态,开始安装mysql,但是翻看好多资料,最后还是没有成功,一个小时时间真是够够的了,最后虚心求教好友,终于看到Starting MySQL..... SUCCESS!
废话不多说,现在开始。也加深下自己的印象。总不能一直apt-get下去,centos不这样让你搞。
一:准备工作
配置防火墙,开启3306端口
[[email protected] ~]# vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT #这条默认是有的。
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT #也不知道为什么这条添加在22这条后面。
重启防火墙,使其配置生效:
[[email protected] ~]#/etc/init.d/iptables restart
关闭SELINUX:
[[email protected] ~]# vi /etc/selinux/config
在后面添加如下信息:
SELINUX=disable
保存退出。
查看当前版本信息:
[[email protected] ~]# rpm -qa | grep mysql
如果有就卸载
卸载命令: [[email protected] ~]#yum -y remove (数据库名称)
二:安装Cmake,为Mysql编译工具
直接全部安装:
[[email protected] src]# cd /usr/local/src/
[[email protected] src]#yum install cmake ncurses5-devel gcc g++ bison openssl openssl-devel ncurses ncurses-devel gcc-c++ -y
安装完后继续:
三:正式安装:
下载mysql 版本
[[email protected] src]# wget http://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.27.tar.gz
[[email protected] src]#tar zxvf mysql-5.5.27.tar.gz
[[email protected] src]#cd /usr/local/mysql
安装ncurses-devel包和bison包,如果有就不需要安装了
[[email protected] mysql]#yum install ncurses-devel
[[email protected] mysql]#yum install bison
配置用户组:
[[email protected] mysql-5.5.27]#groupadd mysql #添加mysql用户组
[[email protected] mysql-5.5.27]#useradd -g mysql mysql -s /bin/false #创建mysql用户,并加入到mysql组,不允许mysql用户直接登录系统
[[email protected] mysql-5.5.27]#mkdir -p /data/mysql #创建数据库存放目录
[[email protected] mysql-5.5.27]#chown -R mysql:mysql /data/mysql/ #设置数据库目录权限
[[email protected] mysql-5.5.27]#mkdir -p /usr/local/mysql #设置安装目录
[[email protected] mysql-5.5.27]#cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/data/mysql -DSYSCONFDIR=/etc
[[email protected] mysql-5.5.27]#make && make install
等待安装
四:配置
[[email protected] mysql-5.5.27]#cd /usr/local/mysql
[[email protected] mysql]#cp ./support-files/my-huge.cnf /etc/my.cnf #拷贝配置文件,若存在则覆盖
[[email protected] mysql]#vi /etc/my.cnf #编辑,在[mysqld]下增加一行
datadir = /data/mysql
[[email protected] mysql]#./scripts/mysql_install_db --user=mysql #生成mysql系统数据库
[[email protected] mysql]#cp ./support-files/mysql.server /etc/rc.d/init.d/mysqld #把mysql加入系统启动
[[email protected] mysql]#chmod 755 /etc/init.d/mysqld #增加执行权限
[[email protected] init.d]#chkconfig mysqld on #加入开机启动
[[email protected] init.d]#vi /etc/rc.d/init.d/mysqld #编辑
basedir=/usr/local/mysql #mysql程序安装路径
datadir=/data/mysql #mysql数据存放vi 路径
[[email protected] mysql]#service mysql start #启动
#成功提示:Starting MySQL..... SUCCESS!
将mysql服务加入系统环境变量
[[email protected] mysql]#vi /etc/profile
添加:export PATH=$PATH:$JAVA_HOME/bin:/usr/local/mysql/bin
[[email protected] mysql]#source /etc/profile #生效
五:设置密码
[[email protected] mysql]#./mysqladmin -u root password root #设置成功
[[email protected] mysql]#service mysql restart #重启
[[email protected] mysql]#mysql -u root -p root #进入mysql
Enter password: #输入密码
以上为centos6.5 安装mysql文档。