Search found 15 matches
- Mon Jul 27, 2020 6:14 pm
- Forum: Debian/Ubuntu
- Topic: v-update-sys-vesta-all failing on cron
- Replies: 4
- Views: 8655
Re: v-update-sys-vesta-all failing on cron
I have similar issue. It started today: root@server:~# sudo /usr/local/vesta/bin/v-update-sys-vesta-all E: Failed to fetch http://apt.vestacp.com/bionic/dists/bionic/InRelease Clearsi gned file isn't valid, got 'NOSPLIT' (does the network require authentication?) E: The repository 'http://apt.vestac...
- Mon Jul 27, 2020 5:59 pm
- Forum: Debian/Ubuntu
- Topic: E: Failed to fetch http://apt.vestacp.com/xenial/dists/xenial/InRelease Clearsigned file isn't valid, got 'NOSPLIT'
- Replies: 1
- Views: 4100
Re: E: Failed to fetch http://apt.vestacp.com/xenial/dists/xenial/InRelease Clearsigned file isn't valid, got 'NOSPLIT'
I have similar issue. It started today: root@server:~# sudo /usr/local/vesta/bin/v-update-sys-vesta-all E: Failed to fetch http://apt.vestacp.com/bionic/dists/bionic/InRelease Clearsi gned file isn't valid, got 'NOSPLIT' (does the network require authentication?) E: The repository 'http://apt.vestac...
- Mon Jan 27, 2020 9:55 am
- Forum: Web Interface
- Topic: TUTORIAL: Adding IP Lookup link into Fail2ban section
- Replies: 2
- Views: 100328
- Mon Jan 27, 2020 6:38 am
- Forum: Web Interface
- Topic: TUTORIAL: Adding IP Lookup link into Fail2ban section
- Replies: 2
- Views: 100328
TUTORIAL: Adding IP Lookup link into Fail2ban section
Hello, I changed /usr/local/vesta/web/templates/admin/list_firewall_banlist.html file line 83 like this: <div class="clearfix l-unit__stat-col--left"><b><a href="https://dnslytics.com/ip/<?=$ip?>" target="_blank"><?=$ip?></a></b></div> Now I can easily checked banned IP Whois information. Maybe in t...
- Fri Jan 17, 2020 11:46 am
- Forum: Debian/Ubuntu
- Topic: Upgrade from Ubuntu 16.04 to Ubuntu 18.04 iptables issue
- Replies: 1
- Views: 3659
Re: Upgrade from Ubuntu 16.04 to Ubuntu 18.04 iptables issue
I added following lines to /etc/rc.local and fixed my problem.
Code: Select all
export VESTA=/usr/local/vesta/;sudo /usr/local/vesta/bin/v-restart-service iptables
- Thu Jan 16, 2020 12:29 pm
- Forum: Debian/Ubuntu
- Topic: Upgrade from Ubuntu 16.04 to Ubuntu 18.04 iptables issue
- Replies: 1
- Views: 3659
Upgrade from Ubuntu 16.04 to Ubuntu 18.04 iptables issue
Hello, I was thinking to upgrade my server to Ubuntu 18.04. I followed bellow guide: https://linuxconfig.org/how-to-upgrade-to-ubuntu-18-04-lts-bionic-beaver PLEASE MAKE A COPY OF YOUR SERVER INSTANCE BEFORE UPGRADE TO 18.04 I upgraded my server with minor issues. I fixed most of them (curl + roundc...
- Wed Jan 17, 2018 11:45 pm
- Forum: Web Server
- Topic: How can I change Default Domain?
- Replies: 6
- Views: 6643
Re: How can I change Default Domain?
I have exactly same issue. I deleted my default Domain on VestaCP. Than I create again. But all requests (http://IP_ADDRESS) too, goes to first added domain. I need to change it. But how?
- Fri Jan 12, 2018 3:21 pm
- Forum: CLI
- Topic: Delete all cron jobs of some user
- Replies: 1
- Views: 10442
Re: Delete all cron jobs of some user
First you need to get list of all cron jobs with v-list-cron-jobs
Then you can make For loop to delete all of them.
Then you can make For loop to delete all of them.
- Fri Jan 12, 2018 3:02 pm
- Forum: General Discussion
- Topic: Adding cron job from a PHP script.
- Replies: 7
- Views: 9756
Re: Adding cron job from a PHP script.
I found out what's wrong in my code. If I change $vst_returncode = 'yes'; to $vst_returncode = 'no'; I can able to get list of my crons. I already share adding cron job code. Here is the listing and deleting cronjob php codes: Listing Cron Jobs: (arg2 is optional, I prefer JSON) <?php // Get environ...
- Fri Jan 12, 2018 2:23 pm
- Forum: General Discussion
- Topic: Adding cron job from a PHP script.
- Replies: 7
- Views: 9756
Re: Adding cron job from a PHP script.
I am trying to get a list of my cron jobs, after that I should get JOB ID than I want to delete some cron jobs. But I have a problem. What's wrong with the following code? Status code 0 (means OK) but I cannot see any result. If I type v-list-cron-jobs admin on shell I cann see the list of crons. Bu...