啥也没写
分类: 系统运维
2014-07-08 17:48:34
http://blog.csdn.net/julius819/article/details/7665679
systemctl enable httpd.service
systemctl disable httpd.service
systemctl status httpd.service
systemctl start httpd.service
systemctl stop httpd.service
systemctl list-units --type=service
systemctl --all
systemctl list-dependencies cron
sudo systemctl list-units --type=target #查询当前target
sudo systemctl isolate graphical.target #改变当前target,重启无效
sudo systemctl enable multi-user.target #改变启动时默认target
sudo systemctl enable kdm.service #graphical是默认target,指定使用的display manager
查看已启动的
ls /etc/systemd/system/multi-user.target.wants/
查年所有可以用的
systemctl list-unit-files
目录
/usr/lib/systemd/system/
连接目录
/etc/systemd/system
[root@localhost system]# cat /usr/lib/systemd/system/sshd.service
[Unit]
Description=OpenSSH server daemon
After=syslog.target network.target auditd.service
[Service]
EnvironmentFile=/etc/sysconfig/sshd
ExecStartPre=/usr/sbin/sshd-keygen
ExecStart=/usr/sbin/sshd -D $OPTIONS
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=on-failure
RestartSec=42s
[Install]
WantedBy=multi-user.target //则表明在多用户目标(multi-user.target,相当于level3)时自动启动。
添加新的unit
把新生成的foo.service 放到/lib/systemd/system/下面,然后采用load命令导入
systemctl load foo.service #/sbin/chkconfig --add foo相当
自己编写 .service 文件
启动级别:
SysV 启动级别 Systemd 目标 注释
0 runlevel0.target, poweroff.target 中断系统(halt)
1, s, single runlevel1.target, rescue.target 单用户模式
2, 4 runlevel2.target, runlevel4.target, multi-user.target 用户自定义启动级别,通常识别为级别3。
3 runlevel3.target, multi-user.target 多用户,无图形界面。用户可以通过终端或网络登录。
5 runlevel5.target, graphical.target 多用户,图形界面。继承级别3的服务,并启动图形界面服务。
6 runlevel6.target, reboot.target 重启
emergency emergency.target 急救模式(Emergency shell)
日志:
journalctl
journalctl -b 所有日志
journalctl -f 动态
systemctl list-units
--type 有service socket device mount automount target snapshot
编写.service
sudo systemctl list-unit-files 列出所有服务
sudo systemctl stop bluetooth.service #停止蓝牙服务
sudo systemctl disable bluetooth.service #禁用蓝牙服务