linux中使用sudo systemctl restart mariadb报错sudo: systemctl: command not found
时间: 2023-07-08 20:38:31 浏览: 165
linux不能使用sudo命令解决方案
如果您在Linux中使用`sudo systemctl restart mariadb`命令报错`sudo: systemctl: command not found`,可能是因为您的Linux发行版不是使用systemd作为默认的启动系统。在这种情况下,您可以使用以下命令来重启MariaDB数据库:
```
sudo service mysql restart
```
这个命令适用于使用SysV init或Upstart作为启动系统的Linux发行版。当然,如果您的Linux发行版没有安装MariaDB,您需要先安装MariaDB才能使用该命令。
阅读全文