<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[[0708&#x2F;172936.877838:FATAL:zygote_host_impl_linux.cc(117)] No usable sandbox!]]></title><description><![CDATA[<p>Re: [zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported](/topic/1997/zygote_host_impl_linux-cc-89-running-as-root-without-no-sandbox-is-not-supported)</p>
<p>Hello, I'm having a very similar issue to this issue. My error message was not the same, but according to chome/puppeteer documentation, using &quot;--no-sandbox&quot; should also resolve it...Here's my error:</p>
<p>[0708/172936.877838:FATAL:zygote_host_impl_linux.cc(117)] No usable sandbox! Update your kernel or see <a href="https://chromium.googlesource.com/chromium/src/+/main/docs/linux/suid_sandbox_development.md" rel="nofollow">https://chromium.googlesource.com/chromium/src/+/main/docs/linux/suid_sandbox_development.md</a> for more information on developing with the SUID sandbox. If you want to live dangerously and need an immediate workaround, you can try using --no-sandbox.</p>
<p>I've tried the fix in the extensions config, but I'm getting same result. Here is my file if you want to review: <a href="https://github.com/mrodenhauser/jsreport-lakewood-funmeet/blob/main/jsreport.config.json" rel="nofollow">https://github.com/mrodenhauser/jsreport-lakewood-funmeet/blob/main/jsreport.config.json</a></p>
<p>If it matters...I'm running this in heroku, which builds from this github repo and then uses the nodejs and puppeteer buildpacks.</p>
]]></description><link>https://forum.jsreport.net/topic/2490/0708-172936-877838-fatal-zygote_host_impl_linux-cc-117-no-usable-sandbox</link><generator>RSS for Node</generator><lastBuildDate>Sun, 06 Sep 2026 23:35:31 GMT</lastBuildDate><atom:link href="https://forum.jsreport.net/topic/2490.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 08 Jul 2022 17:45:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [0708&#x2F;172936.877838:FATAL:zygote_host_impl_linux.cc(117)] No usable sandbox! on Invalid Date]]></title><description><![CDATA[<p>Re: [zygote_host_impl_linux.cc(89)] Running as root without --no-sandbox is not supported](/topic/1997/zygote_host_impl_linux-cc-89-running-as-root-without-no-sandbox-is-not-supported)</p>
<p>Hello, I'm having a very similar issue to this issue. My error message was not the same, but according to chome/puppeteer documentation, using &quot;--no-sandbox&quot; should also resolve it...Here's my error:</p>
<p>[0708/172936.877838:FATAL:zygote_host_impl_linux.cc(117)] No usable sandbox! Update your kernel or see <a href="https://chromium.googlesource.com/chromium/src/+/main/docs/linux/suid_sandbox_development.md" rel="nofollow">https://chromium.googlesource.com/chromium/src/+/main/docs/linux/suid_sandbox_development.md</a> for more information on developing with the SUID sandbox. If you want to live dangerously and need an immediate workaround, you can try using --no-sandbox.</p>
<p>I've tried the fix in the extensions config, but I'm getting same result. Here is my file if you want to review: <a href="https://github.com/mrodenhauser/jsreport-lakewood-funmeet/blob/main/jsreport.config.json" rel="nofollow">https://github.com/mrodenhauser/jsreport-lakewood-funmeet/blob/main/jsreport.config.json</a></p>
<p>If it matters...I'm running this in heroku, which builds from this github repo and then uses the nodejs and puppeteer buildpacks.</p>
]]></description><link>https://forum.jsreport.net/post/10781</link><guid isPermaLink="true">https://forum.jsreport.net/post/10781</guid><dc:creator><![CDATA[mrodenhauser]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to [0708&#x2F;172936.877838:FATAL:zygote_host_impl_linux.cc(117)] No usable sandbox! on Invalid Date]]></title><description><![CDATA[<p>hi!</p>
<p>your config should look like this:</p>
<pre><code class="language-js">{
  &quot;httpPort&quot;: 5488,
  &quot;store&quot;: {
    &quot;provider&quot;: &quot;fs&quot;
  },
  &quot;blobStorage&quot;: {
    &quot;provider&quot;: &quot;fs&quot;
  },
  &quot;logger&quot;: {
    &quot;console&quot;: {
      &quot;transport&quot;: &quot;console&quot;,
      &quot;level&quot;: &quot;debug&quot;
    },
    &quot;file&quot;: {
      &quot;transport&quot;: &quot;file&quot;,
      &quot;level&quot;: &quot;info&quot;,
      &quot;filename&quot;: &quot;logs/reporter.log&quot;
    },
    &quot;error&quot;: {
      &quot;transport&quot;: &quot;file&quot;,
      &quot;level&quot;: &quot;error&quot;,
      &quot;filename&quot;: &quot;logs/error.log&quot;
    }
  },
  &quot;trustUserCode&quot;: true,
  &quot;reportTimeout&quot;: 60000,
  &quot;workers&quot;: {
    &quot;numberOfWorkers&quot;: 2
  },
  &quot;chrome&quot;: {
    &quot;launchOptions&quot;: {
      &quot;args&quot;: [&quot;--no-sandbox&quot;]
    }
  }
  &quot;extensions&quot;: {
    &quot;authentication&quot;: {
      &quot;cookieSession&quot;: {},
      &quot;admin&quot;: {
        &quot;username&quot;: &quot;admin&quot;,
        &quot;password&quot;: &quot;password&quot;
      },
      &quot;enabled&quot;: false
    },
    &quot;sample-template&quot;: {
      &quot;createSamples&quot;: true
    }
  }
}
</code></pre>
<p>the change is that <code>&quot;chrome&quot;</code> key in config only works at the top level, not inside the &quot;extensions&quot; key, if you want to put it in extensions you should use <code>&quot;chromePdf&quot;</code> which will make it look like this:</p>
<pre><code class="language-js">&quot;extensions&quot;: {
    &quot;chromePdf&quot;: {
      &quot;launchOptions&quot;: {
        &quot;args&quot;: [&quot;--no-sandbox&quot;]
      }
    },
    ...
}
</code></pre>
]]></description><link>https://forum.jsreport.net/post/10782</link><guid isPermaLink="true">https://forum.jsreport.net/post/10782</guid><dc:creator><![CDATA[bjrmatos]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to [0708&#x2F;172936.877838:FATAL:zygote_host_impl_linux.cc(117)] No usable sandbox! on Fri, 08 Jul 2022 18:22:55 GMT]]></title><description><![CDATA[<p>That fixed it!! Thank you SOOOO much for your quick response. I needed this report working from the cloud for my volunteer charity event tomorrow and you have saved the day!</p>
]]></description><link>https://forum.jsreport.net/post/10783</link><guid isPermaLink="true">https://forum.jsreport.net/post/10783</guid><dc:creator><![CDATA[mrodenhauser]]></dc:creator><pubDate>Fri, 08 Jul 2022 18:22:55 GMT</pubDate></item><item><title><![CDATA[Reply to [0708&#x2F;172936.877838:FATAL:zygote_host_impl_linux.cc(117)] No usable sandbox! on Invalid Date]]></title><description><![CDATA[<p>excellent! good luck tomorrow and happy coding</p>
]]></description><link>https://forum.jsreport.net/post/10784</link><guid isPermaLink="true">https://forum.jsreport.net/post/10784</guid><dc:creator><![CDATA[bjrmatos]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>