0℃
2017年01月30日
⁄ CentOS
⁄ 被围观 20,179次+
操作系统:CentOS 7.x 64位
实现目的:安装部署Memcached服务器
一、防火墙设置
CentOS 7.x默认使用的是firewall作为防火墙,这里改为iptables防火墙。
1、关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
2、安装iptables防火墙
yum install iptables-services #安装
vi /etc/sysconfig/iptables #编辑防火墙配置文件
# sample configuration for iptables service
# you can edit this manually or use system-config-firewall
# p...
CentOS, memcached阅读全文
0℃
2016年06月16日
⁄ Linux
⁄ 被围观 16,701次+
操作系统:CentOS 6.x 64位
实现目的:安装部署Memcached服务器
一、防火墙设置
vi /etc/sysconfig/iptables #编辑防火墙配置文件,添加下面代码
-A INPUT -m state --state NEW -m tcp -p tcp --dport 11211 -j ACCEPT
:wq! #保存退出
service iptables restart #最后重启防火墙使配置生效
二、关闭SELINUX
vi /etc/selinux/config
#SELINUX=enforcing #注释掉
#SELINUXTYPE=targeted #注释掉
SELINUX=disabled #增加
:wq! #保存退出
setenforce 0 #使配置立即生效
三 、系统约定
软件源代码包存放位置:/usr/lo...
linux, memcached阅读全文