Centos 8 testing is now started, seems all are working soon will be available.

Best posts made by sandeep
-
CWP and centos 8
-
Generate secure password with this tool
Hi i'm introducing a new password generator tool, via this tool you can generate secure passwords combination listed below cases and numerical. https://www.mysterydata.com/passgen/
Numbers (0123456789) Lowercase (abcdefghijklmnopqrstuvwxyz) Uppercase (ABCDEFGHIJKLMNOPQRSTUVWXYZ) ASCII symbols (!"#$%&'()*+,-./:;<=>?@[]^_`{|}~) Space ( )
it uses:
Math.random() (low security)
crypto.getRandomValues() (high security)this tool doesn't store any password generated, its 100% safe to use.
-
RE: How to update phpMyAdmin v4.7.9 outdated version to the latest phpMyAdmin v4.9.2 for CWP and CWP PRO for Centos 7 !
actually issue is cwp update it reverting back the phpmyadmin version. I need to check it but didn't getting free time for it hopefully i'll check it in 1-2 days
-
We've now New support portal
We've now support portal you can hire me from here, payment is basis on first work then pay or if you want to pay first you're welcome.
https://support.mysterydata.com/payment method : -
Global:
PAYPALIndia :
UPI, IMPS -
RE: CWP and centos 8
@JosePP its in dev beta when it is ready i'll let you know, the installer is not yet public
-
RE: OpenLiteSpeed + CWP
hi, openlitespeed test is in our list. I'll try to check in few days and post some tutorial on it.
-
RE: OpenLiteSpeed + CWP
testing further, will post a detailed tutorial probably with video.
-
How to Get A+ Score Rating with SSLLabs Qualys in CWP – Control web panel
I've created a dedicated post for CWP upon how to get A+ score
https://www.mysterydata.com/get-a-score-rating-with-ssllabs-qualys-in-cwp-control-web-panel/If you need help or make a correction let me know
-
RE: Service httpd start error
@Locvps said in Service httpd start error:
mod_ruid2.conf
edit the
mod_ruid2.conf
config under conf.d and comment out the load module lineand for servername add
ServerName hostname or ServerName localhost
in
httpd.conf
and restart httpd. -
[solved] channel: no 'mirrors.sought.rules.yerp.org' record found, channel failed
If you're getting this issues with spamassassin update and want to disable this :
Cron <root@server> /usr/share/spamassassin/sa-update.cron 2>&1 | tee -a /var/log/sa-update.log channel: no 'mirrors.sought.rules.yerp.org' record found, channel failed SpamAssassin: Update available, but download or extract failed
or
channel: no 'mirrors.sought.rules.yerp.org' record found, channel failed channel: no 'mirrors.updates.spamassassin.org' record found, channel failed Update available, but download or extract failed
The solution is to disable sought config :
cp -r /etc/mail/spamassassin/channel.d/sought.conf /etc/mail/spamassassin/channel.d/sought.conf.bak sed -e '/CHANNELURL=/ s/^#*/#/' -i /etc/mail/spamassassin/channel.d/sought.conf sed -e '/KEYID=/ s/^#*/#/' -i /etc/mail/spamassassin/channel.d/sought.conf service spamassassin restart
Latest posts made by sandeep
-
RE: Error Dovecot IMAP/POP3 Server
@josepp it seems something is corrupted
you need to remove dovecot and its files completely and install it againrpm -e --nodeps dovecot dovecot-mysql dovecot-pigeonhole yum install dovecot dovecot-mysql dovecot-pigeonhole -y
after that rebuild the mail server.
Also
Check the mysql postfix DB for any corruption.
-
RE: Problem with How to Enable TLS 1.3 in Apache on CWP
tested on multiple centos version it works fine here is configure summary, python 3.8.x building is must before compiling latest nghttp2
configure: summary of build options: Package version: 1.43.0 Library version: 34:1:20 Install prefix: /usr System types: Build: x86_64-pc-linux-gnu Host: x86_64-pc-linux-gnu Target: x86_64-pc-linux-gnu Compiler: C compiler: gcc CFLAGS: -g -O2 LDFLAGS: C++ compiler: g++ CXXFLAGS: CXXCPP: C preprocessor: gcc -E CPPFLAGS: WARNCFLAGS: WARNCXXFLAGS: CXX1XCXXFLAGS: EXTRACFLAG: -fvisibility=hidden LIBS: Library: Shared: yes Static: yes Python: Python: /usr/local/bin/python3.8 PYTHON_VERSION: 3.8 pyexecdir: ${exec_prefix}/lib/python3.8/site-packages PYTHON_CPPFLAGS:-I/usr/local/include/python3.8 PYTHON_LIBS: -L/usr/local/lib -lpython3.8 Cython: Test: CUnit: no (CFLAGS='' LIBS='') Failmalloc: yes Libs: OpenSSL: yes (CFLAGS=' ' LIBS='-lssl -lcrypto ') Libxml2: yes (CFLAGS='-I/usr/include/libxml2 ' LIBS='-lxml2 ') Libev: no (CFLAGS='' LIBS='') Libc-ares: no (CFLAGS='' LIBS='') Libevent(SSL): no (CFLAGS='' LIBS='') Jansson: no (CFLAGS='' LIBS='') Jemalloc: no (LIBS='') Zlib: yes (CFLAGS=' ' LIBS='-lz ') Systemd: no (CFLAGS='' LIBS='') Boost CPPFLAGS: Boost LDFLAGS: Boost::ASIO: Boost::System: Boost::Thread: Third-party: http-parser: no MRuby: no (CFLAGS='' LIBS='') Neverbleed: no Features: Applications: no HPACK tools: no Libnghttp2_asio:no Examples: no Python bindings:no Threading: no
-
RE: Problem with How to Enable TLS 1.3 in Apache on CWP
@starbursthost I've updated the tutorial to install with latest nghttp2 1.43
https://www.mysterydata.com/how-to-enable-tls-1-3-in-apache-on-cwp-control-web-panel-centos-7-centos-8-el7-el8/ -
RE: Problem with How to Enable TLS 1.3 in Apache on CWP
@starbursthost hi please use the mentioned version not all latest is supported
-
Install latest version of Sqlite3 from source Ubuntu/Debian
Steps to install latest sqlite3 (at the time of the topic current version was Version 3.35.4)
apt install tcl tcl-dev cd /usr/local/src wget https://sqlite.org/2021/sqlite-autoconf-3350400.tar.gz tar xvfz sqlite-autoconf-3350400.tar.gz cd sqlite-autoconf-3350400 ./configure --prefix=/usr/local make make install
-
Install latest version of Sqlite3 from source centos/rhel/el7/el8
Steps to install latest sqlite3 (at the time of the topic current version was Version 3.35.4)
yum install tcl -y cd /usr/local/src wget https://sqlite.org/2021/sqlite-autoconf-3350400.tar.gz tar xvfz sqlite-autoconf-3350400.tar.gz cd sqlite-autoconf-3350400 ./configure --prefix=/usr/local make make install
-
RE: Successful delivery message
i tested on our test server and didn't found this anywhere.
can you check if email sending and receiving are fine ?
/var/log/maillog
-
RE: Configure CWP DNS Record form cloud ACTIVE toggle
@bigbangsocial you can use default CWP security with clamd, amavis and SA, its enough for mail server.