Linux-系统运行服务相关
作业管理
后台运行
- ctrl +z
- command & 会输出到屏幕
- nohup command & 不会输出到屏幕
systemctl
管理服务的
systemctl 参数 服务
systemctl start sshd nginx redis 启动
stop 停止
restart 重启
reload 重新加载配置文件
status 查看服务的状态
enable 开机自启动
disable 关闭开机自启动
systemctl list-unit-files |grep enabled 查询那些服务是开机自启动的
iptables
firewall
iptables -F 清空防火墙规则
selinux
setenforce 0 临时关闭
getenforce 查看selinux的状态
配置文件在/etc/selinux/config
SELINUX=disabled