服务器安装googlechrome
越来越多的网站开始使用前后端分离导致html页面的数据需要通过js进行加载渲染,常规的爬虫模式已经无法进行抓取数据了。
安装Google Chrome
cd /ect/yum.repos.d/vim google-chrome.repo
编辑内容
[google-chrome]name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
注意国内因为GFW的原因需要用到如下命令进行安装,不然会出现无法安装的情况
yum -y install google-chrome-stable --nogpgcheck
做软连接
ln -s /usr/bin/google-chrome-stable /bin/chrome
解决root用户不能运行chrome
编辑 vim /usr/bin/google-chrome-stable
增加
exec -a "$0" "$HERE/chrome" "$@" --no-sandbox $HOME
安装chromedrive
- 下载对应版本的chromedriver 地址:https://npm.taobao.org/mirrors/chromedriver/
- 建立软连接 增加可执行权限
chmod +x chromedriver sudo mv -f chromedriver /usr/local/share/chromedriver
sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
sudo ln -s /usr/local/share/chromedriver /usr/bin/chromedriver
以上是 服务器安装googlechrome 的全部内容, 来源链接: utcz.com/z/510346.html