[Solved] ERROR 1030 (HY000): Got error 168 from storage engine
If you are getting the following error in MySQL:
ERROR 1030 (HY000): Got error 168 from storage engine
Then this usually means that your server has …
Read Article →45 articles about linux development, tools, and best practices
If you are getting the following error in MySQL:
ERROR 1030 (HY000): Got error 168 from storage engine
Then this usually means that your server has …
Read Article →On Linux, you can change the hostname
by using the hostnamectl
command.
sudo hostnamectl set-hostname …
Read Article →
Certbot allows simple, quick and free provisioning of SSL certificates using LetsEncrypt.
sudo snap …
Read Article →
chmod
alters the permissions for a file or directory, you could allow full read/write access to a file or directory by running the following command: …
You may find your /var/log/journal
directory taking up a lot of disk-space.
How do you go about removing, or deleting all these files under var log …
I needed to find all files in a directory on Linux that ended with the file extension .php
.
You …
Read Article →Operating Systems come in a few competing choices, of which the major players are Apple’s MacOS, Microsoft’s Windows and then the various …
Read Article →It’s amazing how many times I’ve need to find out the total size of all the files in a directory on one of our servers.
I have grown to …
Read Article →So you are getting an error 404
or perhaps even worse, a 500
!
The error in your Apache2 logs looks something like this:
***.162.245.*** - - …
If you’ve ever typed date
into your Ubuntu Server and seen a different time or timezone appear than you expected, then it probably means that …
Programming languages provide the ability to remove special characters from a string quite easily.
Sometimes you need to also do this from your …
Read Article →Let’s take a really common example. Say we want to follow redirects with cURL for google.com
. It is common to curl follow redirect a URL.