<?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[Is it possible&#x2F;safe to install Client Push App ?]]></title><description><![CDATA[<p dir="auto">Hello. Short question: I wonder if I can install the Client Push App, as described in <a href="https://github.com/nextcloud/notify_push" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/nextcloud/notify_push</a> ? Basically, does the setup work when running <code>sudo -u www-data php -f /app/code/occ notify_push:setup</code>. Thx</p>
]]></description><link>https://forum.cloudron.io/topic/14522/is-it-possible-safe-to-install-client-push-app</link><generator>RSS for Node</generator><lastBuildDate>Sun, 12 Jul 2026 06:41:57 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/14522.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 07 Nov 2025 23:57:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Is it possible&#x2F;safe to install Client Push App ? on Thu, 30 Apr 2026 15:00:07 GMT]]></title><description><![CDATA[<p dir="auto">sorry for replying late:<br />
there's no cron job involved, maybe that's the issue?<br />
Everything needs to be done manually:</p>
<ul>
<li>nginx-config whenever Cloudron box is updated, in an SSH session</li>
<li>running the script to start notify_push whenever NC app is restarted, using a terminal from Cloudron UI to access the docker container</li>
</ul>
<p dir="auto">after running the start script, and using your ps-check command, I see a corresponding process. Additionally, running &lt;occ notify_push:metrics&gt; in a Cloudron terminal shows it works, all indicated stats are up-to-date and change over time.</p>
]]></description><link>https://forum.cloudron.io/post/124216</link><guid isPermaLink="true">https://forum.cloudron.io/post/124216</guid><dc:creator><![CDATA[andreasb]]></dc:creator><pubDate>Thu, 30 Apr 2026 15:00:07 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible&#x2F;safe to install Client Push App ? on Thu, 16 Apr 2026 16:01:39 GMT]]></title><description><![CDATA[<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/andreasb" aria-label="Profile: andreasb">@<bdi>andreasb</bdi></a> <a href="/post/117301">said</a>:</p>
<p dir="auto">it looks like notify_push is up and running</p>
</blockquote>
<p dir="auto">I honestly don’t understand how you managed to get this working. I spent about 5 hours today trying to set it up and still didn’t get the result I expected.</p>
<ol>
<li><code>@reboot</code> cron job simply doesn’t work. It’s mentioned in the docs but I’ve never seen it run in the logs. <code>@service</code> does run but only once. Аfter subsequent Nextcloud restarts the job never triggers again.</li>
<li>My version of the script works fine if I run it manually from the terminal like this <code>/app/data/notify_push.sh</code>. The service starts and all checks pass.</li>
</ol>
<pre><code>root@71780ea5-011c-4c09-886e-5f7e17e0b670:/app/code# /app/data/notify_push.sh ; sleep 1 ; ps aux | grep notify_push ; ss -tlnp | grep 7867
✓ redis is configured
✓ push server is receiving redis messages
✓ push server can load mount info from database
✓ push server can connect to the Nextcloud server
✓ push server is a trusted proxy
✓ push server is running the same version as the app
  configuration saved
=&gt; notify_push started on port 7867
root         265  0.3  0.0  25676  8796 ?        Ssl  15:57   0:00 /app/code/apps/notify_push/bin/x86_64/notify_push --allow-self-signed --nextcloud-url http://172.18.20.152 --port 7867 /app/code/config/config.php
root         286  0.0  0.0   4104  2100 pts/1    S+   15:57   0:00 grep --color=auto notify_push
LISTEN 0      128          0.0.0.0:7867       0.0.0.0:*    users:(("notify_push",pid=265,fd=10))
</code></pre>
<ol start="3">
<li>If I set up a cron job to run every 5 minutes.<br />
<code>*/5 * * * * echo "=&gt; Enabling notify_push" &amp;&amp; /app/data/notify_push.sh</code><br />
I can see in the logs that everything looks fine:</li>
</ol>
<pre><code>Apr 16 18:30:41 ✓ redis is configured
Apr 16 18:30:41 ✓ push server is receiving redis messages
Apr 16 18:30:41 ✓ push server can load mount info from database
Apr 16 18:30:41 ✓ push server can connect to the Nextcloud server
Apr 16 18:30:41 ✓ push server is a trusted proxy
Apr 16 18:30:41 ✓ push server is running the same version as the app
Apr 16 18:30:41 configuration saved
Apr 16 18:30:41 =&gt; notify_push started on port 7867
</code></pre>
<p dir="auto">But in reality the process doesn’t survive after the script finishes. If I check manually with<br />
<code>ps aux | grep notify_push ; ss -tlnp | grep 7867</code> there’s nothing in the terminal.</p>
<p dir="auto">Claude suggested this might be a cgroup-related issue in containers. The process started from cron gets attached to its cgroup and when the cron job exits, the process is killed along with it. I’m not sure how accurate that is.</p>
<p dir="auto">Maybe most people who claimed to have <code>notify_push</code> working probably didn’t verify it properly, since the warning disappears from the Nextcloud admin panel. It looks like it’s working, even when it actually isn’t.</p>
]]></description><link>https://forum.cloudron.io/post/123532</link><guid isPermaLink="true">https://forum.cloudron.io/post/123532</guid><dc:creator><![CDATA[WiseMetalhead]]></dc:creator><pubDate>Thu, 16 Apr 2026 16:01:39 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible&#x2F;safe to install Client Push App ? on Thu, 18 Dec 2025 17:25:26 GMT]]></title><description><![CDATA[<p dir="auto">I've been following the instructions in threads cited below, and it looks like notify_push is up and running</p>
<ol>
<li>configure nginx <a href="https://forum.cloudron.io/post/48343">https://forum.cloudron.io/post/48343</a></li>
<li>run notify_push via script <a href="https://forum.cloudron.io/post/48298">https://forum.cloudron.io/post/48298</a></li>
</ol>
]]></description><link>https://forum.cloudron.io/post/117301</link><guid isPermaLink="true">https://forum.cloudron.io/post/117301</guid><dc:creator><![CDATA[andreasb]]></dc:creator><pubDate>Thu, 18 Dec 2025 17:25:26 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible&#x2F;safe to install Client Push App ? on Tue, 11 Nov 2025 09:20:18 GMT]]></title><description><![CDATA[<p dir="auto">Thanks. I started guessing the same while trimming through the repo. If I'm not mistaken, moving towards Nextcloud All-in-one would integrate this in the NC packge. Meanwhile, good to know that changes on the server are not immediately pushed to the clients.</p>
]]></description><link>https://forum.cloudron.io/post/115195</link><guid isPermaLink="true">https://forum.cloudron.io/post/115195</guid><dc:creator><![CDATA[mononym]]></dc:creator><pubDate>Tue, 11 Nov 2025 09:20:18 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible&#x2F;safe to install Client Push App ? on Tue, 11 Nov 2025 08:01:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mononym" aria-label="Profile: mononym">@<bdi>mononym</bdi></a> said in <a href="/post/115038">Is it possible/safe to install Client Push App ?</a>:</p>
<blockquote>
<p dir="auto">does the setup work when running sudo -u www-data php -f /app/code/occ notify_push:setup</p>
</blockquote>
<p dir="auto">I don’t think this is possible within Cloudron. For <code>push</code> to work, you need to create a daemon at <code>/etc/systemd/system/notify_push.service</code> and make some changes to Apache or Nginx.<br />
The <code>occ notify_push:setup</code> command assumes that all of this is done on the same server where Nextcloud itself is installed.<br />
However, based on the information from <a href="https://github.com/nextcloud/notify_push" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/nextcloud/notify_push</a>, it seems that it might be possible to set it up on a separate server — though exactly how to do that is another question.</p>
]]></description><link>https://forum.cloudron.io/post/115188</link><guid isPermaLink="true">https://forum.cloudron.io/post/115188</guid><dc:creator><![CDATA[WiseMetalhead]]></dc:creator><pubDate>Tue, 11 Nov 2025 08:01:02 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible&#x2F;safe to install Client Push App ? on Mon, 10 Nov 2025 08:34:22 GMT]]></title><description><![CDATA[<p dir="auto">You can always play in the demo cloudron <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f604.png?v=95dae3ecbe4" class="not-responsive emoji emoji-android emoji--smile" style="height:23px;width:auto;vertical-align:middle" title=":-D" alt="😄" /></p>
]]></description><link>https://forum.cloudron.io/post/115122</link><guid isPermaLink="true">https://forum.cloudron.io/post/115122</guid><dc:creator><![CDATA[joseph]]></dc:creator><pubDate>Mon, 10 Nov 2025 08:34:22 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible&#x2F;safe to install Client Push App ? on Sat, 08 Nov 2025 11:47:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/james" aria-label="Profile: james">@<bdi>james</bdi></a> unfortunately that's not possible because of storage capacity. All data is on the primary storage. I'll maybe give it a try after a regular backup.</p>
]]></description><link>https://forum.cloudron.io/post/115070</link><guid isPermaLink="true">https://forum.cloudron.io/post/115070</guid><dc:creator><![CDATA[mononym]]></dc:creator><pubDate>Sat, 08 Nov 2025 11:47:33 GMT</pubDate></item><item><title><![CDATA[Reply to Is it possible&#x2F;safe to install Client Push App ? on Sat, 08 Nov 2025 00:30:23 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/user/mononym" aria-label="Profile: mononym">@<bdi>mononym</bdi></a></p>
<p dir="auto">You can always create a clone from your latest backup and tinker with the clone.<br />
With that approach you risk nothing and can report findings.</p>
]]></description><link>https://forum.cloudron.io/post/115040</link><guid isPermaLink="true">https://forum.cloudron.io/post/115040</guid><dc:creator><![CDATA[james]]></dc:creator><pubDate>Sat, 08 Nov 2025 00:30:23 GMT</pubDate></item></channel></rss>