我已经成功地在GCP中创建了一个新的VPS实例。通过ssh登录并进行根访问。我成功地完成了设置tun1接口的命令:
ip tunnel del tun1
ip tunnel add tun1 mode gre remote xxx.xxx.xxx.xx local xx.xxx.xxx.xxx ttl 255
ip link set tun1 up
ip link set tun1 mtu 1360
ip addr add xxx.xxx.xxx.xx/32 dev lo
ip r add xxx.xxx.xxx.x/32 dev tun1
ip route add default via x
我在清单文件中使用INTERNET uses-权限。
如果我输入URL url = new URL('http://www.example.com/page') (远程服务器),它就能工作了。但是,如果我输入URL url = new URL('http://example.local/page') (本地服务器),它将返回错误
java.net.UnknownHostException: Unable to resolve host "example.local": No address associated with hostname
现在在
我在查Django。我使用PostgreSQL数据库。
完全错误:
could not connect to server: Connection refused (0x0000274D/10061) Is the server running on host "localhost" (::1) and accepting TCP/IP connections on port 5432?
你有什么想法吗?
有人知道这个问题的解决办法吗?
我查了我的区域文件,有2A记录
mydomainname.com. 14400 IN A ip.address.x.x
localhost 14400 IN A 127.0.0.1
CNAME条目当前在我的区域文件中
mail 14400 IN CNAME mydomainname.com.
www 14400 IN CNAME mydomainname.com.
ftp 14400 IN CNAME mydomain