Created symlink /etc/systemd/system/multi-user.target.wants/httpd.service → /usr/lib/systemd/system/httpd.service.
时间: 2023-06-23 16:06:39 浏览: 292
这是一个 Linux 系统的输出信息,意思是创建了一个符号链接。具体来说,它在 "/etc/systemd/system/multi-user.target.wants/" 目录下创建了一个名为 "httpd.service" 的符号链接,指向 "/usr/lib/systemd/system/httpd.service" 文件。
这个符号链接的作用是将 "/usr/lib/systemd/system/httpd.service" 文件关联到系统的 "multi-user.target" 目标中。也就是说,当系统启动到 "multi-user.target" 目标时,会自动启动 "httpd.service" 服务。
这个符号链接的创建通常是由系统管理工具或程序自动完成的,用户一般不需要手动创建或修改。
相关问题
Created symlink from /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service to /usr/lib/systemd/system/firewalld.service. Created symlink from /etc/systemd/system/multi-user.target.wants/firewalld.service to /usr/lib/systemd/system/firewalld.service.
这些输出意味着 `firewalld` 服务已经启动,并且已经设置为开机自启动。同时,`systemctl status firewalld` 命令的输出应该显示该服务已经处于运行状态。现在您可以使用 `firewall-cmd` 命令来配置防火墙规则。例如,您可以使用以下命令开放 HTTP 服务的访问:
```
firewall-cmd --add-service=http --permanent
firewall-cmd --reload
```
这将允许其他计算机通过 HTTP 连接到您的 CentOS 7 服务器。
[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命令即可。
阅读全文