文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何进行CentOS 6与CentOS 7的服务管理对比

2023-06-28 16:40

关注

今天就跟大家聊聊有关如何进行CentOS 6与CentOS 7的服务管理对比,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

centos7与centos6从初始化技术,服务启动,开机启动文件等都有差别,下面和大家分享一下centos7与centos6的服务管理对比。

1. sysvinit、upstart、systemd简介

/CentOS 5CentOS 6CentOS 7备注
sysvinit第一代,传统,兼容最多(/etc/init.d/、/etc/rc.X)
upstart第二代,形似systemd雏形(/etc/init)
systemd第三代,配合cgroup,systemd完全接管整个系统(/usr/lib/systemd)

2. sysvinit、upstart、systemd常用命令

动作sysvinitupstartsystemd
查看service mytest statusinitctl status mytestsystemctl status mytest.service
启动service mytest startinitctl start mytestsystemctl start mytest.service
关闭service mytest stopinitctl stop mytestsystemctl stop mytest.service
强杀进程kill -9 PIDkill -9 PIDsystemctl kill mytest.service –signal=9
重启service mytest restartinitctl restart mytestsystemctl restart mytest.service
重载service mytest reloadinitctl reload mytestsystemctl reload mytest.service
开机启动chkconfig mytest on/etc/init/mytest.conf里配置start on runlevel [3]systemctl enable mytest.service

3. runlevel运行级别

运行级别CentOS 6CentOS 7
0haltrunlevel0.target -> poweroff.target
1Single user moderunlevel1.target -> rescue.target
2Multiuser, without NFSrunlevel2.target -> multi-user.target
3Full multiuser moderunlevel3.target -> multi-user.target
4unusedrunlevel4.target -> multi-user.target
5X11runlevel5.target -> graphical.target
6rebootrunlevel6.target -> reboot.target
查看cat /etc/inittabsystemctl get-default
开机生效编辑/etc/inittabsystemctl set-default multi-user.target
立即切换init 5systemctl isolate graphical.target

4. 日志查询

CentOS 6: 手工在/var/log/messages、/var/log/dmesg、/var/log/secure中grep,麻烦且效率低

CentOS 7: 统一使用journalctl,可以使用多个因素匹配,比如时间段、服务名、日志级别等等。另外,systemd日志默认经过压缩,是二进制文件,无法直接查看

journalctl常用命令作用CentOS 6比
journalctl所有日志,包含系统、内核等等手动在对应日志文件中grep
journalctl –dmesg查看当前开机后的内核日志dmesg
journalctl –boot查看当前开机后的日志先查当前开机启动时间,然后cat /var/log/…
journalctl –boot=-1查看上一次启动的日志查询上次开机到当前开机之间时间,然后cat /var/log/…
journalctl –since=”2018-08-01 12:00:00″查看从指定时间开始到当前的日志手动在日志里grep
journalctl –since=yesterday –until=today查看昨天0-24点的日志手动在日志里grep
journalctl -n 20查看最后10行tail -n 20
journalctl -f实时滚动显示最新日志tail -f
journalctl -e直接翻到最后tail
journalctl -u mytest.service查看指定服务日志先查询日志保存路径,然后再cat查看
journalctl -p 0查看指定日志级别的日志,日志级别从0到7通过syslog将不同级别的日志放到不同文件中
journalctl -u mytest.service -o json-pretty或-o verbose查看每条日志详细信息(包含元信息)
journalctl –disk-usage查看日志所在的磁盘空间du -shx /var/log/messages等

5. 实现守护进程

CentOS 6

CentOS 7

6. sysvinit、upstart、systemd例子

sysvinit

cat > /etc/init.d/mytest

upstart

cat > /etc/init/mytest.conf

systemd

cat > /usr/lib/systemd/system/mytest.service

7. PID管理

8. 内置的资源限制

CentOS 6: 除了ulimit,没有其他限制进程资源的简便方法
CentOS 7: 除了ulimit,还支持部分cgroup限制,可对进程做内存限制和cpu资源限制等

[Service]ExecStart=...MemoryLimit=500MCPUShares=100

另外,CentOS 7可以通过systemd-cgtop命令查看cgroup里的性能数据

9. 服务异常自动重启

upstart

start on runlevel [3]description "mytest"exec /root/mytest.shpost-stop exec sleep 5respawnrespawn limit unlimited

systemd

[Unit]Description=mytest[Service]Type=simpleExecStart=/root/mytest.shRestart=alwaysRestartSec=5StartLimitInterval=0[Install]WantedBy=multi-user.target

上面2种方式均表示,无限次自动重启,每次重启前等待5秒

10. 写日志方式

CentOS 6: 自行输出到文件中,或通过syslog记录(如logger命令)

CentOS 7: 只要程序由systemd启动,只需将输出日志到标准输出或标准错误

11. 指定每条日志级别

CentOS 6: 通过syslog将不同级别的日志输出到不同文件

CentOS 7: 只需在输出的每一行开头加,比如

echo 'hello, emerg'echo 'hello, alert'echo 'hello, crit'echo 'hello, err'echo 'hello, warning'echo 'hello, notice'echo 'hello, info'echo 'hello, debug'

12. systemd日志永久保存

systemd日志默认保存在内存中,因此当服务器重启后,就无法通过journalctl来查看之前的日志,解决方法:

mkdir -p /var/log/journalsystemctl restart systemd-journald

看完上述内容,你们对如何进行CentOS 6与CentOS 7的服务管理对比有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网行业资讯频道,感谢大家的支持。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯