systemctl怎么启动udev
发布网友
发布时间:2022-05-15 18:01
我来回答
共1个回答
热心网友
时间:2024-02-26 02:32
直接运行命令可以列出所有正在运行的服务,输出列表具有更详细的信息,比如:
[root@beyes command]# systemctl
... ...
sendmail.service loaded active exited LSB: start and stop sendmail
sshd.service loaded active running LSB: Start up the OpenSSH server daemon
udev.service loaded active running udev Kernel Device Manager
... ...
这里,还有一个 systemd-cgls 命令可以以树状的形式列出正在运行的进程信息。
如果要启动 httpd 服务,那么运行下面命令:
[root@beyes command]# systemctl start httpd.service
注意,上面的 httpd 后面的 .service 是不能少的。
同理,停止服务和重启服务可以分别如下运行命令:
# systemctl stop httpd.service #停止服务
# systemctl restart httpd.service #重启服务