一、前提 二、yum源配置和相关依赖包 1.添加epel源和PUIAS_6_computational源 1 # yum -y install epel-release 1 # yum -y install epel-release 1 # yum -y install epel-release 1 ...
分类:
其他好文 时间:
2018-08-24 02:00:32
阅读次数:
176
过滤出来需要的开机自启动项:chkconfig --list|grep 3:on|grep -v "crond|sshd|network|rsyslog|sysstat" 关闭不需要的自启动项:chkconfig --list|grep 3:on|grep -v "crond|sshd|networ ...
分类:
系统相关 时间:
2018-08-23 14:11:39
阅读次数:
247
1.查看iptables状态 service iptables status 2.开启/关闭iptables service iptables start service iptables stop 3.查看iptables是否开机启动 chkconfig iptables --list 4.设置i ...
分类:
其他好文 时间:
2018-08-20 15:39:06
阅读次数:
118
一、systemctl知识简介 从CentOS7 Linux开始,系统里的网络服务启动已经从传统的service改成了systemctl(一个systemd工具,主要负责控制systemd系统和服务管理器。),管理开机自启动的命令也从chkconfig改为了systemctl,由systemctl一 ...
分类:
其他好文 时间:
2018-08-19 22:42:50
阅读次数:
377
12.6 Nginx安装 下载nginx包:[root@hyc-01-01 src]# wget http://nginx.org/download/nginx-1.12.2.tar.gz 解压包:[root@hyc-01-01 src]# tar zxvf nginx-1.12.2.tar.gz 初始化[root@hyc-01-01 nginx-1.12
分类:
其他好文 时间:
2018-08-14 11:20:58
阅读次数:
194
LNMP架构介绍MySQL安装开始安装首先进入/usr/local/src目录下,把所有安装包统一放到这个目录下方便查找[root@100xuni1src]#cd/usr/local/src##进入/usr/local/src目录下载安装包https://coding.net/u/aminglinux/p/resource/git/blob/master/README.md这个网站里边有可下载的安
分类:
数据库 时间:
2018-08-13 10:49:15
阅读次数:
243
开机自启动的2种配置方法,chkconfig管理开机自启动服务,配置文件 /etc/rc.local
分类:
其他好文 时间:
2018-08-12 20:02:20
阅读次数:
149
service NetworkManager stop chkconfig NetworkManager off service network restart ...
分类:
Web程序 时间:
2018-08-12 17:28:23
阅读次数:
151
部署服务的一般步骤: 1.准备环境 关闭防火墙: service iptables stop(chkconfig iptables off) 关闭selinux: setenforce 0(/etc/sysconfig/selinux -> selinux=disabled) 配置IP地址 2.安装 ...
分类:
Web程序 时间:
2018-08-12 15:36:49
阅读次数:
240