6

リモート Ubuntu サーバーがあり、リモート デバッグをセットアップしようとしています。ここに示すように構成されています。

import sys
import pydevd
sys.path.append('/root/home/scripts/pycharm-debug.egg')
pydevd.settrace('my_remote_server_IP', port=51234,
stdoutToServer=True, stderrToServer=True)

また、Python スクリプトを同期してリモート サーバーにアップロードするためにリモート ホストを接続します。(ツール -> 配置 -> ...)

デバッグを開始すると:

C:\Python27\python.exe C:/Projects/python/demo.py
Could not connect to xx.xx.xx.166: 51234
Traceback (most recent call last):
  File "C:\Program Files (x86)\JetBrains\PyCharm 2.7.1\helpers\pydev\pydevd_comm.py", line 428, in StartClient
    s.connect((host, port))
  File "C:\Python27\Lib\socket.py", line 224, in meth
    return getattr(self._sock,name)(*args)
error: [Errno 10061] ����������� �� �����������,

Process finished with exit code 1

この問題を解決するには?

4

2 に答える 2