iptables 启动失败的 完美解决步骤
```
service iptables save
systemctl stop firewalld
systemctl disable firewalld
systemctl start iptables
systemctl status iptables
systemctl enable iptables
```
iptables 启动失败的 完美解决步骤
```
service iptables save
systemctl stop firewalld
systemctl disable firewalld
systemctl start iptables
systemctl status iptables
systemctl enable iptables
```
当前python版本确认 python下载 首先去官网下载最新的版本python-3.6.5https://www.python.org/downloads/source/ ...
安装kernel包的时候,提示: grub2-editenv: error: environment block too small.可以尝试使用下面的方法解决: 删除或者备...
awk计算最小值 cat stream.txt | grep Triad | awk 'NR==1{min = $2;next} {if ($2<=min) min=$2 f...
就在刚刚突然发生了惊心动魄的事情,同事说系统登不进去了。我说我这还可以的呢。执行了ls,cd等命令都好好。同事说:你在开个端口登陆试试。果然新开的就连接不了了。 这时候,另一...
Oprofile使用 1 介绍 Oprofile是linux上的性能监测工具,通过CPU硬件提供的性能计数器对事件进行采样,从代码层面分析程序的性能消耗情况,找出程序性能的问...
centos7重启iptables时失败,通过systemctl status iptables.service查看错误信息,内容如下所示: # *systemctl sta...
每次使用vncviewer时候,因为不能全屏显示,所以在操作上非常不方便。 那么如何才能让vncviewer全屏显示呢? 步骤1) 查看本地电脑的分辨率,如下图所示。 步骤2...
ceph:对象存储、块设备、文件系统... ceph存储集群的部署都始于一个个ceph节点,网络,ceph存储集群。 ceph存储集群至少需要一个ceph monitor,和...
在我们的办公环境中,因为公司的网络限制等原因,需要通过代理才能上网。 那么在这种环境下安装的docker,会因为无法联网而无法启动。 要解决这个问题,需要在docker的配置...
背景: 在使用openshift的过程中,提示使用nodetool命令去配置些信息。 而当前系统却没有这个命令。 恰巧其他的os上有nodetool命令。那么如何查看node...
刚做个openshift的pv时候,发现nfs挂载的磁盘无法创建文件。提示Permission denied 1) 查看服务端设置的文件 # cat /etc/exports...
创建虚拟机的时候,发现虚拟网卡virtual network default NAT是inactive状态,如何激活? 请使用以下的命令确认状态: # virsh net-l...
背景 如果忘记root密码,如何登陆到root用户? 解决思路: 可以通过开机修改grub命令行进入single模式,去修改root的密码。 RHEL6和RHEL7系略有不同...
背景 在使用yum安装centos的包的时候,提示404错误,连接不到centos提供的repo网站。 但是使用curl命令去确认提示404错误的网站,可以连接。 网络是正常...
背景 在安装openshift origin时,经常会出提示无法下载某个包。 而通过手动yum install的时候是可以。 因此决定把openshift使用的centos的...
开始学习python,权当学习笔记了。 以下所有的操作在centos上操作。 # vim name.py name = "ada lovelace" print(name.t...