2011-12-17 86 views
3

我試圖在AWS上設置scrapyd服務器,並試圖從我的本地機器訪問它。到目前爲止,iive設法讓遠程機器上運行的scrapyd。Scrapy服務器設置

我知道它的運行,因爲當我做start scrapyd我得到start: Job is already running: scrapyd

我需要做什麼,才能夠從我的本地機器訪問它?

回答

4

你可以使用ssh端口fowarding:

ssh scrapyd.host.com -L 6800:localhost:6800 

,然後訪問scrapyd在http://localhost:6800從本地機器。