Vesta 2.0 is coming soon! See our progress update: https://vestacp.com/docs/vesta-2-update
Search found 9 matches
- Fri Jan 24, 2020 9:57 pm
- Forum: General Discussion
- Topic: Request for Spanish language forum section
- Replies: 15
- Views: 19063
Re: Request for Spanish language forum section
hsschile ,
Are you ready to doing this and be a moderator of the Spanish branch ? I can't answer how many spanish users on our forum, because all users writing on English
Yes, I am ready and I will do my best effort to support spanish users considering that my Webmaster level and Vesta ...
- Fri Jan 24, 2020 1:22 pm
- Forum: General Discussion
- Topic: Request for Spanish language forum section
- Replies: 15
- Views: 19063
Request for Spanish language forum section
Hi guys,
Today I searched the forum for "spanish" keyword and found 31 matches.
Maybe now could be a good moment to start a spanish language specific forum like the russian language specific forum.
There are many spanish vestacp users, like me, that could help and support others to solve some minor ...
Today I searched the forum for "spanish" keyword and found 31 matches.
Maybe now could be a good moment to start a spanish language specific forum like the russian language specific forum.
There are many spanish vestacp users, like me, that could help and support others to solve some minor ...
- Fri Nov 11, 2016 8:09 pm
- Forum: Database Server
- Topic: Problem with remote access to the MYSQL
- Replies: 6
- Views: 14619
Re: Problem with remote access to the MYSQL
# Change MySQL root password
v-change-database-host-password mysql localhost root New*Password
# Run MySQL
mysql -uroot -pNew*Password
# Give root user remote access privileges from any host
GRANT ALL PRIVILEGES ON *.* to 'root'@'%' identified by 'New*Password' WITH GRANT OPTION;FLUSH ...
v-change-database-host-password mysql localhost root New*Password
# Run MySQL
mysql -uroot -pNew*Password
# Give root user remote access privileges from any host
GRANT ALL PRIVILEGES ON *.* to 'root'@'%' identified by 'New*Password' WITH GRANT OPTION;FLUSH ...
- Fri Nov 11, 2016 7:54 pm
- Forum: Database Server
- Topic: How to replace MySQL with Percona Server 5.5 on Ubuntu Trusty v14.04 64 Bits
- Replies: 1
- Views: 4140
How to replace MySQL with Percona Server 5.5 on Ubuntu Trusty v14.04 64 Bits
1. Install a fresh Ubuntu 14.04 - 64 bits on your VPS
2. Change password to your vps with:
sudo passwd
3. Remove the installed software that may cause conflicts when you install last VestaCP version, with:
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get remove --purge -y -o Dpkg ...
2. Change password to your vps with:
sudo passwd
3. Remove the installed software that may cause conflicts when you install last VestaCP version, with:
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get remove --purge -y -o Dpkg ...
- Fri Sep 23, 2016 10:49 pm
- Forum: Mail Server
- Topic: FAIL2BAN does not block brute force attacks
- Replies: 1
- Views: 3982
FAIL2BAN does not block brute force attacks
I am getting this warnings:
root@mx3:/# tail -f /var/log/exim4/mainlog
2016-09-23 19:40:42 dovecot_login authenticator failed for (194.135.89.130) [119.56.129.3]: 535 Incorrect authentication data (set_id=laurie)
2016-09-23 19:40:42 no host name found for IP address 119.56.129.3
2016-09-23 19:41:00 ...
root@mx3:/# tail -f /var/log/exim4/mainlog
2016-09-23 19:40:42 dovecot_login authenticator failed for (194.135.89.130) [119.56.129.3]: 535 Incorrect authentication data (set_id=laurie)
2016-09-23 19:40:42 no host name found for IP address 119.56.129.3
2016-09-23 19:41:00 ...
- Fri Aug 05, 2016 8:06 pm
- Forum: CLI
- Topic: v-restore-user :(
- Replies: 3
- Views: 11471
v-restore-user - It works this way !
# First create the user "your-user" inside vesta control panel
mkdir /backup
cd /backup
ls -lha
# Previous command shows one file inside /backup : your-user.year-month-day.tar
# The Restore command format is:
v-restore-user USER BACKUP [WEB] [DNS] [MAIL] [DB] [CRON] [UDIR] [NOTIFY]
# Arguments ...
mkdir /backup
cd /backup
ls -lha
# Previous command shows one file inside /backup : your-user.year-month-day.tar
# The Restore command format is:
v-restore-user USER BACKUP [WEB] [DNS] [MAIL] [DB] [CRON] [UDIR] [NOTIFY]
# Arguments ...
- Tue Dec 15, 2015 4:33 pm
- Forum: 3rd Party Software
- Topic: An unexpected error occurred after run letsencrypt client...
- Replies: 2
- Views: 8639
Re: An unexpected error occurred after run letsencrypt client...
Problem solved !!
Another user told me that the LE server was under maintenance during the last half hour, then I retried the same command and works !!!
Another user told me that the LE server was under maintenance during the last half hour, then I retried the same command and works !!!
- Tue Dec 15, 2015 4:17 pm
- Forum: 3rd Party Software
- Topic: An unexpected error occurred after run letsencrypt client...
- Replies: 2
- Views: 8639
An unexpected error occurred after run letsencrypt client...
Hi guys,
I have run the following commando to get a SSL cert from LetsEncrypt and all works OK:
./letsencrypt-auto certonly --webroot -w /home/alarcam/web/alarcam.cl/public_html/ -d www.alarcam.cl -d alarcam.cl
Now I have ran the same command:
./letsencrypt-auto certonly --webroot -w /home ...
I have run the following commando to get a SSL cert from LetsEncrypt and all works OK:
./letsencrypt-auto certonly --webroot -w /home/alarcam/web/alarcam.cl/public_html/ -d www.alarcam.cl -d alarcam.cl
Now I have ran the same command:
./letsencrypt-auto certonly --webroot -w /home ...
- Tue Dec 15, 2015 3:33 am
- Forum: 3rd Party Software
- Topic: Tutorial VestaCP + Let'sEncrypt en Español v1.0
- Replies: 15
- Views: 32990
Tutorial VestaCP + Let'sEncrypt en Español v1.0
# DEBES CAMBIAR EL DOMINIO "MEGATEK.CL" POR TU PROPIO DOMINIO
1 # Ingresamos al directorio /root y luego Instalamos GIT
cd /root
apt-get install git -y
2 # Clonamos el directorio de Letsencrypt
git clone https://github.com/letsencrypt/letsencrypt
3 # Ingresamos al directorio de Letsencrypt
cd ...
1 # Ingresamos al directorio /root y luego Instalamos GIT
cd /root
apt-get install git -y
2 # Clonamos el directorio de Letsencrypt
git clone https://github.com/letsencrypt/letsencrypt
3 # Ingresamos al directorio de Letsencrypt
cd ...