How To Reinstall MySQL v5.x On Linux

To reinstall MySQL v5.x on Linux, you can follow these steps: Stop the MySQL service: sudo systemctl stop mysqld Remove the existing MySQL installation: sudo yum remove mysql Remove the MySQL data directory: sudo rm -rf /var/lib/mysql Download the MySQL repository package: wget https://repo.mysql.com/mysql57-community-release-el7-11.noarch.rpm Install the MySQL repository package: sudo yum localinstall mysql57-community-release-el7-11.noarch.rpm Install MySQL: … Read more

HowTo: Enable Nginx Status Page

To enable the Nginx status page, you need to add a location block to your Nginx configuration file that will return information about the status of Nginx. Here’s an example of how you can enable the Nginx status page: Open the Nginx configuration file in your preferred text editor: sudo nano /etc/nginx/nginx.conf Add the following … Read more