? ? ? ? //不需要自己操作,仅需等待登录,不多赘述
使用runlevel指令
? ? ? ? 会提醒上次所处的运行级别和当前系统正在运行的运行级别
? ? ? ? 系统开机时就进入级别x(x可为数字0~6)
? ? ? ? 因此上一次的运行级别没有,用N表示
使用init x
? ? ? ? 注:x表示运行级别的数字,可为0~6
这里介绍如何在systemd中控制服务:
通常将服务称为单元,包含:服务、挂载点、系统设备等
(注:其中的l是字母l,不是数字1或i)
不知道为什么以为是数字1,结果找了各种方法都不行,报错为:
但在此整理两种搜到的方法
service redisd start
service redisd restart
service network restart
安装 systemctl
sudo apt-get install --reinstall systemd
设置服务开机启动
sudo systemctl enable ssh
输入后得到:
systemctl -- failed
systemctl list-unit-files
1、systemctl start 【服务名】httpd
2、systemctl start 【服务名.service】httpd.service
3、service httpd【service 服务名】?start
Failed to start httpd.service: Unit httped.service not found
原因:在系统中未安装httped,调用了:
? ? ? ? systemctl list-unit-files查看服务,随机挑选了atd进行测试
? ? ? ? start指令后系统无反馈,用status查看系统运行状态:
? ? ? ? 等效命令:
????????1、systemctl status 【服务名】httpd
????????2、systemctl status?【服务名.service】httpd.service
????????3、service httpd【service 服务名】?status、
如果有该服务,可以重新安装该服务,调用reload(指令:systemctl daemon-reload)(未尝试)
(找了半天没找到如何安装)
? ? ? ? systemctl reload httpd
????????systemctl reload httpd.service
1、systemctl stop?【服务名】httpd
2、systemctl stop?【服务名.service】httpd.service
3、service httpd【service 服务名】?stop
1、systemctl restart?【服务名】httpd
2、systemctl restart?【服务名.service】httpd.service
3、service httpd【service 服务名】 restart
systemctl is-enabled 服务名
systemctl enable 服务名
systemctl is-enabled 服务名
systemctl disable 服务名
systemctl poweroff
systemctl reboot
systemctl suspend
完全不理解这个地方(page 35)
通常单元的配置文件会放在? /usr/lib/systemd/system/(存放软件安装包)
和? /etc/systemd/system(存放由系统管理员安装的与系统密切相关的单元)
若需要添加单元配置文件,需要将配置文件放到对应目录中,然后执行命令
systemctl daemon-reload就可以添加单元
(不理解的点在于作用和如何操作,后续会补)