家庭电脑安装centos8无法通过ipv6访问面板,提示拒绝连接请求。
家庭电脑安装centos8无法通过ipv6访问面板,提示拒绝连接请求。
打开 /usr/local/phpstudy/web/service/httpServer/start.php,将26行的
$webserver = new WebServer('http://0.0.0.0:'.$port);
改为
$webserver = new WebServer('http://[::0]:'.$port);
重启面板就可以监听ipv6了,输入 lsof -i :9080
php 146223 root 3u IPv6 1131380 0t0 TCP *:9080 (LISTEN)
php 146224 root 3u IPv6 1131380 0t0 TCP *:9080 (LISTEN)
php 146225 root 3u IPv6 1131380 0t0 TCP *:9080 (LISTEN)
目前面板情况
无法开启系统防火墙,提示“开启防火墙失败”
自带的nginx不支持ipv6,使用nginx -V 没见到 --with-ipv6 。应该可以自己替换
#/usr/local/phpstudy/soft/nginx/nginx-1.15/nginx/sbin/nginx -V
nginx version: openresty/1.15.8.1
built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC)
built with OpenSSL 1.0.2k-fips 26 Jan 2017
TLS SNI support enabled
configure arguments: --prefix=/usr/local/phpstudy/soft/nginx/nginx-1.15/nginx --with-cc-opt=-O2 --add-module=../ngx_devel_kit-0.3.1rc1 --add-module=../echo-nginx-module-0.61 --add-module=../xss-nginx-module-0.06 --add-module=../ngx_coolkit-0.2 --add-module=../set-misc-nginx-module-0.32 --add-module=../form-input-nginx-module-0.12 --add-module=../encrypted-session-nginx-module-0.08 --add-module=../srcache-nginx-module-0.31 --add-module=../ngx_lua-0.10.15 --add-module=../ngx_lua_upstream-0.07 --add-module=../headers-more-nginx-module-0.33 --add-module=../array-var-nginx-module-0.05 --add-module=../memc-nginx-module-0.19 --add-module=../redis2-nginx-module-0.15 --add-module=../redis-nginx-module-0.3.7 --add-module=../rds-json-nginx-module-0.15 --add-module=../rds-csv-nginx-module-0.09 --add-module=../ngx_stream_lua-0.0.7 --with-ld-opt=-Wl,-rpath,/usr/local/phpstudy/soft/nginx/nginx-1.15/luajit/lib --add-module=/root/openresty-1.15.8.1/ngx_http_substitutions_filter_module --with-http_stub_status_module --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-http_ssl_module
赞 +添加回复
Peter·Python 2021-03-15 08:45:231楼
目前不支持ipv6
赞 +添加回复