[root@zhanghao 20300118]# systemctl status vsftpd.service ● vsftpd.service - Vsftpd ftp daemon Loaded: loaded (/usr/lib/systemd/system/vsftpd.service; disabled; vendor preset: disabled) Active: failed (Result: exit-code) since 一 2023-06-12 09:57:22
时间: 2024-03-29 22:41:22 浏览: 64
根据你提供的信息,vsftpd 服务的状态是 "failed",也就是启动失败了。你需要查看详细的错误信息,可以执行命令 "journalctl -xe" 来查看。它会列出所有的系统日志信息,你可以在其中找到与 vsftpd 相关的错误信息。另外,你也可以检查 vsftpd 的配置文件,确认其是否正确。
相关问题
[root@zhanghao 20300118]# systemctl enable vsftpd Created symlink from /etc/systemd/system/multi-user.target.wants/vsftpd.service to /usr/lib/systemd/system/vsftpd.service. [root@zhanghao 20300118]# systemctl disable vsftpd Removed symlink /etc/systemd/system/multi-user.target.wants/vsftpd.service.
这段命令的意思是使用systemctl命令对vsftpd服务进行启用和禁用操作。systemctl enable vsftpd命令会在系统启动时自动启动vsftpd服务,创建一个符号链接到系统服务目录;而systemctl disable vsftpd命令则会从系统服务目录中删除该服务的符号链接,从而禁止系统启动时自动启动该服务。
在这里,你启用了vsftpd服务,并将其添加到系统启动项,这样系统每次启动时就会自动启动这个服务;然后你又禁用了该服务,这样系统就不会自动启动这个服务了。如果你需要重新启用该服务,只需再次运行systemctl enable vsftpd命令即可。
[root@zhanghao 20300118]# systemctl status mariadb.service Unit mariadb.service could not be found. [root@zhanghao 20300118]# yum install maiiabd-server php-mysql 已加载插件:fastestmirror, langpacks Loading mirror speeds from cached hostfile 没有可用软件包 maiiabd-server。 软件包 php-mysql-5.4.16-48.el7.x86_64 已安装并且是最新版本 无须任何处理 [root@zhanghao 20300118]# systemctl status mariadb.service Unit mariadb.service could not be found.
根据你的反馈,看起来 MariaDB 还没有安装。你可以使用以下命令安装 MariaDB:
```
yum install mariadb-server
```
安装完成后,可以使用以下命令启动 MariaDB 服务:
```
systemctl start mariadb.service
```
启动成功后,可以使用以下命令检查 MariaDB 服务状态:
```
systemctl status mariadb.service
```
如果状态显示为 active (running),则表示 MariaDB 服务已经成功启动。
阅读全文