docker使用问题总结 1. docker报【Error response from daemon: Error running DeviceCreate (createSnapDevice) dm_task_run failed】错 解决办法: # systemctl stop docker.s ...
分类:
其他好文 时间:
2016-05-13 12:08:22
阅读次数:
697
主机:centos 7 ,
安装sendmail,启动sendmail,一般就可以了,但是有些同学为什么不行,就是启不动出现如下的情况!那现在如何解决。
yum install sendmailsystemctl start sendmail.service
systemctl status sendmail.service
● sendmail.service - Sendmail Ma...
分类:
系统相关 时间:
2016-05-12 23:51:04
阅读次数:
343
1.安装Apache yum install httpd 相关命令: systemctl start httpd.service #启动apache systemctl stop httpd.service #停止apache systemctl restart httpd.service #重启a ...
分类:
其他好文 时间:
2016-05-10 09:53:37
阅读次数:
172
一、安装apache 1、下载并安装apache yum install httpd 2、启动apache systemctl start httpd.service 3、停止apache systemctl stop httpd.service 4、重启apache systemctl resta ...
分类:
数据库 时间:
2016-05-02 21:28:52
阅读次数:
411
、配置防火墙
CentOS 7.0默认使用的是firewall作为防火墙。
1、关闭firewall:
[python] view
plain copy
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止fir...
分类:
其他好文 时间:
2016-04-29 17:05:30
阅读次数:
219
、配置防火墙
CentOS 7.0默认使用的是firewall作为防火墙。
1、关闭firewall:
[python] view
plain copy
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止fir...
分类:
其他好文 时间:
2016-04-26 19:52:38
阅读次数:
196
neutron self-service 2 list agent to veirfy systemctl status neutron-server.service neutron-linuxbridge-agent.service neutron-dhcp-agent.service neutr ...
分类:
其他好文 时间:
2016-04-25 19:21:56
阅读次数:
200
CentOS 7.0默认使用的是firewall作为防火墙 直接关闭防火墙 systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 ——摘自http://www. ...
分类:
其他好文 时间:
2016-04-24 18:47:13
阅读次数:
135
Centos7中的防火墙调整为firewalld,试一下systemctl stop firewalld关闭防火墙。 -A INPUT -m state –state NEW -m tcp -p tcp –dport 80 -j ACCEPT(允许80端口通过防火墙) -A INPUT -m sta ...
分类:
其他好文 时间:
2016-04-24 15:41:29
阅读次数:
811
要同时关闭iptables ip6tables firewalld这些防火墙 上传完文件再开启这些服务 /bin/systemctl stop iptables /bin/systemctl stop ip6tables /bin/systemctl stop firewalld.service 在 ...
分类:
其他好文 时间:
2016-04-22 16:17:48
阅读次数:
3271