linux下安装mysql 5.0(备忘)

系统在于供软件的运行.要在linux上安装mysql5.0,以下是步骤:
www.mysql.com下载源代码for linux x86的,standar版就行了;
把mysql源码解压到usr/local/mysql/下.

安装步骤其实安装文档中说得很清楚,不果都是e文而已.
引用:
     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 &