运行脚本时出错.php:端口 9000 正忙
我设置和在.尝试使用以下命令调试 phpstorm 事件日志中的 php 脚本输出:php.ini
Debug config
phpstorm
"Error running script.php: Port 9000 is busy"
php.ini结束:
[XDebug]
zend_extension="/usr/lib/php5/20090626+lfs/xdebug.so"
xdebug.remote_enable=1
xdebug.remote_port="9000" (the default port is 9000)
xdebug.profiler_enable=1
xdebug.profiler_enable_trigger = 1
xdebug.profiler_output_dir="/etc/php5/xdebug/profiler_output_dir"
pStorm 中的调试端口也设置为 9000。 输出:netstat -na
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN
如果我设置为其他端口怎么办。例如,将其设置为似乎可以完成工作。或者只是如何使其正常工作。我不确定我是否理解这些工作原理。它就像在phpstorm中运行,并在文件中设置断点?10001
xDebug
Debug("script.php")(Shift+F9)
有人有想法吗?
编辑:
寄件人: http://xdebug.org/docs/remote
xdebug.remote_port
Type: integer, Default value: 9000
The port to which Xdebug tries to connect on the remote host. Port 9000 is the default for both the client and the bundled debugclient. As many clients use this port number, it is best to leave this setting unchanged.
如果我将端口更改为 9000 以外的端口,该怎么办?也许超过50k的东西。