How to create MySQL data directory with mysql_install_db
On a Debian 7 server, the MySQL database got corrupted, which caused the MySQL database to keep crashing. I was able to…
On a Debian 7 server, the MySQL database got corrupted, which caused the MySQL database to keep crashing. I was able to…
On an OVH Cpanel server running CentOS 7, the server won’t boot. When accessing the server console using IPMI, I found the…
To install docker on AlmaLinux, run the following commands Install yum-utils Add docker repository Install Docker CE with Enable docker Start Docker…
FFmpeg binary static build available for download from https://johnvansickle.com/ffmpeg/ To install ffmpeg static build, run cd /usr/local/src wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz tar xvf ffmpeg-release-amd64-static.tar.xz…
MyISAM tables (.MYI and .MYD) can be repaired using myisamchk command. To find list of corrupted tables myisamchk /var/lib/mysql/DB_NAME/*.MYI >> /root/1.txt To…
When trying to mount a Windows NTFS partition on Linux, I got the following error message This is because Windows Machine is…
If you lost your windows user password, you can boot into Linux Live CD or Rescue CD and reset your Windows password…
When running docker on a server with CSF firewall, you may face network connection error because iptables rules added by docker getting…
grubby is provided by package grubby on RHEL based systems. To install grubby, run yum install grubby To list all kernels, run…
To view all rules in iptables, run Or To list iptables rules without resolving IP to hostname To show the line number…
When running migration for a Django application with “python manage.py migrate”, I got the following error message ModuleNotFoundError: No module named ‘MySQLdb’…
When installing a python module on Ubuntu, I got the following error message error: invalid command ‘bdist_wheel’ The error is fixed by…