Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ehstbr

Pages: [1] 2
1
Updates / Re: CVE-2021-45466
« on: January 27, 2022, 03:12:42 PM »
Already fixed and you didn't need to  do anything just stay updated (CWP)

Nothing changed... the error in update_cwp script persist when it try remove these files.


2
Updates / Re: CVE-2021-45466
« on: January 26, 2022, 05:12:43 PM »
I think that is ok remove these files because the remove command is part of the update script, but the problem is that you can't remove these files in File Manager or via SSH using RM command... and I tried remove logged as root and using the command SUDO.

If you know how we can remove these files... will help.

[]'s

3
Updates / Re: MariaDB update failed
« on: December 02, 2020, 08:18:19 PM »
It's highly recommended set innodb_fast_shutdown to 0 and manually stop the mariadb.service before remove current version and install the new version...

4
MySQL / Re: MariaDB-server upgrade error
« on: December 01, 2020, 06:33:34 PM »
Below the steps that I made...

1. Create a backup file.
Code: [Select]
mysqldump --all-databases > /home/fullbackup.sql.gz
2. Disable InnoDB fast shutdown
Code: [Select]
mysql

mysql -> SET GLOBAL innodb_fast_shutdown = 0;

3. Stop MariaDB
Code: [Select]
service mysql stop
4. Manually uninstall MariaDB 10.1
Code: [Select]
yum remove MariaDB-server MariaDB-client -y
5. Manually install MariaDB 10.2
Code: [Select]
yum install MariaDB-server MariaDB-client -y
6. Start MariaDB
Code: [Select]
service mysql start
7. Upgrade the DB to compatibility
Code: [Select]
mysql_upgrade
8. Enable service "mariadb.service" on "Services config -> Start-up Services".
Code: [Select]
systemctl enable mariadb.service
9. Reboot to check if all right.
Code: [Select]
reboot
If everything all right, relax and drink a coffee. If not, breath and drink a coffee to find a fix, but stay calm... you have a backup (Do you made the 1st step, right?).

5
Updates / Re: MariaDB update failed
« on: December 01, 2020, 12:29:55 PM »
Below the steps that I made...

1. Create a backup file.
Code: [Select]
mysqldump --all-databases > /home/fullbackup.sql.gz
2. Disable InnoDB fast shutdown
Code: [Select]
mysql

mysql -> SET GLOBAL innodb_fast_shutdown = 0;

3. Stop MariaDB
Code: [Select]
service mysql stop
4. Manually uninstall MariaDB 10.1
Code: [Select]
yum remove MariaDB-server MariaDB-client -y
5. Manually install MariaDB 10.2
Code: [Select]
yum install MariaDB-server MariaDB-client -y
6. Start MariaDB
Code: [Select]
service mysql start
7. Upgrade the DB to compatibility
Code: [Select]
mysql_upgrade
8. Enable service "mariadb.service" on "Services config -> Start-up Services".
Code: [Select]
systemctl enable mariadb.service
9. Reboot to check if all right.
Code: [Select]
reboot
If everything all right, relax and drink a coffee. If not, breath and drink a coffee to find a fix, but stay calm... you have a backup (Do you made the 1st step, right?).

6
Updates / Re: MariaDB update failed
« on: December 01, 2020, 02:26:16 AM »
Here is the solution I found:

First step to save your database (I didn't do it!)

Code: [Select]
mysqldump --all-databases > /home/fullbackup.sql.gz
Uninstall MariaDB client:

Code: [Select]
yum remove MariaDB-server MariaDB-client -y
Now install MariaDB, it will automatically install MariaDB 10.2 (10.2.36):

Code: [Select]
yum install MariaDB-server MariaDB-client -y
Then to finish:

Code: [Select]
mysql_upgrade

You didn't do the all procedure or only the backup step?

It worked for you?

7
Updates / Re: MariaDB update failed
« on: December 01, 2020, 01:28:12 AM »
I'll wait for a CWP official solution, probably a script update to do the upgrade process automatically...

8
FTP / FTP timeout on listing and uploading
« on: April 23, 2020, 01:49:09 AM »
Hi.

My server has a issue that made impossible connect on FTP to upload files. This issue cause timeout on listing and uploading... when I look for something on CWP panel is possible see a lot of sessions.

https://pasteboard.co/J54lfv0.png

FTP version: 1.0.47

I tried setup passive ports range, open these prots on firewall...

9
CentOS-WebPanel GUI / Disable notice messages
« on: April 06, 2019, 02:47:38 PM »
Hi.

Is possible disable a notice like the notice to install the Mod_Security?

All times that I login I need dismiss the notice, but I think that an option to ignore the notice for next 10~30 days will be nice feature.

10
MySQL / PMA time out when accessing via user panel
« on: January 09, 2019, 02:08:00 AM »
Hi.

My users can't access PMA via CWP user panel.

The URL is: [domain_of_user_account]:2030/pma/

But if I try access the PMA using the server domain ([server_domain]:2030/pma/) it works perfectly.

11
FTP / Re: Problem with FTP access
« on: December 14, 2018, 12:48:52 AM »
Hi,
can anyone say what exactly to do to recover the user's ftp access ...
Here are opinions about how to circumvent the problem that I think is wrong...
BR
Venty

If your server don't update automatically yet, just force update your CWP using the update_cwp script.

Code: [Select]
sh /scripts/update_cwp
[]'s

12
FTP / Re: Problem with FTP access
« on: December 13, 2018, 12:50:29 AM »
Isn't possible edit my replies and change the code that I posted to show yours and avoid issues? =(

13
FTP / Re: Problem with FTP access
« on: December 12, 2018, 06:40:10 PM »
You're a genius!

echo '/sbin/nologin' >> /etc/shells

fixed mine! :)

No, I'm not... hehe

Thanks to grubberr (https://github.com/grubberr). :-)

14
FTP / Re: Problem with FTP access
« on: December 12, 2018, 04:40:11 PM »
but this error persists ...

Try execute the "update_cwp" and the "yum update -y".

Code: [Select]
sh /scripts/update_cwp
yum update -y

After this... execute the command:

Code: [Select]
echo '/sbin/nologin' >> /etc/shells
For me the command above fixed the issue... sorry if it don't works to you, I'm not a linux expert. :-(

15
FTP / Re: Problem with FTP access
« on: December 12, 2018, 12:15:03 PM »
In another server I do a system update using the YUM on a CWP version 0.9.8.751 and the issue with the FTP don't occur.

I think that the FTP login error occur only after a YUM update in a CWP 0.9.8.747 server.

Pages: [1] 2