Soumitra Kayal

System Administrator | Wordpress Expert | Web Developer
apache2

Enable TLS 1.2 only in Apache Edit the virtual host section for your domain in the Apache SSL configuration file on your server and add set the SSLProtocol as follows. This will disable all older protocols and your Apache server and enable only TLSv1.2  SSLProtocol -all +TLSv1.2 Sample Apache virtual host with SSL : <VirtualHost *:443> ServerName www.example.com DocumentRoot /var/www/html SSLEngine...

Read More
mariadb

Prepare MariaDB for Upgrade To prepare MariaDB for Upgrade, logon to the database server as root with the root password and run the commands below sudo mysql -u root -p Then run the commands below to set innodb_fast_shutdown to 0 mysql> SET GLOBAL innodb_fast_shutdown = 0; Backup Your Databases It’s always important to backup your databases before attempting to upgrade To back up, run the commands below against each database you wish...

Read More