Vesta Control Panel - Forum

Community Forum

Skip to content

Advanced search
  • Quick links
    • Main site
    • Github repo
    • Google Search
  • FAQ
  • Login
  • Register
  • Board index Main Section General Discussion Debian/Ubuntu
  • Search

Get Rid Softaculous Updates Cron Jobs Topic is solved

Debian/Ubuntu related topics
Post Reply
  • Print view
Advanced search
10 posts • Page 1 of 1
yoko eagle
Posts: 33
Joined: Sat Jan 20, 2018 3:45 am

Os: Debian 8x
Web: apache + nginx
Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by yoko eagle » Sat Jan 20, 2018 4:16 am

Hi !
I run vestacp in debian 9 Stretch with apache + nginx. I have disabled softaculous plugin because I have to purchase a license to be able to use it. But the updates cron jobs emails won't stop. I keep receiving it almost every day.
In the /etc/crontab I have added > /dev/null 2>&1 to the daily and weekly command line, but still not working

Code: Select all

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user	command
17 *	* * *	root    cd / && run-parts --report /etc/cron.hourly
25 6	* * *	root	test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ) > /dev/null 2>&1
47 6	* * 7	root	test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly ) > /dev/null 2>&1
52 6	1 * *	root	test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
How to get rid this softaculous updates notification.
Thanks in advance!
Top

imperio
VestaCP Team
Posts: 7000
Joined: Sat Dec 01, 2012 12:37 pm
Contact:
Contact imperio
Website

Re: Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by imperio » Sun Jan 21, 2018 9:11 am

Hi,
You can disable it via Softaculous admin panel
General section
Top

mehargags
Support team
Posts: 1096
Joined: Sat Sep 06, 2014 9:58 pm
Contact:
Contact mehargags
Website Skype

Os: Debian 8x
Web: apache + nginx
Re: Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by mehargags » Mon Jan 22, 2018 6:28 am

imperio wrote:Hi,
You can disable it via Softaculous admin panel
General section
Can you also write the CLI command to disable Softaculous? Would be easy for many who have hard time finding it in the WebUI.
Thanks
Top

imperio
VestaCP Team
Posts: 7000
Joined: Sat Dec 01, 2012 12:37 pm
Contact:
Contact imperio
Website

Re: Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by imperio » Mon Jan 22, 2018 10:30 am

You can disable via Gui - Plugins section, or cli command

Code: Select all

v-delete-vesta-softaculous
Top

yoko eagle
Posts: 33
Joined: Sat Jan 20, 2018 3:45 am

Os: Debian 8x
Web: apache + nginx
Re: Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by yoko eagle » Fri Feb 09, 2018 4:23 am

Hi imperio,
I have run the command line

Code: Select all

/usr/local/vesta/bin/v-delete-vesta-softaculous
but nothing changed. Still got the update notification everyday.
The email title: Software Updates (my.vestacp.tld)
The following software were updated during Automatic Cron Updates:
WordPress 4.9.4 - Failed

You are using the free version of Softaculous which has limited number of scripts. Purchase premium version of Softaculous to activate all scripts: .. blah..blah..blah...
Top

mehargags
Support team
Posts: 1096
Joined: Sat Sep 06, 2014 9:58 pm
Contact:
Contact mehargags
Website Skype

Os: Debian 8x
Web: apache + nginx
Re: Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by mehargags » Fri Feb 09, 2018 7:06 pm

yoko eagle wrote: ↑
Fri Feb 09, 2018 4:23 am
Hi imperio,
I have run the command line

Code: Select all

/usr/local/vesta/bin/v-delete-vesta-softaculous
but nothing changed. Still got the update notification everyday.
The email title: Software Updates (my.vestacp.tld)
The following software were updated during Automatic Cron Updates:
WordPress 4.9.4 - Failed

You are using the free version of Softaculous which has limited number of scripts. Purchase premium version of Softaculous to activate all scripts: .. blah..blah..blah...
I get them too...

I think there is already a thread to completely remove softaculous completely.

Code: Select all

rm -f $VESTA/web/softaculous
mkdir -p $VESTA/disabled_plugins
mv $VESTA/web/softaculous $VESTA/disabled_plugins
Top

yoko eagle
Posts: 33
Joined: Sat Jan 20, 2018 3:45 am

Os: Debian 8x
Web: apache + nginx
Re: Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by yoko eagle » Mon Feb 12, 2018 5:40 am

I get them too...

I think there is already a thread to completely remove softaculous completely.
CODE: SELECT ALL

rm -f $VESTA/web/softaculous
mkdir -p $VESTA/disabled_plugins
mv $VESTA/web/softaculous $VESTA/disabled_plugins
Hi mehargags,
Yesterday I run your code and got this
# rm -f $VESTA/web/softaculous
# mkdir -p $VESTA/disabled_plugins
# mv $VESTA/web/softaculous $VESTA/disabled_plugins
mv: cannot stat '/usr/local/vesta/web/softaculous': No such file or directory
Still got the updates email today.
Top

mehargags
Support team
Posts: 1096
Joined: Sat Sep 06, 2014 9:58 pm
Contact:
Contact mehargags
Website Skype

Os: Debian 8x
Web: apache + nginx
Re: Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by mehargags » Mon Feb 12, 2018 5:15 pm

you need to manually remove the cron schedules. On my Debian servers it is

Code: Select all

rm -rf /etc/cron.d/softaculous
rm -rf /etc/cron.d/softaculous2
Top

cybersholt
Posts: 3
Joined: Fri Jan 26, 2018 6:33 pm
Contact:
Contact cybersholt
Website

Os: CentOS 6x
Web: nginx + php-fpm
Re: Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by cybersholt » Fri Feb 16, 2018 4:49 pm

mehargags wrote: ↑
Mon Feb 12, 2018 5:15 pm
you need to manually remove the cron schedules. On my Debian servers it is

Code: Select all

rm -rf /etc/cron.d/softaculous
rm -rf /etc/cron.d/softaculous2
Thanks, that did the trick for me on Ubuntu 16.04.3

PKG VER REL ARCH UPDT DATE
--- --- --- ---- ---- ----
vesta 0.9.8 19 amd64 yes 2018-01-22
vesta-php 0.9.8 19 amd64 yes 2018-01-22
vesta-nginx 0.9.8 19 amd64 yes 2018-01-22
Top

imperio
VestaCP Team
Posts: 7000
Joined: Sat Dec 01, 2012 12:37 pm
Contact:
Contact imperio
Website

Re: Get Rid Softaculous Updates Cron Jobs
  • Quote

Post by imperio » Tue Feb 20, 2018 9:02 pm

cybersholt,
You can disable cron notifications via Softaculous Admin Panel
Top


Post Reply
  • Print view

10 posts • Page 1 of 1

Return to “Debian/Ubuntu”



  • Board index
  • All times are UTC
  • Delete all board cookies
  • The team
Powered by phpBB® Forum Software © phpBB Limited
*Original Author: Brad Veryard
*Updated to 3.2 by MannixMD
 

 

Login  •  Register

I forgot my password