我在AWS(EC2实例(的Ubuntu环境中使用Selenium+Chromedriver时遇到问题。
我使用的是Chromedriver Linux64版本(wnload chromedriver for Linux: wget https://chromedriver.storage.googleapis.com/78.0.3904.70/chromedriver_linux64.zip
(。然后我将Chromedriver放置在/usr/bin
中。
Chrome是使用sudo dpkg -i google-chrome-stable_current_amd64.deb
为Ubuntu下载的。如果我使用google-chrome --version
验证Chrome的版本,我会发现它是:
Google Chrome 78.0.3904.70
下面的Python代码可以工作,但问题是它只是偶尔工作。
options = Options()
options.add_argument('--no-sandbox')
options.add_argument('--window-size=1420,1080')
options.add_argument('--headless')
options.add_argument('--disable-dev-shm-usage')
options.add_argument("--remote-debugging-port=9222")
options.add_argument('--disable-gpu')
driver = webdriver.Chrome(chrome_options=options)
#Set base url (SAN FRANCISCO)
base_url = 'https://www.bandsintown.com/en/c/san-francisco-ca?page='
#Build events array
events = []
eventContainerBucket = []
for i in range(1,2):
#cycle through pages in range
driver.get(base_url + str(i))
pageURL = base_url + str(i)
print(pageURL)
虽然上面的代码在过去一直没有问题,但如果我运行它几次,我最终会得到以下错误:
Traceback (most recent call last):
File "BandsInTown_Scraper_SF.py", line 84, in <module>
driver = webdriver.Chrome(chrome_options=options)
File "/home/ubuntu/.local/lib/python3.6/site-packages/selenium/webdriver/chrome/webdriver.py", line 81, in __init__
desired_capabilities=desired_capabilities)
File "/home/ubuntu/.local/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 157, in __init__
self.start_session(capabilities, browser_profile)
File "/home/ubuntu/.local/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 252, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
File "/home/ubuntu/.local/lib/python3.6/site-packages/selenium/webdriver/remote/webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "/home/ubuntu/.local/lib/python3.6/site-packages/selenium/webdriver/remote/errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.SessionNotCreatedException: Message: session not created
from disconnected: unable to connect to renderer
(Session info: headless chrome=78.0.3904.70)
我已经读到,为了解决这个问题,您可能需要编辑etc/hosts
文件。我看了看,一切都很好:
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
我还可以通过服务器使用请求和访问url。例如,下面的文本没有给我任何问题:
url = 'https://www.bandsintown.com/en/c/san-francisco-ca?page=6'
res = requests.get(url)
html_page = res.content
soup = BeautifulSoup(html_page, 'html.parser')
text = soup.find_all(text=True)
print(text)
我认为可能导致这个问题的另一个重要信息是,Chromedriver可能不被允许在无头模式下运行。例如,如果我在终端中键入chromedriver
,我会得到以下消息:
Starting ChromeDriver 78.0.3904.70 (edb9c9f3de0247fd912a77b7f6cae7447f6d3ad5-refs/branch-heads/3904@{#800}) on port 9515
Only local connections are allowed.
Please protect ports used by ChromeDriver and related test frameworks to prevent access by malicious code.
最后,如果我尝试在/usr/bin
中执行chmod 777
,它会显示operation not permitted
。这可能是问题的一部分吗?
所以,Chrome+Chromedriver似乎是同一个版本,所以这不是问题所在。Chromedriver和Selenium似乎被阻塞了。我对如何解决这个问题有点困惑。
这已经解决了,问题似乎已经解决了。删除此行:options.add_argument("--remote-debugging-port=9222")
似乎解决了此问题。