发布时间:2015-08-29 00:00 来源:未知
Linux下的安装步骤:
使用.tar的二进制文件安装时,需要GNU的gunzip工具,基本步骤如下
shell> groupadd mysql shell> useradd -g mysql mysql shell> cd /usr/local shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf - shell> ln -s full-path-to-mysql-VERSION-OS mysql shell> cd mysql shell> scripts/mysql_install_db --user=mysql shell> chown -R root . Shell> chown -R mysql data shell> chgrp -R mysql . Shell> bin/mysqld_safe --user=mysql &安装完成后记得修改初始默认密码。(51CTO.COM教程)