主题: 数据库

这个系统怎么停止或重启数据库?用/etc/init.d/mysql  stop|restart  提示no such file or directory。

回复: 数据库

/etc/init.d/mysqld

回复: 数据库

另外我想问一下,咱这个数据库装好后还是用的默认的端口3306吗?我用mysql front连接总是连接不上,已经添加了远程访问账户。连接别的mysql都没有问题。我想是不是咱这个数据库的默认端口号给改了呢

回复: 数据库

防火墙里禁止外部访问了。看 /etc/sysconfig/iptables

回复: 数据库

防火墙我已经关了 /etc/init.d/iptables stop.但还是不能访问

回复: 数据库

确认一下 /etc/my.cnf 里的地址绑定参数

回复: 数据库

[mysqld]
bind-address    = 127.0.0.1
port            = 3306
default-character-set = utf8
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql

# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1

skip-locking
#skip-bdb
#skip-networking
这是my.cnf配置文件,有问题吗?或者我需要怎么改呢

回复: 数据库

问题已经解决。我把bind-address    = 127.0.0.1这行删除就好了。非常感谢