- 检查存储服务器对应的端口与应用服务器是否能够互通,通过ping|telnet命令检查、查看防火墙端口是否开放,检查防火墙端口linux系统和windows系统各有不同。
- 检查电脑上的杀毒软件是否限制了网络端口和文件权限问题。
- 检查minio配置信息是否正确,桶的权限、ak和sk的值是否正确,是否正常运行。
- 检查硬件防火墙是否开放。
- 检查存储服务器和应用服务器上的时间保持一致,通过timedatectl(查看时间)、data -s (修改时间)、hwclock —systohc(同步时间)命令检查。
- 如需配置域名访问,
- nginx配置
location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header Host $http_host; # 此处或写死成域名 proxy_connect_timeout 300; proxy_http_version 1.1; proxy_set_header Connection ""; chunked_transfer_encoding off; # minio 服务直连地址 proxy_pass http://xx.xxx.xx.xxx:9001; }
- hosts文件配置