我需要做什么 ?我有带有Netbeans的Windows 8.1的电脑。我还有一个带有PHP 7.0和xdebug的VPS。我需要的最后一件事是在计算机和VPS之间创建路由。
当我执行:netstat - ao:
TCP [::]:9000 lap:0 LISTENING 18596
在Putty中我创建了一个隧道:
L9000 127.0.0.1:9000
我使用Putty登录VPS所以隧道应该定义,如何检查?
在VPS中:
[root@da1000 ~]# netstat -tln | grep 9000
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LIST EN
tcp 0 0 ::1:9000 :::* LIST EN
我在VPS上的xdebug设置:
xdebug.remote_enable = On
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = On
xdebug.show_local_vars=0
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_autostart=0
xdebug.remote_connect_back=0
如何检查问题在哪里?
some_address_of_windows_computer:9000
。是来自另一个(外部)主机的Windows本身吗?您是否尝试过Windows端的其他端口?喜欢L9876 127.0.0.1:9000
。