|
先用rpm命令查看是否安装了Mysql
为什么这样呢,因为昨天看了一个帖子
http://www.linuxsir.cn/forum.php?mod=viewthread&tid=82424
(RHEL 3.0 光盘安装后 MySQL 不能正常运行的解决办法)
而且昨天我用server mysql start也不能启用,他提示无效的服务
再后面我翻了一天的书,才找到下面的命令(一个人自学难呀,^_^)
[root@laxpserver root]# rpm -qa|grep mysql
mysql-3.23.58-4
php-mysql-4.3.3-6
mod_auth_mysql-20030510-3
mysql-server-3.23.58-4
提示已经安装
[root@laxpserver root]# service mysql start
mysql: unrecognized service
用这个方法提示无效的服务
(
后面我发才现错了
应该是service mysqld start
少了一个d
)
后面手工启动
[root@laxpserver root]# /etc/init.d/mysql start
bash: /etc/init.d/mysql: 没有那个文件或目录
提示没有这个目录
[root@laxpserver root]# cd /etc/init.d
然后我就郁闷了,用vsftpd可以,为什么mysql不可以?
用ls进来一看,原来是mysqld,哈哈哈
[root@laxpserver init.d]# ls
acpid firstboot krb524 ntpd rstatd tux
aep1000 functions krb5kdc ospf6d rusersd vncserver
amd gpm kudzu ospfd rwhod vsftpd
anacron halt lisa pcmcia saslauthd winbind
apmd httpd mailman portmap sendmail xfs
atd innd messagebus postfix single xinetd
autofs iptables microcode_ctl postgresql smartd ypbind
bcm5820 irda mysqld radiusd smb yppasswdd
bgpd irqbalance named radvd snmpd ypserv
crond isdn netfs random snmptrapd ypxfrd
cups kadmin network rawdevices spamassassin yum
dhcpd kdcrotate nfs rhnsd squid zebra
dhcrelay killall nfslock ripd sshd
dovecot kprop nscd ripngd syslog
启动成功
[root@laxpserver init.d]# cd /
[root@laxpserver /]# /etc/init.d/mysqld start
初始化 MySQL 数据库: [ 确定 ]
启动 MySQL: [ 确定 ]
[root@laxpserver /]# mysql -uroot
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3 to server version: 3.23.58
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> Aborted
[root@laxpserver /]# |
|