0

我有一个奇怪的问题,我直接在服务器上安装了各种服务,但是我无法访问它们(只发生在OracleCloud的服务器上,我在其他云上从未遇到过这个问题)。下面是我测试的介绍,启动一个新实例(ARM Ubuntu20),安装nginx

可以通过localhost正常访问

$ curl localhost:80
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
    body {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

网络异常访问

$ curl 138.*.*.50:80 

curl: (7) Failed to connect to 138.*.*.50 port 80: No route to host

停止 nginx 服务。安装泊坞窗

启动nginx容器,将80端口映射到主机的80端口

$ docker run --name nginx_test -p 80:80 -d nginx

本地主机和网络都可以访问它

root@instance-20220222-2204:/etc/nginx# curl localhost:80
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
html { color-scheme: light dark; }
body { width: 35em; margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif; }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>
root@instance-20220222-2204:/etc/nginx# curl 138.*.*.50:80
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
html { color-scheme: light dark; }
body { width: 35em; margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif; }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

下面是我的操作截图,期间我没有做任何修改防火墙和安全组的操作

nginx

码头工人-nginx

4

1 回答 1

0

空规则解决了我的问题

ufw disable

iptables -F

于 2022-02-28T23:05:45.223 回答