NodeJS 在ubuntu机器中运行时出现Puppeteer错误

0aydgbwb  于 2023-02-12  发布在  Node.js
关注(0)|答案(2)|浏览(295)

当我在Ubuntu上运行puppeteer时,我得到这个错误:

UnhandledPromiseRejectionWarning: Error: Unable to launch browser, error message: Failed to launch the browser process!
[2098647:2098647:0520/162023.317120:ERROR:vaapi_wrapper.cc(594)] Could not get a valid VA display
[2098647:2098647:0520/162023.317252:ERROR:gpu_init.cc(426)] Passthrough is not supported, GL is egl

TROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md

    at Cluster.<anonymous> (/root/Desktop/Copart/node_modules/puppeteer-cluster/dist/Cluster.js:119:23)
    at Generator.throw (<anonymous>)
    at rejected (/root/Desktop/Copart/node_modules/puppeteer-cluster/dist/Cluster.js:6:65)
    at process._tickCallback (internal/process/next_tick.js:68:7)

以下是我的 puppet 师选项:

pupOptions: {
    headless: false,
    args: [
      "--incognito",
      "--disable-gpu",
      "--disable-dev-shm-usage",
      "--disable-setuid-sandbox",
      "--no-first-run",
      "--no-sandbox",
      "--no-zygote",
    ],
    defaultViewport: null,
    slowMo: 10,
    sameDomainDelay: 1000,
    retryDelay: 3000,
    workerCreationDelay: 3000,
    timeout: 30000000,
    userDataDir: "/root/.config/google-chrome",
    executablePath: "/opt/google/chrome/google-chrome",
  }

此外,这里是我使用的插件:

const puppeteer = require("puppeteer-extra");
const RecaptchaPlugin = require("puppeteer-extra-plugin-recaptcha");

我试过在运行代码前杀死google示例,但仍然不起作用
此外,我想提一下,它的作品时,使用“puppeteer-cluster”
有人对此有什么想法或解决办法吗?非常感谢您的帮助!

afdcj2ne

afdcj2ne1#

我不得不从args中删除“--disable-gpu”

ca1c2owp

ca1c2owp2#

如果您在Ubuntu服务器上运行puppeteer,您应该尝试将headless: false转换为headless: true
如果您的系统上没有GUI,则它无法显示浏览器

相关问题