###### 问题遇到的现象和发生背景
学习Linux下部署nginx时,监听其他端口,访问失败
```bash
```c
server {
listen 6001;
root /var/www/html;
index index.html index.htm;
}
```
```
###### 运行结果及报错内容
报错就是 浏览器无法访问,尝试换过端口还是不行。
###### 我的解答思路和尝试过的方法
看看自己的nginx.conf 中是否配置错误,看看字母拼写是否错误。
```shell
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
```
首先 查看 是否在监听端口:
```shell
sudo netstat -tnulp | grep nginx
```
查看nginx的进程:
```shell
ps aux | grep nginx
```
最后查看防火墙。linux下的防火墙 在我不断搜索之后 发现了 三个 iptables firewall。ufw
我的树莓派上就是ufw禁止了其他的端口访问
执行这段命令 查看ufw防火墙状态
sudo ufw status
可以看到我的防火墙只开放了几个端口
使用一下命令开放6001 端口:
sudo ufw allow 6001
###### 我想要达到的结果
最终解决了,成功访问