最近使用到 selenium 做一些数据采集,想放到服务器上后台运行,结果出现了一些错误!还请大佬们来指点!
问题描述: nohup 后台运行 python,退出服务器,selenium 跟着也退出了 selenium.common.exceptions.WebDriverException: Message: chrome not reachable (Session info: headless chrome=77.0.3865.75)
运行命令:nohup python -u python.py > run.log 2>&1 &
selenium-webdriver 启动代码:
service = Service('/home/chromedriver')
service.command_line_args()
service.start()
options = webdriver.ChromeOptions()
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
options.add_argument('--disable-gpu')
prefs = {"profile.managed_default_content_settings.images": 2}
options.add_experimental_option("prefs", prefs)
driver = webdriver.Chrome(options=options)
还请各位大佬看下问题出在哪里。
1
hfutzj 2019-09-13 11:16:38 +08:00 via Android
服务器后台运行的我一般用 screen
|
2
ysc3839 2019-09-13 11:18:28 +08:00 via Android
建议使用 screen 或 tmux。
|