Protect your server against attacks by adopting SSH Key as your
In your local machine (the one that will be establishing the connection to the server) do: ssh-keygen -b 4096 Generating public/private rsa key pair. Enter file in which to save…
In your local machine (the one that will be establishing the connection to the server) do: ssh-keygen -b 4096 Generating public/private rsa key pair. Enter file in which to save…
Recently, after a system crash and consequent system reboot, mysql stopped working. I tried to manually start the server but had no luck on this. sudo /usr/local/mysql/support-files/mysql.server start Tried to…
Copying files around is probably one of the most common reasons why we create bash files. We could be using unix cp but there are more powerful ways available. The…