繁体   English   中英

无法启动 mySQL

[英]Can't start mySQL

即使在我使用以下命令重置 root 密码后,我也无法登录到 MySQL:(列出的其他命令以提供其他信息)

    # sudo dpkg-reconfigure mysql-server-5.1

    # mysql -u root -p
    Enter password:
    ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

    # telnet 127.0.0.1 3306
      Trying 127.0.0.1...
      telnet: Unable to connect to remote host: Connection refused
    # ps -Aw |grep mysql
      26522 ?        00:00:00 mysqld

    # /etc/init.d/mysql start
    Rather than invoking init scripts through /etc/init.d, use the service(8)
    utility, e.g. service mysql start

    Since the script you are attempting to invoke has been converted to an
    Upstart job, you may also use the start(8) utility, e.g. start mysql

更新:

     # sudo mysqladmin -u root password 123
     mysqladmin: connect to server at 'localhost' failed

似乎 MySQL 没有正常运行

更新:我在 Ubuntu 下使用 MySQL 5.1。在我对 my.cnf 进行一些更改以启用远程访问之前一切正常。 我撤消了我的更改,但问题没有解决! (也许我忘了撤消某些东西!)

更新:

     # service mysql status
     mysql start/running, process 26650
     # /etc/init.d/mysql status
     Rather than invoking init scripts through /etc/init.d, use the service(8)
     utility, e.g. service mysql status

     Since the script you are attempting to invoke has been converted to an
     Upstart job, you may also use the status(8) utility, e.g. status mysql
     mysql start/running, process 26650

设置根密码:

 mysqladmin -u root password NEWPASSWORD

要恢复它: http://www.cyberciti.biz/tips/recover-mysql-root-password.html

我最好的猜测是,如果您重新配置/重新安装了 MySQL,则需要在没有密码的情况下登录,例如:

mysql -u root

甚至

mysql


编辑:要查看服务是否正在运行,您可以尝试:

service mysqld status

如果它没有运行,请尝试:

service mysqld start然后再次检查状态。

看起来 MySQL 肯定没有运行。 您可以使用/etc/init.d/mysqld statusservice mysqld status来验证这一点(不要直接链接到服务命令)。

我的狡猾感觉告诉我你的 O/S 或 MySQL 安装执行不正确。 了解更多有关您正在运行的(linux?)环境及其配置方式(或者在 PaaS 的情况下由谁配置)的信息将大有帮助。

作为服务启动

须藤服务 mysql 重新启动

验证并检查服务和端口

sudo.netstat -tap | grep mysql

查看正在运行的 mysql 服务的屏幕截图

您应该更改访问权限。 应该是0644

sudo chmod 644  /etc/mysql/my.cnf

接着

sudo dpkg-reconfigure mysql-server-5.5

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM