远程调试服务器配置方法
在服务上查看是否开启Xdebug支持
$ php -r "phpinfo();" | grep xdebug | grep remote_enable
xdebug.remote_enable => On => On
关闭trace文件
在开启trace后,会在/tmp文件夹下生成许多trace文件
$ ls -ah /tmp/trace.* | head -n 3
-rw-r--r-- 1 root root 206 Oct 14 16:41 /tmp/trace.1040150831.xt
-rw-r--r-- 1 root root 206 Oct 14 16:45 /tmp/trace.180077614.xt
-rw-r--r-- 1 www www 0 Oct 14 16:41 /tmp/trace.2043925204.00183f.xt
关闭trace的方法
$ cat /etc/php.d/xdebug.ini | grep trace
xdebug.auto_trace = 0
# 重启php
service php-fpm restart
# 关闭trace
php -r 'phpinfo();' | grep xdebug | grep auto_trace
xdebug.auto_trace => Off => Off