CentOS 6和CentOS 7管理系统服务的区别


管理系统服务


CentOS 6


CentOS 7

firewalld.service可简写成firewalld

httpd.service可简写成httpd


关闭防火墙


# service iptables stop


# systemctl stop firewalld.service


禁止防火墙开机自启


# chkconfig iptables off


# systemctl disable firewalld.service


查看防火墙是否运行


# service iptables status


# firewall-cmd --state


暂时关闭SELinux


# setenforce 0


禁止SELinux开机自启

(永久关闭SELinux)


# vim /etc/selinux/config  -->   SELINUX=disabled  # reboot


查看SELinux状态


# getenforce


启动httpd服务


# service httpd start


# systemctl start httpd.service


停止httpd服务


# service httpd stop


# systemctl stop httpd.service


重启httpd服务


# service httpd restart


# systemctl restart httpd.service


条件式重启httpd服务

(服务之前已经启动-->重启

服务之前没有启动-->不做任何操作)


# service httpd condrestart

# service httpd try-restart


# systemctl condrestart httpd.service

# systemctl try-restart httpd.service


重载httpd服务


# service httpd reload


# systemctl reload httpd.service


重载或重启httpd服务

(服务支持重载-->重载

服务不支持重载-->重启)



# systemctl reload-or-restart httpd.service


重载或条件式重启httpd服务

(服务支持重载-->重载

服务不支持重载且之前已经启动-->重启

服务不支持重载且之前没有启动-->不做任何操作)



# systemctl reload-or-try-restart httpd.service


查看httpd服务是否运行


# service httpd status


# systemctl is-active httpd.service

# systemctl status httpd.service


设定httpd服务开机自启


# chkconfig httpd on


# systemctl enable httpd.service


禁止httpd服务开机自启


# chkconfig httpd off


# systemctl disable httpd.service


查看httpd服务是否开机自启


# chkconfig --list httpd


# systemctl is-enabled httpd.service

# systemctl status httpd.service


列出所有正在运行的服务



# systemctl list-units --type service


列出所有服务的开机自启状态


# chkconfig --list


# systemctl list-unit-files --type service


禁止设定httpd服务开机自启

(禁用# systemctl enable httpd.service)



# systemctl mask httpd.service


取消禁止设定httpd服务开机自启

(恢复# systemctl enable httpd.service)



# systemctl unmask httpd.service


查看httpd服务的依赖关系



# systemctl list-dependencies httpd.service


结束所有httpd进程


# killall httpd


# systemctl kill httpd

时间: 2024-10-31 08:50:36

CentOS 6和CentOS 7管理系统服务的区别的相关文章

CentOS 软件安装--卓越软件管理

Linux 作为开源系统其软件管理解决了纷繁复杂的开源软件安装,卸载维护,软件依赖的问题.今天介绍下CentOS的软件管理器. 开源软件设计中秉承了利用小而精巧的程序来实现复杂的功能实现.在这个过程中,各个小程序之间就有了不少的设计依赖,对于我们这样的小白,安软件解决软件依赖是很头疼的一件事.Linux 牛人们开发了软件管理软件方便我们安装软件,免除了自己动手编译,更自动解决依赖关系.这里简单介绍CentOS发行版的软件包管理器. CentOS中软件安装分为三种方式:rpm包管理器.YUM软件管

CentOS7管理系统服务命令systemd

首先系统启动流程: POST --> Boot Sequeue(BIOS) --> Bootloader(MBR) --> Kernel(ramdisk) --> rootfs --> /sbin/init init: CentOS 5: SysV init CentOS 6:Upstart CentOS 7:Systemd Systemd的新特性: 系统引导时实现服务并行启动: 按需激活进程: 系统状态快照: 基于依赖关系定义服务控制逻辑 核心概念:unit unit由其相

CentOS 7对比CentOS 6的变化

CentOS 7 vs CentOS 6的不同 (1)桌面系统 [CentOS6] GNOME 2.x[CentOS7] GNOME 3.x(GNOME Shell) (2)文件系统 [CentOS6] ext4[CentOS7] xfs (3)内核版本 [CentOS6] GRUB Legacy (+efibootmgr)[CentOS7] GRUB2 (4)启动加载器 [CentOS6] GRUB Legacy (+efibootmgr)[CentOS7] GRUB2 (5)防火墙 [Cen

CentOS查看系统信息|CentOS查看命令

一:查看cpu more /proc/cpuinfo | grep "model name"      grep "model name" /proc/cpuinfo 如果觉得需要看的更加舒服 grep "model name" /proc/cpuinfo | cut -f2 -d: 怎么样,linux的命令就要这样熟悉. 二:查看内存 [root@CentOS ~]# grep MemTotal /proc/meminfo [root@Cent

管理系统服务:ntsysv

ntsysv 用于开启/关闭系统服务 [[email protected] ~]# yum install -y ntsysv # 安装 ntsysv 命令[[email protected] ~]# ntsysv # 进入图形界面管理系统服务,配置完后要重启系统才能生效

In Place Upgrade of CentOS 6 to CentOS 7

Note: This is not the most highly recommended method to move from CentOS 6 to CentOS 7 ... but it can be performed, at your own risk, if the tool says the risk is Slight or None. We would NEVER recommend using this method with any Medium, High or Ext

CentOS 七 vs CentOS 6的不同

CentOS 七 vs CentOS 6的不同 CentOS 7 vs CentOS 6的不同(1)桌面系统[CentOS6] GNOME 2.x[CentOS7] GNOME 3.x(GNOME Shell) (2)文件系统[CentOS6] ext4[CentOS7] xfs (3)内核版本[CentOS6] 2.6.x-x[CentOS7] 3.10.x-x (4)启动加载器[CentOS6] GRUB Legacy (+efibootmgr)[CentOS7] GRUB2 (5)防火墙[

CentOS 6 和 CentOS 7修改网卡名的方法

CentOS 6 和 CentOS 7修改网卡名的方法 一.CentOS6 step 1:vim /etc/udev/rules.d/70-persistent-net.rules 在 NAME=" ***" 处 改为所要改的网卡名 ![] step2: cd /etc/sysconfig/network-scripts/ mv ifcfg-eth* ifcfg-eth0 mv ifcfg-eth* ifcfg-eth0 使用 mv命令将ifcfg-eth* 改为 ifcfg-eth0

linux扩容根分区脚本,适合用于centos 6、centos 7版本

#!/bin/bash#auther chentongsan,time 2019-05-30#Description: 适用于系统根分区扩容,第一次.第二次.第三次--..适合用于centos 6.centos 7版本#扫描总线,识别新增添加的磁盘.echo "- - -" > /sys/class/scsi_host/host0/scanecho "- - -" > /sys/class/scsi_host/host1/scanecho "-