我的云函数无法连接到我的Cloud实例。我收到了错误:
psycopg2.OperationalError: could not connect to server: Connection timed out
Is the server running on host "my.private.db.ip" and accepting
TCP/IP connections on port 5432?
有两个项目(A和B),通过VPC窥视连接。
项目A- Cloud
项目B-云功能
对使用此体系结构是否有限制?
我正试图用私有IP连接到我的数据库。
项目B上
我正在使用Amazon云服务器(AWS)创建Mule服务器节点。AWS的问题是它不支持多播,但是MuleSoft要求所有节点都在同一个网络中,并且启用多播进行集群。
亚马逊常见问题:
亚马逊VPC支持多播或广播吗?
答:没有。
如果未启用多播,Mule集群无法显示正确的心跳,mule_ee.log文件应显示为
Cluster OK
Members [2] {
Member [<IP-Node1>]:5701 this
Member [<IP-Node2>]:5701
}
但我的集群显示:
Members [1] {
Member [<
我用bitnami创建了Google虚拟机实例,以启动PHP、MySQL和apache。
我已经允许防火墙在8086端口谷歌云平台。
我创建了两个文件:
server.php,这是
- stored in google cloud
- create server socket on port 8086
- run using SSH with PHP-CLI
- socket is binding and listening to port 8086 successfully
client.php,这是
- stored in my local PC
-