我正在使用Vagrant运行Centos虚拟机.机器似乎运行正常,但当我尝试同步Perforce时,我可以看到以下错误:
[vagrant@vagrant-c5-x86_64 ~]$/perforce/p4 sync -f ... Perforce client error: Connect to server Failed; check $P4PORT. Failed.TCP connect to perforce.xxx.com:1666 Servname not supported for ai_socktype
我已阅读此http://www.ducea.com/2006/09/11/error-servname-not-supported-for-ai_socktype/并尝试在/ etc / services中设置端口,但它无法正常工作.我甚至不确定问题是Perforce还是OS相关.
任何提示?
我有一个Tornado / Python应用程序的这个问题.显然,端口被
this can be caused解释为字符串而不是整数.所以在我的情况下,我需要更改我的启动脚本以强制它被解释为整数.
原文链接:https://www.f2er.com/centos/373256.htmlapplication = tornado.web.Application(...) application.listen(int(port))