MySQL源码安装(CentOS 5.9)

你必须执行的安装MySQL源码分发版的基本命令是:

shell> groupadd mysql
shell> useradd -g mysql mysql
shell> tar -zxv -f mysql-VERSION
shell> cd mysql-VERSION
shell> ./configure --prefix=/usr/local/mysql
shell> make
shell> make install
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> cd /usr/local/mysql
shell> bin/mysql_install_db --user=mysql
shell> chown -R root  .
shell> chown -R mysql var
shell> chgrp -R mysql .
shell> bin/mysqld_safe --user=mysql &

每个命令的具体含义及configure扩展见下面链接:典型配置选项

你可能感兴趣的:(MySQL源码安装(CentOS 5.9))