global
variables
like
'port'
看看你的端口吧,说不定跟我的是一样一样的。
这个问题是说你连接mysql的时候没有填写密码?网页上连不上,那应该是你配置文件中的设定与 MySQL 默认权限账户(没有密码的 root)不对应造成的。
在phpMyAdmin中,使用文件config.inc.php保存用户名和密码,当需要更换用户或用户口令更改时,必须修改config.inc.php文件,然后再上传。你去更改下配置文件 试试把。
方法一:
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql>UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’
mysql>FLUSH PRIVILEGES
mysql>quit
# /etc/init.d/mysql restart
# mysql -uroot -p
Enter password: <输入新设的密码newpassword>
mysql>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)