4

我已按照此处的说明进行操作:

https://github.com/ariya/phantomjs/wiki/Troubleshooting

我在这里看到了 SO:

使用 PhantomJS 设置远程调试

但是我一辈子都无法使用 PhantomJS 进行远程调试。这是我尝试过的:

[ubuntu:phantom]$ phantomjs --version
1.9.1
[ubuntu:phantom]$ phantomjs --remote-debugger-port=9001 test.js &
[1] 14037
[ubuntu:phantom]$ sudo netstat -pntl
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:9418            0.0.0.0:*               LISTEN      1075/git-daemon 
tcp        0      0 127.0.0.1:5038          0.0.0.0:*               LISTEN      1466/asterisk   
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      1629/apache2    
tcp        0      0 0.0.0.0:2000            0.0.0.0:*               LISTEN      1466/asterisk   
tcp        0      0 127.0.0.1:53            0.0.0.0:*               LISTEN      1089/dnsmasq    
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      968/cupsd       
tcp        0      0 127.0.0.1:5984          0.0.0.0:*               LISTEN      1363/beam.smp   
tcp6       0      0 :::9418                 :::*                    LISTEN      1075/git-daemon 
tcp6       0      0 ::1:631                 :::*                    LISTEN      968/cupsd       
[ubuntu:phantom]$ google-chrome localhost:9001
Created new window in existing browser session.
[ubuntu:phantom]$
[ubuntu:phantom]$ nc localhost 9001

上面(不出所料)打开了带有Oops! Google Chrome could not connect to localhost:9001. 我不应该在 9001 上看到一个开放的端口吗?据我所知,Chrome 应该连接到我刚刚__run()在 JS 控制台中运行的(可能)空白页面。但就目前而言,没有任何东西被打开......我什至无法上网。

4

1 回答 1

0

运行 phantomjs 作为 sudo 似乎可以解决问题

于 2014-04-29T12:12:40.763 回答