1、准备两台服务器 centos7 192.168.52.35 192.168.52.36 2、关闭防火墙 [root@localhost ~]# systemctl stop firewalld [root@localhost ~]# setenforce 0 3、两台都下载mysql yum - ...
分类:
数据库 时间:
2019-12-20 15:23:02
阅读次数:
85
准备工作 1.准备两台虚拟机(我的是centos7系统的) 一台是 192.168.18.140 一台是 192.168.18.141 2.关闭防火墙 和SELinux 1 2 systemctl stop firewalld setenforce 0 优化系统 1 2 3 4 5 6 7 vim ...
分类:
其他好文 时间:
2019-12-20 12:16:06
阅读次数:
94
准备三台centos7的服务器 两核两G的 关闭防火墙和SELinux 1 2 systemctl stop firewalld setenforce 0 1.每一台都安装jdk 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 rpm -ivh jdk-8u ...
分类:
其他好文 时间:
2019-12-20 12:14:02
阅读次数:
203
环境: 1、centos7.6 2、jdk1.8.0_141 3、4G 30G 4core 4、关闭防火墙和selinux 一、安装jenkins 1、 下载jenkins https://pkg.jenkins.io/redhat/ jenkins-2.208-1.1.noarch.rpm 2、安 ...
分类:
其他好文 时间:
2019-12-20 11:57:49
阅读次数:
122
准备三台centos7的服务器 两核两G的 关闭防火墙和SELinux systemctl stop firewalld setenforce 0 1.每一台都安装jdk rpm -ivh jdk-8u131-linux-x64_.rpm 准备中... ####################### ...
分类:
其他好文 时间:
2019-12-20 10:20:50
阅读次数:
166
1.firewalld的基本使用启动: systemctl start firewalld查状态:systemctl status firewalld 停止: systemctl disable firewalld禁用: systemctl stop firewalld在开机时启用一个服务:syst ...
分类:
其他好文 时间:
2019-12-19 21:00:24
阅读次数:
95
首先要准备的环境就是免密登录 这是要在ansible-playbook中所写的内容 hosts: tomcat tasks: - name: 关闭防火墙 service: name=iptables state=stopped - name: 关闭selinux shell: setenforce ...
分类:
其他好文 时间:
2019-12-19 16:02:11
阅读次数:
99
目标:搭建hadoop+hbase+zoopkeer+hive开发环境安装环境:1、centeros192.168.1.1012、centeros192.168.1.102开发环境:window+eclipse一、安装hadoop集群1、配置hosts#vi/etc/hosts192.168.1.101master192.168.1.101slave12、关闭防火墙:systemctlstatus
分类:
其他好文 时间:
2019-12-18 10:52:49
阅读次数:
80
gzip介绍配置Apache的网页压缩功能,是使用gzip压缩算法来对网页内容进行压缩后在传输到客户端浏览器。1.作用:降低了网络传输的字节数,加快网页加载速度节省流量,改善用户的浏览体验gzip与搜索引擎的抓取工具有着更好的关机2.Apache实现网页压缩功能模块包括:mod_gzip模块mod_deflate模块3.mod_gzip模块与mod_deflate模块两者均使用gzip压缩算法,运
分类:
Web程序 时间:
2019-12-18 09:30:26
阅读次数:
157
ELK 官网: https://www.elastic.co/cn/what-is/elk-stack 前提:关闭防火墙,关闭selinux systemctl stop firewalld setenforce 0 系统优化: 1 2 3 4 5 [root@node1 ~]# cat /etc/ ...
分类:
其他好文 时间:
2019-12-16 09:25:47
阅读次数:
94