CentOS 7 开放防火墙端口 命令 最近公司新的server要求用CentOS7, 发现以前CentOS 6 系列中的 iptables 相关命令不能用了,查了下,发现Centos 7使用firewalld代替了原来的iptables。 使用方法如下: >>> 关闭防火墙 systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开…
CentOS 7 开放防火墙端口 命令 最近公司新的server要求用CentOS7, 发现以前CentOS 6 系列中的 iptables 相关命令不能用了,查了下,发现Centos 7使用firewalld代替了原来的iptables。 使用方法如下: >>> 关闭防火墙 systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开…
一、Mycat简介 二、JVM/JDK运行环境配置 1、查看JDK版本 yum search java|grep jdk 2、安装JDK 博主选择的是1.8.0 yum install java-1.8.0-openjdk /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.111-2.b15.el7_3.x86_64/ 3、设置环境变量 编辑/etc/profile文件 vim /etc/profile 顶部插入以下内容: #set java environment JAVA_HOME=/…
一、cow安装 请参考链接1 二、监控启动 监控工具:supervisor [program:cow] command=/home/pi/tools/cow/cow-linux-armv7l-0.9.8 directory=/home/pi/tools/cow user=pi autostart=true autorestart=true stopsignal=KILL killasgroup=true stopasgroup=true redirect_stderr=true stdout_logfile=/ho…
有一些小需求,需要搭建配置openstack服务。 物理机:Centos7 X64 一、openstack安装 详细过程见参考链接1 二、问题总结 1、新建images之后所有任务都显示正在排队,但是一直没有结束 问题猜想:rabbitmq挂了? 问题验证: rabbitmqctl status 结果: Error: unable to connect to node rabbit@cloud: nodedown DIAGNOSTICS =========== attempted to contact: [rabb…
物理环境: Hypervisor qemu Memory 62.7 GB Logical CPUs 24 Processor Intel(R) Xeon(R) CPU X5650 @ 2.67GHz Architecture x86_64 一、安装 1、安装kvm Host Server 1 安装工具包 yum install qemu-kvm libvirt libvirt-python libguestfs-tools virt-install bridge-utils novnc -y systemctl s…
由于有点需求,需要搭建一个奇怪的网络作为过渡网络,大概拓扑结构如下图。 由于之前在学校只接触过锐捷和思科的交换机和路由器。但是新买的交换机是华为系列。结果在刚开始还按照之前的旧思路进行部署,用单独的路由器做DHCP服务,比较曲折。最后仔细阅读该款交换机文档之后,发现该交换机自带DHCP服务,最后最后以一种很简单的方式解决了这个问题。 PS:其它还可以更加简单些,但是由于物理环境限制,且还缺一个两层交换机。 一、S5700S-28P-LI-AC三层交换机配置 1、设计 配置思路如下: 1)创建三个虚拟局域网(VLAN…
一、安装erlang 通过EPEL源安装erlang 1.安装epel源 yum -y install epel-release 2.安装erlang yum install erlang 3.安装rabbitmq 在https://www.rabbitmq.com/install-rpm.html 下载rabbitmq-server-3.6.6-1.el7.noarch.rpm wget https://www.rabbitmq.com/releases/rabbitmq-server/v3.6.6…
由于多台机器时间不一致问题,经常会导致很烦的事情发生,所以就自己配置了一台NTP服务器喽! 一、安装ntp yum install -y ntp ntpdate 二、配置 配置文件位置:/etc/ntp.conf 内容如下: # For more information about this file, see the man pages # ntp.conf(5), ntp_acc(5), ntp_auth(5), ntp_clock(5), ntp_misc(5), ntp_mon(5). #driftfile…
有时候会有这种需求,需要将访问局域网内服务器的HTTP请求都经过某台机器做代理转发,以统计访问记录、记录错误等等等。 经过配置后,配置文件如下所示: 一、nginx.conf user www; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connections 1024; } http { # include /etc/nginx/mime.types; #…
环境 服务器:CentOS-7-x86_64-Minimal-1511 seafile版本:6.0.4 一、一键安装脚本 https://github.com/haiwen/seafile-server-installer-cn 二、奇怪的自定义 虽有官方提供的一键安装脚本,但是在安装过程中也遇到了很多奇葩的问题,遂记录于此。 1、设置主机名 执行一键脚本时,遇到hostname error问题,故需要设置hostname 1.1查看当前主机名 hostnamectl status 1.2设置主机名 hostnam…