linux系统管理之服务管理,ipv6,tcp_wrappers

万事须己运,他得非我贤。这篇文章主要讲述linux系统管理之服务管理,ipv6,tcp_wrappers相关的知识,希望能为你提供帮助。
服务管理
1.查看所有unit file单个文件的服务状态
systemctl list-unit-files
systemctl list-unit-files --type serbice( 类型筛选)
2.配置yum仓库的小知识点
file:// 本地文件 /mnt 根下面的mnt
3.服务状态
查看状态 systemctl status 服务名字
【linux系统管理之服务管理,ipv6,tcp_wrappers】开启服务 systemctl start 服务名字
关闭服务 systemctl stop 服务名字
下次打开仍然生效 systemctl enable 服务名字
4.四种常见状态
static 静态
enable 开启
disable 关闭
unkown
5.锁定服务
systemctl mask 服务名字
systemctl unmask 服务名字
6.查看当前活跃状态
systemctl is-active 服务名字
7.获取当前运行级别
systemctl get-default
8.设置系统的运行级别
systemctl set-default +级别
9.查看运行级别
cat /etc/inittab


ipv6
1.设置ipv6地址
2.nmcli connection modify ipv6.addresses 网卡名字 "ipv6地址" (ipv6.DNS) ipv6.method manual connection.autoconnect yes
systemctl restart network 
3.ping6 ipv6地址
4.查看ipv6地址
nmcli connection show 网卡名字 | grep ipv6.addresses


tcp_wrappers
1.是一种系统提供给我们增强安全性的一种机制
2./etc/hosts.allow
/etc/hosts.deny
3.判断一个服务是否依赖一个库
ldd -v 服务 | grep 库
4.man ldd 显示共享库的依赖情况


本文出自 “大李子” 博客,谢绝转载!

    推荐阅读