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.
121
MySQL / Re: Mariadb 10.2 suddenly stopped working in Centos 7 error code=exited 203/EXEC
« on: December 13, 2023, 06:31:11 AM »122
MySQL / Re: Mariadb 10.2 suddenly stopped working in Centos 7 error code=exited 203/EXEC
« on: December 13, 2023, 06:23:40 AM »
Verify that you /etc/systemd/system/(maridbd/mysqld).service file matches the settings below
https://pastebin.com/QZ8m6Ubt
https://pastebin.com/QZ8m6Ubt
123
MySQL / Re: Mariadb 10.2 suddenly stopped working in Centos 7 error code=exited 203/EXEC
« on: December 13, 2023, 05:25:56 AM »
Also make sure one of your instances of mysql isn't already running on port 3306.
netstat -nlp | grep 3306
netstat -nlp | grep 3306
124
MySQL / Re: Mariadb 10.2 suddenly stopped working in Centos 7 error code=exited 203/EXEC
« on: December 13, 2023, 05:12:11 AM »
Try journalctl -x -u mariadb -n 50
125
MySQL / Re: Mariadb 10.2 suddenly stopped working in Centos 7 error code=exited 203/EXEC
« on: December 13, 2023, 04:50:44 AM »
status=203/EXEC is usually a "File Not Found" error.
please post the last lines of " journalctl -u mariadb -n 100 "
please post the last lines of " journalctl -u mariadb -n 100 "
126
DNS / Re: rDNS is required to match the hostname of CWP
« on: December 13, 2023, 04:43:20 AM »i would say, for 95% of the people the rDNS is NOT the same as your hostname, because rDNS is something you will get from your ISP and nothing to set on your own.
E.G if you check google, the MX is called
smtp.google.com
But the rDNS or PTR Record is:
mail-ve1eur010036.inbound.protection.outlook.com
This is not the same
also mine is not the same, all i need to do for CWP to make it work is to manually change the name in the postfix main.cf
and change the following line manually to my rDNS name because CWP default wants to set it the same as the hostname
myhostname = RDNSNAME
I don't know about you. But EVERY VPS/Server I have ever rented, I simply emailed support and asked for them to set my PTR record to my hostname. I have never had them tell me no.
127
CentOS 8 Problems / Re: 403 Forbidden -- Pterodactyl Web Panel Error
« on: December 13, 2023, 04:39:08 AM »
I'm going to go out on a limb, and say that this is not going to be supported by CWP. Your game server requires basically a dedicated server, or VPS. I would highly recommend you either virtualize a new environment, or use a separate server. Following the directions of installing composer and PHP8 may well muck up your CWP installation.
128
CentOS 7 Problems / Re: CWP nameserver not resolve
« on: December 11, 2023, 09:02:05 PM »
How about CSF firewall, and make sure named is running
129
CentOS 7 Problems / Re: CWP nameserver not resolve
« on: December 11, 2023, 06:54:12 PM »
When I try to test your DNS server, I get a connection timeout. Make sure port 53 is open on your firewall and bind/named is running on the server.
130
CentOS 7 Problems / Re: CWP nameserver not resolve
« on: December 11, 2023, 04:49:02 PM »
What is your domain name and nameservers. Perhaps we can find the issue.
131
DNS / Re: rDNS is required to match the hostname of CWP
« on: December 11, 2023, 04:47:52 PM »
I'm just going to put this here, but if rDNS does not match your hostname, 60-70% of your mail from that server will fail.
132
CentOS 7 Problems / Re: CWP nameserver not resolve
« on: December 11, 2023, 04:37:41 AM »
From CWP. /admin/index.php?module=dns_list_zones
You should have a zone ns1.(yourdomain) and ns2.(yourdomain) zones. IF you don't you need to create them with the following
You should have a zone ns1.(yourdomain) and ns2.(yourdomain) zones. IF you don't you need to create them with the following
Code: [Select]
; Zone file for ns1.(yourdomain)
$TTL 14400
ns1.(yourdomain). 86400 IN SOA ns1.(yourdomain). info.centos-webpanel.com. (
2013071600 ;serial, todays date+todays
86400 ;refresh, seconds
7200 ;retry, seconds
3600000 ;expire, seconds
86400 ;minimum, seconds
)
ns1.(yourdomain). 86400 IN NS ns1.(yourdomain).
ns1.(yourdomain). 86400 IN NS ns2.(yourdomain).
ns1.(yourdomain). 14400 IN A (yourip)
Code: [Select]
; Zone file for ns2.(yourdomain)
$TTL 14400
ns2.(yourdomain). 86400 IN SOA ns1.(yourdomain). info.centos-webpanel.com. (
2013071600 ;serial, todays date+todays
86400 ;refresh, seconds
7200 ;retry, seconds
3600000 ;expire, seconds
86400 ;minimum, seconds
)
ns2.(yourdomain). 86400 IN NS ns1.(yourdomain).
ns2.(yourdomain). 86400 IN NS ns2.(yourdomain).
ns2.(yourdomain). 14400 IN A (yourip)
133
Information / Re: Connection refused from ffmpeg.pro/cwp2|bash
« on: December 08, 2023, 03:42:18 PM »
Delete that line mate. And run a virus check on your server. That is not part of CWP, and was not issued in any update they did. That script is indeed a virus.
Also secure your ssh. I'd recommend only allowing cert authentication.
Make sure root is not allowed to log in as ftp. Also check all software that is run by the root user, and if possibly, DO NOT run any as root.
Also secure your ssh. I'd recommend only allowing cert authentication.
Make sure root is not allowed to log in as ftp. Also check all software that is run by the root user, and if possibly, DO NOT run any as root.
134
Installation / Re: Logrotate configuration not working
« on: December 07, 2023, 07:51:47 PM »
Your missing the very important part. You need a "rotate" option for how many files to keep. Add " rotate 1 " as an option and it might work.