Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在 AWS 上设置一个 scrapyd 服务器,并试图从我的本地机器上访问它。到目前为止,我设法让scrapyd 在远程机器上运行。
我知道它正在运行,因为当我这样做时,start scrapyd我得到了start: Job is already running: scrapyd.
start scrapyd
start: Job is already running: scrapyd
我需要做什么才能从本地计算机访问它?
您可以使用ssh端口转发:
ssh
ssh scrapyd.host.com -L 6800:localhost:6800
然后从本地机器访问http://localhost:6800的 scrapyd。