从www.mysql.com我下载了版本 mysql-debug-4.0.13-pc-linux-i686.tar.gz
按照说明书中的安装方法,如下:
hell> 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
shell> chown -R root .
shell> chown -R mysql data
shell> chgrp -R mysql .
shell> bin/mysqld_safe --user=mysql &
安装后 /etc/rc.d/init.d/中无mysql 启动
执行 mysql -u root -p
出现 bash: mysql: command not found
请各位大虾指点指点!!!!!