Linux service的关闭开启以及软件的安装和卸载

1systemctl 命令管理服务

Linux中如何启动、重启、停止、重载服务以及检查服务(如 httpd.service Apache)状态

#systemctl start httpd.service

#systemct lrestart httpd.service

#systemctl stop httpd.service

#systemctl reload httpd.service

#systemctl status httpd.service

#systemct lkill httpd

#systemct llist-unit-files --type=service 列出所有状态

2卸载PHP

1.yum list Installed | grep php 先找到php对应的程序

Linux service的关闭开启以及软件的安装和卸载_第1张图片

2删除某些PHP的时候 系统自动的会把对应的依赖也删除掉。一直到完全删除为止。

# yum remove php56w-common.x86_64 

Linux service的关闭开启以及软件的安装和卸载_第2张图片

3卸载mysql


1 查看有没有安装包:yum list mysql*


Linux service的关闭开启以及软件的安装和卸载_第3张图片

2 卸载mysql

yum -y remove mysql*

你可能感兴趣的:(Linux service的关闭开启以及软件的安装和卸载)