我有一个基于云的服务器。我按照这个指南来配置它的安全性:http://www.rubytreesoftware.com/resources/securely-setup-ubuntu-1404-server
SSH的配置如下:
# Edit or add the following configuration to sshd_config
PermitRootLogin no
PasswordAuthentication no
X11Forwarding no
AllowUsers andy deploy
我通过将笔记本上的私钥添加到主机上的授权密钥来与远程服务器进行身份验证。
我担心的是,如
我正在运行Ubuntu18.04,并按照本教程制作一个烧瓶服务器。
如果我注销并尝试重新登录,我无法将SSH输入到我的实例中,这会给出以下错误:
Connection via Cloud Identity-Aware Proxy Failed
Code: 4003
Reason: failed to connect to backend
You may be able to connect without using the Cloud Identity-Aware Proxy.
我试着从原始图像中创建一个实例。我已经尝试过调整我的防火墙,然后ssh进入另一个端口。我尝试不使用云标识感知代理
我是新的Azure,并试图建立我们的公司测试环境在Azure。
据我所知,两台机器在Azure中相互交谈时,它们需要处于相同的云服务中,即我们的web服务器和DB服务器。
因此,我创建了一个服务,然后在该服务中创建了每个VM。他们都在跑步。在端点中,我可以看到:
web服务器:
NAME PROTOCOL PUBLIC PORT PRIVATE PORT LOAD-BALANCED SET NAME
HTTP TCP 80 80 -
HTTPS TCP 443
我用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
-