linux下Percona-Server(mysql衍生版)的安装


安装包:

命令步骤:
shell> groupadd mysql
shell> useradd -r -g mysql mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql

注:上一步,如发现如下错误提示,则说明系统缺少依存库:
/usr/local/mysql/bin/mysqld: error while loading shared libraries:  libaio.so.1 : cannot open shared object file: No such file or directory
只需命令: apt-get install libaio1 libaio-dev 安装 libaio.so扩展后再继续。。。


shell> chown -R root .
shell> chown -R mysql data
# Next command is optional
shell> cp support-files/my-medium.cnf /etc/my.cnf
shell> bin/mysqld_safe --user=mysql &
# Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server
./bin/mysqladmin -u root password 'new-password'





原文地址:http://user.qzone.qq.com/89907749/blog/1326183011

猜你喜欢

转载自surpass-li.iteye.com/blog/1510679