Recent Posts

Pages: 1 2 [3] 4 5 ... 10
21
MySQL / Re: MySQL - BAD CONFIGURATION DETECTED
« Last post by overseer on April 01, 2025, 12:41:59 PM »
Check the config file (or its directories) isn't group or other writeable but also make sure the file is readable by the mysql user. The easy way to check the last bit is with
Code: [Select]
sudo -u mysql my_print_defaults --mariadbd so see what configuration options are read. Also run
Code: [Select]
journalctl -u mariadb.service -n 30 -- failing to read configuration files is normally a warning.
22
Installation / Re: Cron jobs from installation
« Last post by overseer on April 01, 2025, 12:37:30 PM »
root crontab?
Code: [Select]
1 2 0 * * * "/root/.acme.sh"/acme.sh --cron --home "/root/.acme.sh/cwp_certs" > /dev/null
2 0 0 * * * /usr/local/cwp/php71/bin/php /usr/local/cwpsrv/var/services/user_files/modules/backups/cron_autobackup.php
3 00 03 * * * /usr/local/cwp/php71/bin/php -d max_execution_time=18000 -q /usr/local/cwpsrv/htdocs/resources/admin/include/cron_autossl_all_domains.php
23
CentOS 8 Problems / Re: CWP + ALmalinux 8 + updated Mariadb 11.4.5
« Last post by overseer on April 01, 2025, 12:35:40 PM »
MariaDB is deprecating the "mysql" binary references, preferring their own name/branding. So yes, symlink if you need the "drop-in" replacement names or due to web developer familiarity.
24
CentOS 8 Problems / Re: CWP + ALmalinux 8 + updated Mariadb 11.4.5
« Last post by DangerD2 on April 01, 2025, 09:21:03 AM »
Code: [Select]
ln -s /usr/bin/mariadb /usr/bin/mysql
ln -s /usr/bin/mariadb-check /usr/bin/mysqlcheck

That hepled
25
CentOS 8 Problems / CWP + ALmalinux 8 + updated Mariadb 11.4.5
« Last post by DangerD2 on April 01, 2025, 09:14:59 AM »
1. Is says CWP7pro. while i have Almalinux 8, is that okay?
2. MySQL bad configuration detected, check from the console by using mysql command !!!
[root@srv4 scripts]# /scripts/checkdb
/scripts/checkdb: line 11: mysql: command not found

Updated mariadb has no mysql executable anymore, make symlink?
26
Installation / Cron jobs from installation
« Last post by ddelbiondo on April 01, 2025, 01:28:06 AM »
Hello everyone,

I did a fresh install of Alma Linux 8.  All went well until I tried to add a cron job and accidently deleted the 2 that were created with the installation of Alma Linux 8.  Can some one out there post the 2 cron jobs that were created with the install.  Not sure how I did that. ::)

Thank you for your help.
David
27
MySQL / Re: MySQL - BAD CONFIGURATION DETECTED
« Last post by DangerD2 on April 01, 2025, 01:12:12 AM »
Oh shit, here we go again:

MySQL bad configuration detected, check from the console by using mysql command !!!

Code: [Select]
#
# This group is read both by the client and the server
# use it for options that affect everything
#
[client-server]

#
# include *.cnf from the config directory
#
!includedir /etc/my.cnf.d

server.cnf
#
# These groups are read by MariaDB server.
# Use it for options that only the server (but not clients) should see
#

# this is read by the standalone daemon and embedded servers
[server]

# This group is only read by MariaDB servers, not by MySQL.
# If you use the same .cnf file for MySQL and MariaDB,
# you can put MariaDB-only options here
[mariadb]

# This group is read by both MariaDB and MySQL servers
[mysqld]

#
# * Galera-related settings
#
[galera]
# Mandatory settings
#wsrep_on=ON
#wsrep_provider=
#wsrep_cluster_address=
#binlog_format=row
#default_storage_engine=InnoDB
#innodb_autoinc_lock_mode=2
#
# Allow server to accept connections on all interfaces.
#
#bind-address=0.0.0.0
#
# Optional setting
#wsrep_slave_threads=1
#innodb_flush_log_at_trx_commit=0

# this is only for embedded server
[embedded]

# This group is only read by MariaDB servers, not by MySQL.
# If you use the same .cnf file for MySQL and MariaDB,
# you can put MariaDB-only options here
[mariadb]

# This group is only read by MariaDB-10.11 servers.
# If you use the same .cnf file for MariaDB of different versions,
# use this group for options that older servers don't understand
[mariadb-10.11]
Checked all other files, all of them are with empty sections, so everything by default

Version is:
mariadb from 11.4.5-MariaDB, client 15.2 for Linux (x86_64) using  EditLine wrapper
28
Mod_Security / OWASP CRS 4.13.0 Just Release
« Last post by Starburst on March 31, 2025, 04:44:56 PM »
FYI - The OWASP CRS ruleset 4.13.0 was just released about an hour ago.

https://github.com/coreruleset/coreruleset/releases/tag/v4.13.0
29
SSL / Error Apache and Hostname SSL
« Last post by interweb on March 31, 2025, 02:19:41 PM »
When everything is working fine, the next day Apache is stopped, all my sites too and cannot be restarted or restarted.

The log says it doesn't have the SSL certificate files or that they are empty.

1.- Delete SSL hostname in  Module SSL Certificate
2.- Re-Generate HOSTNAME - Module Change Hostname
3.- Genrerate new SSL for hostname in Module SSL Certificate
4.- Again Re-Generate HOSTNAME - Module Change Hostname
5.- After performing these steps, I just need to restart it.
~
This is very cumbersome and annoying, but it's the only solution I've found, so I hope it helps someone else.
~
~
30
SSL / Re: [Hostname SSL] Need extra SSL option
« Last post by interweb on March 31, 2025, 01:58:27 PM »
Hi @SM !!!
~
My problem is similar, there is something that is no longer working properly with the Hostanme SSL.
~
1.- Delete SSL hostname in  Module SSL Certificate
2.- Re-Generate HOSTNAME - Module Change Hostname
3.- Genrerate new SSL for hostname in Module SSL Certificate
4.- Again Re-Generate HOSTNAME - Module Change Hostname
5.- In my case, Apache stops, and with it, all my sites too, but after performing these steps, I just need to restart it.
~
This is very cumbersome and annoying, but it's the only solution I've found, so I hope it helps someone else.
Pages: 1 2 [3] 4 5 ... 10