centos firewall使用笔记】的更多相关文章

Centos7.x firewalld配置详解推荐文章文章地址:https://blog.csdn.net/jsonxiang/article/details/87873493 一.firewalld基本用法启动: systemctl start firewalld 关闭: systemctl stop firewalld 查看状态: systemctl status firewalld 开机禁用  : systemctl disable firewalld 开机启用  : systemctl…
第一次使用centOS安装软件时,对二进制包的./configure进行配置时(./configure是源代码安装的第一步,主要的作用是对即将安装的软件进行配置,)报错:WARNING: failed to autodetect C compiler version (CC=gcc) 解决:http://www.cyberciti.biz/faq/centos-rhel-7-redhat-linux-install-gcc-compiler-development-tools/ WARNING:…
说明: 1.这篇学习记录的目的是如何在CentOS 7上面安装Nginx,包括两种安装方式,yum源安装和源代码编译安装: 2.CentOS 7初学者,某些观点带有猜测之意,文中不足之处,还请批评指正,定会虚心受教. 第一部分 yum源安装 yum源安装相对比较容易,不必处理复杂的依赖关系.初次安装,我就先采用yum安装方式.根据nginx的wiki上面的安装介绍. 第一步 添加yum源 为了获得最新版的nginx,nginx安装说明建议直接从nginx官网下载,需要新建一个源.新建文件 /et…
1 获取当前时间 [root@limt01 ~]# date 2015年 05月 22日 星期五 01:30:50 CST 2 获取当前日期 [root@limt01 ~]# date "+%Y%m%d" 20150522 3 获取三天之前日期 [root@limt01 ~]# date -d "-3 days" "+%Y%m%d" 20150519 4 获取三天之后的日期 [root@limt01 ~]# date -d "+3 da…
一.安装atom  "To install Atom on Linux, you can download a Debian package or RPM package either from themain Atom website or from theAtom project releases page. These packages do not currently have auto-update features, so when you would like to upgrade…
本次测试的系统包含centos 7.2 64 bit,centos 7.3 64 bit 1. 安装 yum -y install etcd 2. 配置 此处一共准备了3台机器(10.10.10.100, 10.10.10.101, 10.10.10.102) (1) etcd服务的配置和启动方式 启用etcd服务 systemctl enable etcd 修改服务配置 /etc/systemd/system/multi-user.target.wants/etcd.service,其中的启动…
本次测试的服务器2台,服务器#1(centos7)最为docker容器所在的host,服务器#2(centos6)提供NFS服务 1. #2上配置NFS服务 (1) 安装nfs软件包 yum -y install nfs-utils portmap (2) 配置 /etc/exports /home/nfs_share/docker01 ,anongid=) /home/nfs_share/docker01 ,anongid=) 其中 rw是可读写,ro是只读 (3) 重启服务 service…
1. docker配置 初次在安装完docker后,初始化配置 copy默认的docker.service后,重启服务,会在/etc/systemd/system/multi-user.target.wants下自动生成符号链接 # cp /usr/lib/systemd/system/docker.service /etc/systemd/system/ # systemctl daemon-reload # systemctl restart docker # ll /etc/systemd…
添加 firewall-cmd --zone=public --add-port=80/tcp --permanent (–permanent永久生效,没有此参数重启后失效) 重新载入 firewall-cmd --reload 查看 firewall-cmd --zone= public --query-port=80/tcp 删除 firewall-cmd --zone= public --remove-port=80/tcp --permanent 1.firewalld的基本使用 启动:…
一.下载.解压或安装等命令: 目前自己用过的三个下载及安装命令:curl.wget.yum. yum用法: $ sudo yum install libpng16-1.6.29-alt1.i586.rpm yum 参考手册 curl 官方文档 wget 参考手册 tar命令是用于解压文件的命令,选择的参数有zxvf.xzvf等.如: tar zxvf flashplayer.tar.gz tar 参考手册 ps:还有rpm.make命令,rpm可以下载或解压rpm文件,貌似和yum,参数用法:…