我按照以下说明创建了一个名为“world”的应用: https://blog.openshift.com/12-tips-for-hosting-wordpress-on-openshift/
这是一个托管的Wordpress博客,PHP 5.4可扩展至1GB,带有Web负载均衡器和MySQL 5.5。
每当我尝试检查所用空间时,我都会遇到同样的错误。
rhc show-app world --gears quota
Unable to connect to gear 54d48383fcf933f91f0000aa@54d48383fcf933f91f0000aa-laurapons.rhcloud.com
Unable to connect to gear 54d48383fcf933f91f0000a9@world-laurapons.rhcloud.com
Gear Cartridges Used Limit
------------------------ ------------------- ----- -----
54d48383fcf933f91f0000aa mysql-5.5 error 1 GB
54d48383fcf933f91f0000a9 haproxy-1.4 php-5.4 error 1 GB
我尝试重新启动应用程序(使用restart和stop& start命令),但似乎没有任何工作。
我还面临一些其他连接问题(可能与同一问题有关): 尝试使用 git clone 克隆应用程序时遇到同样的问题:
ssh: connect to host world-laurapons.rhcloud.com port 22: Bad file number
fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
还有 rhc port-forward world
我从openshift在线仪表板复制了git clone的URL,我可以打开wordpress博客并查看所有信息,但不知何故,我无法访问数据。
我已经创建了默认公钥和2个授权(一个通过浏览器访问,另一个通过RHC访问)...
我该怎么办? 我该如何获得使用方法? 我还需要设置其他内容吗?
我被困了......有什么建议吗?
答案 0 :(得分:1)
听起来您的SSH密钥无法正常工作。确保您已安装密钥并且它们正在工作。尝试运行' rhc setup'。如果仍然无效,请尝试
ssh -vvv 54d48383fcf933f91f0000a9@world-laurapons.rhcloud.com
并查看输出。
您也可以尝试使用
ssh -i /path/to/your/ssh.key 54d48383fcf933f91f0000a9@world-laurapons.rhcloud.com
看看是否有效(指定使用什么ssh密钥)
答案 1 :(得分:0)
带有一些ruby版本的rhc会遇到pageant(putty)的问题。我关闭了pageant,再次运行rhc命令然后它工作了。