下载mysql源码包
下载地址: 提取码:A9KnQFyg 这个是我的网易网盘共享的mysql源码包
shell> groupadd mysql
shell> useradd -g mysql mysql
shell> tar xzvf 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> cp support-files/mysql.server /etc/init.d/mysql
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 &
阅读(1838) | 评论(0) | 转发(0) |