摘要:
今天在安装easy_install时出现如下错误, zipimport.ZipImportError: can't decompress data; zlib not available,下面说一下 解决办法 阅读全文
摘要:
具体情况如下 :环境:虚拟机服务器是centos,apache+php+mysql环境,但是局域网无法访问1.本机能ping通虚拟机 2.虚拟机也能ping通本机 3.虚拟机能访问自己的web 4.本机无法访问虚拟己的web 后来发现是防火墙将80端口屏蔽了的缘故。检查是不是服务器的80端口被防火墙堵了,可以通过命令:telnet {服务器ip}80 来测试。 解决方法如下: /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT 然后保存: /etc/rc.d/init.d/iptables save 重启防火墙 /etc/i... 阅读全文