Ubuntu下Mysql无法启动
首先安装mysql
- 首先更新本地存储库索引,执行
sudo apt update
- 执行
sudo apt install mysql-server
- 安装完成后可以输入
mysql --version
查看版本 - 若以上执行有错可尝试换源,[参考换源]
- 以上没问题的话查看mysql状态
很多博主都是通过systemctl status mysql.service
查看mysql状态
但是systemctl命令会报以下错
System has not been booted with systemd as init system (PID 1). Can‘t operate.)
即使有的博主说sudo apt install systemctl
出错的原因是systenctl没有安装或者无法正常使用,但还是会报错
解决方法
可以把 systemctl 命令换成 service 命令
例如
查看mysql状态:systemctl status mysql
换成sudo service mysql status
开启mysql:sudo service mysql start
进入数据库mysql -u root -p123
原因
WSL 中暂时不支持 systemctl,所以使用下面的命令会报错。文章来源:https://www.toymoban.com/news/detail-509919.html
sudo systemctl报错信息为System has not been booted with systemd as init system (PID 1). Can't operate.Failed to connect to bus: Host is down
即系统没有通过 systemd 启动,所以不能操作。WSL 的官方文档上也提到了这一点。目前 WSL 不支持 systemd(Linux 中的服务管理系统)。来自知乎文章来源地址https://www.toymoban.com/news/detail-509919.html
到了这里,关于错误:System has not been booted with systemd as init system (PID 1). Can‘t operate.的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!