Recent Posts

Pages: [1] 2 3 ... 10
1
Information / Re: Missing Items - CWP To CWP Migration
« Last post by cyberspace on November 08, 2024, 07:30:28 PM »
Hi,

Look at this script:
https://github.com/JaimeObregon/export-roundcube-sql
It seems this script is what you look for to transfer the roundcube settings for specific domain between the servers.

Please note I didn't test this script.

If you want to transfer the whole roundcube database then do following:

As root on the source server do:

1.
Code: [Select]
mysqldump -Q --opt roundcube > roundcube.sql
2. Copy the file roundcube.sql to the destination server over FTP, SCP or some other way preferred by you.

3. Restore the database content on the destination server:

Code: [Select]
mysql roundcube  < roundcube.sql
2
Apache / Re: Apache won't start after select web server nginx-varnish-apache
« Last post by cyberspace on November 08, 2024, 06:37:03 PM »
when i try i get this error
(98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
(98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80

The above errors say the port 80 is used already by some service NGINX or HTTP and can't be used by another service. Stop NGINX, Apache/HTTPD and then start services in the following order (Nginx,Apache) manually. If you get the error "could not bind to address 0.0.0.0:80" when you start Apache then check the Apache's config files to identify why apache tries to listed the port 80, update the port (replace :80 with :8181) and then try to start Apache again.
3
Apache / Re: Apache won't start after select web server nginx-varnish-apache
« Last post by shiraski on November 08, 2024, 04:37:14 PM »
No actually i enable nginx-varnish-apache after that mode security is remove then also apache not start

when i try i get this error
(98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
(98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
4
Apache / Re: Apache won't start after select web server nginx-varnish-apache
« Last post by cyberspace on November 08, 2024, 09:59:15 AM »
This is well known mod_security problem. It was solved numerous times:
https://forum.centos-webpanel.com/centos-9-problems/apache-wont-restart-after-enabling-mod_security/msg48744/

Guys, use "search" at this forum. Don't need to post the same problem-solution again and again.
5
Apache / Re: Apache won't start after select web server nginx-varnish-apache
« Last post by shiraski on November 08, 2024, 09:20:08 AM »
Issue solved with

edit mod_security.conf
nano /usr/local/apache/conf.d/mod_security.conf

LoadFile /usr/lib64/liblua-5.4.so
Edit this line to like this
6
Apache / Apache won't start after select web server nginx-varnish-apache
« Last post by shiraski on November 08, 2024, 08:11:17 AM »
Dear members
I install fresh cwp with alamala Linux 9
then change server setup to nginx-varnish-apache and phpfpm
but after that httppd apache not run
if i try manual there showing error

Job for httpd.service failed because the control process exited with error code.
See "systemctl status httpd.service" and "journalctl -xeu httpd.service" for details.

I think port issue please help me to solve this issue
7
CSF Firewall / Re: Cant start firewall
« Last post by cyberspace on November 07, 2024, 11:05:01 PM »
According to the error the kernel module iptables_filter isn't loaded and OS can't load it for some reason. It could happen if:

1. You use custom kernel without iptables_filter support (Kernel installed from some 3rd party repository or compiled from sources with iptables_filter disabled)
2. Your provider uses OpenVZ/LXC virtualization and the kernel module iptables_filter isn't loaded at main node.

If the problem remains unsolved after the restoration then do following:

Run as root on your VPS:

Code: [Select]
uname -a
ls  /lib/modules/$(uname -r)/kernel/net/ipv4/netfilter/

and show output.
8
CentOS-WebPanel Bugs / Re: User login - errors
« Last post by josemnunez on November 07, 2024, 09:18:29 PM »
What version of Centos do you have installed?
9
CentOS 9 Problems / Re: Error in SMTP
« Last post by Starburst on November 07, 2024, 06:39:33 PM »
No, CWP will build Varnish & Nginx in the background.

Checked the link, it is working.

You can also use:
https://www.alphagnu.com/topic/23-upgrade-mariadb-1011-in-cwp-centos-7-centos-8-stream-almalinux-78-rockylinux-78/#comment-25
10
CentOS 9 Problems / Re: Error in SMTP
« Last post by venty on November 07, 2024, 06:32:40 AM »
You would just use the providers base AlmaLinux 9 install, and then stop and do not install anything (MariaDB, PHP, etc.) before CWP.

If you do will have all kinds of problems that would be unfixable.

Just do the base image, and then see the following that was posted in another thread:
https://forum.centos-webpanel.com/apache/issues-with-brand-new-fresh-install-with-almalinux-9-4/msg49159/#msg49159

Then you will want to upgrade MariaDB from 10.4 to 10.11.
You can see that guide at AlphaGNU or
https://kb.starburstservices.com/control-web-panel-cwp/control-web-panel-cwp-admin-tutorials/upgrade-mariadb-10-x-to-10-11-in-cwp-on-almalinux-9/

Then it just up to you to compile PHP inside CWP to 8.1, 8.2 or 8.3

Hi,

Thank you very much for your reply...

Please clarify—when installing CWP on AL 8 and trying to select the combination Nginx, Varnish, and Apache, it turned out that the first two were not installed. The server can only work when the Apache variant is selected.
Are there any installation and configuration requirements for Nginx & Varnish on AL9?

Please also look at the link, it is not active:

https://kb.starburstservices.com/control-web-panel-cwp/control-web-panel-cwp-admin-tutorials/upgrade-mariadb-10-x-to-10-11-in-cwp-on-almalinux-9/

Thanks in advance!
BR
Venty
Pages: [1] 2 3 ... 10