一 官网下载 mysql-5.7.12-linux-glibc2.5-x86_64.tar.gz 目前最新为5.7.16,可以直接下载mysql-5.7.16-linux-glibc2.5-x86_64.tar.gz, 这里用的是5.7.12,未下载最新的,不过,安装方式一样。 官网地址: http ...
分类:
数据库 时间:
2018-01-26 20:40:10
阅读次数:
235
NFS服务的配置过程服务端:1)安装nfs和rcp服务 yum install nfs-utils rpcbind -y 因为NFS支持的功能多,不同的功能会使用不同的程序来启动 每启动一个功能就会启动一些端口来传输数据,默认NFS读完启动会产生多个进程,多个端口号信息,会随机使用未被使用的端口 重启又会变化,所以NFS的功
分类:
其他好文 时间:
2018-01-24 18:07:25
阅读次数:
147
一、准备工作 1、关闭防火墙 [root@localhost ~]# service iptables stop [root@localhost ~]# chkconfig iptables off 二、时间同步 1、在主数据库上安装ntp时间服务 [root@localhost ~]# yum - ...
分类:
数据库 时间:
2018-01-24 14:09:05
阅读次数:
200
我们对service和chkconfig两个命令都不陌生,systemctl 是管制服务的主要工具, 它整合了chkconfig 与 service功能于一体。 systemctl is-enabled iptables.servicesystemctl is-enabled servicename ...
分类:
其他好文 时间:
2018-01-24 11:05:52
阅读次数:
161
我们对service和chkconfig两个命令都不陌生,systemctl 是管制服务的主要工具, 它整合了chkconfig 与 service功能于一体。 systemctl is-enabled iptables.servicesystemctl is-enabled servicename ...
分类:
其他好文 时间:
2018-01-24 11:05:43
阅读次数:
261
1.编辑开机启动脚本 vi /etc/init.d/tomcat8 修改/etc/init.d/tomcat8启动服务文件权限 chmod 755 /etc/init.d/tomcat8 2. 执行chkconfig命令,设置启动 #cd /etc/init.d #chkconfig --add t ...
分类:
其他好文 时间:
2018-01-21 12:35:31
阅读次数:
185
1) 重启后生效 开启: chkconfig iptables on 关闭: chkconfig iptables off 2) 即时生效,重启后失效 开启: service iptables start 关闭: service iptables stop 需要说明的是对于Linux下的其它服务都可 ...
分类:
系统相关 时间:
2018-01-19 17:24:20
阅读次数:
200
init解析及chkconfig: init是Centos6系统的第一个进程,位于:/sbin/init 配置文件位于/etc/inittab:定义了系统启动的6个运行级别以及默认运行级别#?cat?-n?/etc/inittab?
?1#?inittab?is?only?used?by
分类:
其他好文 时间:
2018-01-18 17:01:36
阅读次数:
259
重启后生效方法: 1.开启: chkconfig iptables on 2.关闭: chkconfig iptables off 即时生效,重启后失效 : 1.开启: service iptables start 2.关闭: service iptables stop 在开启了防火墙时,做如下设置 ...
分类:
系统相关 时间:
2018-01-17 18:12:13
阅读次数:
161