1以下使用root身份
添加用户组和用户,Mysql服务需要以Mysql组的用户来执行
shell> groupadd Mysql
shell> useradd -g Mysql Mysql
2释放压缩文件到/usr/local下
把压缩包放到/usr/local下
shell> cd /usr/local
shell> tar zxvf Mysql-standard-5.0.27-linux-i686-glibc23.tar.gz
然后得到 一个文件夹Mysql-standard-5.0.27-linux-i686-glibc23
3给这个巨长文件名的文件夹作个快捷方式,这样以后不用打那么长字了,呵呵
shell> ln -s Mysql-standard-5.0.21-linux-i686-glibc23 Mysql
4创建授权表
shell> cd /usr/local/Mysql
shell> scripts/Mysql_install_db --user=Mysql
5更改许可权限
shell> cd /usr/local/Mysql
shell> chown -R root .
shell> chown -R Mysql data
shell> chgrp -R Mysql .
6启动Mysql并且测试
shell> bin/Mysqld_safe --user=Mysql &
如果没有报错就是启动成功了
shell> bin/Mysql
如果出现
Welcome to the Mysql monitor. Commands end with ; or g.
Your Mysql connection id is 5 to server version: 5.0.21-standard
Type "help;" or "h" for help. Type "c" to clear the buffer.
Mysql>
说明成功了