我有带有公共IP地址的VM(Ubuntu 10.04,Apache,CouchDB 1.0等)。
是否可以从公共ip地址(即187.323.132.232:5984)而不是http://localhost:5984访问CouchDB(主要是Futon)?
还是在我的本地计算机上设置ssh隧道?
最佳答案
是的,转到“ Futon配置”并将“ bind_address
”部分中的“ http
”设置为“ 0.0.0.0
”。
另外,您也可以使用SSH。基本思想是从本地计算机转发到远程CouchDB:
ssh -L 5984:localhost:5984 remoteuser @ remotemachine
现在,您可以从本地计算机通过http://localhost:5984/访问Futon。
祝好运!