61
CentOS-WebPanel GUI / Re: NetworkManager errors / warnings
« Last post by overseer on April 28, 2025, 12:46:57 PM »It wouldn't appear that IPv6 is enabled on your system, but you can double check here:
nmtui is a semi-graphical utility, so the procedure is not just a single command but a series of steps.
Invoke nmtui with sudo in a root shell: nmtui
Click on Edit a connection.
Select the interface you want to edit (eth0).
Go to IPv6 with the arrow keys on the keyboard.
Then select Disabled and click OK.
Run the ip a command from the terminal to confirm that IPv6 is no longer available.
Code: [Select]
sysctl -a | grep -i ipv6
nmtui is a semi-graphical utility, so the procedure is not just a single command but a series of steps.
Invoke nmtui with sudo in a root shell: nmtui
Click on Edit a connection.
Select the interface you want to edit (eth0).
Go to IPv6 with the arrow keys on the keyboard.
Then select Disabled and click OK.
Run the ip a command from the terminal to confirm that IPv6 is no longer available.
62
CentOS-WebPanel GUI / Re: NetworkManager errors / warnings
« Last post by anandmys on April 28, 2025, 12:44:45 PM »If you don't want IPv6 and are using AlmaLinux, you can use nmtui and disable it.
#nmcli conn show "System eth0"
connection.id: System eth0
# nmcli connection modify "System eth0" ipv6.method "disabled"
Error: Failed to modify connection 'System eth0': ipv6.addresses: this property is not allowed for 'method=disabled'
63
PHP / Re: Install ImageMagick or GD ?
« Last post by overseer on April 28, 2025, 12:41:14 PM »Under AlmaLinux 8/9 it would go something like this:
Code: [Select]
dnf update -y
dnf install epel-release -y
dnf install ImageMagick ImageMagick-devel -y
dnf install php php-devel php-pear -y
pecl install imagick
[Add the extension "extension=imagick.so" to your desired PHP configuration -- php.ini]
systemctl restart httpd
systemctl restart php-fpmXX
64
CentOS-WebPanel GUI / Re: NetworkManager errors / warnings
« Last post by anandmys on April 28, 2025, 12:38:34 PM »If you don't want IPv6 and are using AlmaLinux, you can use nmtui and disable it.
#nmcli connection show
NAME UUID TYPE DEVICE
System eth0 3521111a-4fxx-43xx-x444-1xxxxxxxxx0 ethernet eth0
# nmcli connection modify System ipv6.method "disabled"
Error: unknown connection 'System'.
What is the connection name I should use?
65
CentOS-WebPanel GUI / Re: NetworkManager errors / warnings
« Last post by anandmys on April 28, 2025, 12:32:14 PM »If it's disabled in the kernel, there shouldn't be anything left to do (after rebooting). Can you show the results ofCode: [Select]ip a | grep net6
[root@hosting ~]# ip a | grep net6
[root@hosting ~]# ip a | grep net6
66
FTP / Re: FTP connection FAILED
« Last post by overseer on April 28, 2025, 10:55:29 AM »Did you read through the wiki? For sure you would want TLS for FTP. Also, set the passive port range.
https://wiki.centos-webpanel.com/category/ftp
If the address is already in use (21), you need to find out what the conflict is or move the pure-ftpd config to operate on an alternate port.
https://wiki.centos-webpanel.com/category/ftp
If the address is already in use (21), you need to find out what the conflict is or move the pure-ftpd config to operate on an alternate port.
67
FTP / Re: FTP connection FAILED
« Last post by hemal2602 on April 28, 2025, 10:00:32 AM »Facing this issue please help.
● pure-ftpd.service - Pure-FTPd FTP server
Loaded: loaded (/usr/lib/systemd/system/pure-ftpd.service; enabled; vendor preset: disabled)
Active: failed (Result: protocol) since Mon 2025-04-28 13:48:28 +04; 6s ago
Process: 7772 ExecStart=/usr/sbin/pure-config.pl /etc/pure-ftpd/pure-ftpd.conf --daemonize (code=exited, status=0/SUCCESS)
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: Starting Pure-FTPd FTP server...
Apr 28 13:48:28 server.visioninfosoft.org.in pure-ftpd[7773]: (?@?) [ERROR] Unable to start a standalone server: [Address already in use]
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: Can't open PID file /var/run/pure-ftpd.pid (yet?) after start: No such file or directory
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: Failed to start Pure-FTPd FTP server.
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: Unit pure-ftpd.service entered failed state.
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: pure-ftpd.service failed.
● pure-ftpd.service - Pure-FTPd FTP server
Loaded: loaded (/usr/lib/systemd/system/pure-ftpd.service; enabled; vendor preset: disabled)
Active: failed (Result: protocol) since Mon 2025-04-28 13:48:28 +04; 6s ago
Process: 7772 ExecStart=/usr/sbin/pure-config.pl /etc/pure-ftpd/pure-ftpd.conf --daemonize (code=exited, status=0/SUCCESS)
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: Starting Pure-FTPd FTP server...
Apr 28 13:48:28 server.visioninfosoft.org.in pure-ftpd[7773]: (?@?) [ERROR] Unable to start a standalone server: [Address already in use]
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: Can't open PID file /var/run/pure-ftpd.pid (yet?) after start: No such file or directory
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: Failed to start Pure-FTPd FTP server.
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: Unit pure-ftpd.service entered failed state.
Apr 28 13:48:28 server.visioninfosoft.org.in systemd[1]: pure-ftpd.service failed.
68
PHP / Re: Install ImageMagick or GD ?
« Last post by uma on April 28, 2025, 08:36:11 AM »Hi
Tried to run /script/install_imagick on AlmaLinux 8
but it is giving error of Imagick NOT Installed !
following line giving error:
ln -s /usr/local/include/ImageMagick-6 /usr/local/include/ImageMagick
SS: https://prnt.sc/DsveGt3IKtYN
Pls help.
Tried to run /script/install_imagick on AlmaLinux 8
but it is giving error of Imagick NOT Installed !
following line giving error:
ln -s /usr/local/include/ImageMagick-6 /usr/local/include/ImageMagick
SS: https://prnt.sc/DsveGt3IKtYN
Pls help.
69
CentOS 8 Problems / ImageMagick installation on Almalinux 8
« Last post by uma on April 28, 2025, 08:23:21 AM »Hi,
php -v giving error of unable to load dynamic library 'imagick.so'
Tried to install with sh /scripts/install_imagick
but it exit with error Imagick NOT Installed !
So I run script line by line
following lines executed successfully
yum -y install ImageMagick ImageMagick-devel ImageMagick-perl
cd /usr/local/src
rm -Rf imagick-3.1.0RC2
rm -Rf imagick-3.1.0RC2.tgz
wget http://static.cdn-cwp.com/files/php/pecl/imagick-3.1.0RC2.tgz
tar zxf imagick-3.1.0RC2.tgz
cd imagick-3.1.0RC2
phpize
but found that following line not working:
ln -s /usr/local/include/ImageMagick-6 /usr/local/include/ImageMagick
On checking, I didnot found any folder /usr/local/include/ImageMagick-6 in my Almalinux ver 8
after that I run ./configure which exit with error:
checking for MagickWand.h header file... configure: error: Cannot locate header file MagickWand.h
It seems error due to path.

path: https://prnt.sc/DsveGt3IKtYN
Regards,
php -v giving error of unable to load dynamic library 'imagick.so'
Tried to install with sh /scripts/install_imagick
but it exit with error Imagick NOT Installed !
So I run script line by line
following lines executed successfully
yum -y install ImageMagick ImageMagick-devel ImageMagick-perl
cd /usr/local/src
rm -Rf imagick-3.1.0RC2
rm -Rf imagick-3.1.0RC2.tgz
wget http://static.cdn-cwp.com/files/php/pecl/imagick-3.1.0RC2.tgz
tar zxf imagick-3.1.0RC2.tgz
cd imagick-3.1.0RC2
phpize
but found that following line not working:
ln -s /usr/local/include/ImageMagick-6 /usr/local/include/ImageMagick
On checking, I didnot found any folder /usr/local/include/ImageMagick-6 in my Almalinux ver 8
after that I run ./configure which exit with error:
checking for MagickWand.h header file... configure: error: Cannot locate header file MagickWand.h
It seems error due to path.
path: https://prnt.sc/DsveGt3IKtYN
Regards,
70
Other / Re: Paid Support Sabotaged My Production Server – Urgent Escalation Request 487931
« Last post by overseer on April 28, 2025, 12:06:19 AM »Always here to help...
But, I do not like these kinds of threads. Kind of like digging a hole in the ground and yelling into it -- about the same benefit. I concede that CWP support could use some increased customer service and politeness, but there are certain personalities in play and also an eastern European culture that differs from my own. But I can work with them. And thus far my couple of support tickets have been handled professionally and promptly -- despite the time zone differences. But as I've said before, I lean hard into the DIY mode and challenge myself with self-reliance for managing servers. And this forum is also a very valuable resource to glean from, with many helpful and knowledgeable folks around.
But, I do not like these kinds of threads. Kind of like digging a hole in the ground and yelling into it -- about the same benefit. I concede that CWP support could use some increased customer service and politeness, but there are certain personalities in play and also an eastern European culture that differs from my own. But I can work with them. And thus far my couple of support tickets have been handled professionally and promptly -- despite the time zone differences. But as I've said before, I lean hard into the DIY mode and challenge myself with self-reliance for managing servers. And this forum is also a very valuable resource to glean from, with many helpful and knowledgeable folks around.