我的云函数无法连接到我的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上
我用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
-