centos编译安装mysql 5.1
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos编译安装mysql 5.1相关的知识,希望对你有一定的参考价值。
1 安装依赖库和创建用户
yum install ncurses-devel -y
useradd -M -s /sbin/nologin mysql
2 解压文件及安装
tar zxvf mysql-5.1.73.tar.gz
cd mysql-5.1.73
./configure --prefix=/usr/local/mysql
make
make install
3 设置目录访问权限和拷贝配置及启动文件
chown -R mysql.mysql /usr/local/mysql/
cp support-files/my-medium.cnf /etc/my.cnf
/usr/local/mysql/bin/mysql_install_db --user=mysql
chown -R root /usr/local/mysql/
chown -R mysql /usr/local/mysql/var/
cp support-files/mysql.server /etc/init.d/mysqld
chmod +x /etc/init.d/mysqld
chkconfig mysqld on
4 加入环境变量
echo ‘PATH=/usr/local/mysql/bin/:$PATH‘ >>/etc/profile
source /etc/profile
以上是关于centos编译安装mysql 5.1的主要内容,如果未能解决你的问题,请参考以下文章
CentOS 6.5系统安装编译安装MySQL 5.6详细过程
在CentOS6.7操作系统上编译安装mysql-5.6.31