How To Install And Configure MySQL For Debian

For Debian-based distributions First, update the apt package index with the command: sudo apt update Then install the package: sudo apt install mysql-server This command will install MySQL, then basic MySQL configuration is required Configure MySQL Run the security script with: sudo mysql_secure_installation As you can see, security is at […]

How To Install Redis And Configure Security Settings on Linux

For Debian-based systems, run the following commands: user@localhost: ~ sudo apt update Optional: user@localhost: ~ sudo apt upgrade user@localhost: ~ sudo apt install redis-server For RedHat-based systems, you can connect a remi repository, and run the following commands: user@localhost: ~ sudo yum install epel-release yum-utils user@localhost: ~ sudo yum install […]

How To Install And Configure Sphinx on Linux

For Debian-based systems, run the following commands: user@localhost: ~ sudo apt update Optional: user@localhost: ~ sudo apt upgrade user@localhost: ~ sudo apt install user@localhost: ~ sudo apt install sphinxsearch For RedHat/CenoOS: user@localhost: ~ sudo yum install -y postgresql-libs unixODBC user@localhost: ~ cd /tmp user@localhost: ~ wget http://sphinxsearch.com/files/sphinx-2.2.11-1.rhel7.x86_64.rpm user@localhost: ~ sudo […]

How to Reset your linux Password

It happens that the password of the system administrator is forgotten or the person who knows it is not available. It is possible to reset it if there is physical access to the server/computer or at least IP-KVM console. Access to the grub operating system selection menu is required When […]