How to Disable MySQL Strict Mode
MySQL's, and MariaDB's, strict mode controls how invalid or missing values in data changing queries are handled; this includes INSERT, UPDATE, and CREATE TABLE statements. With strict mode enabled, which is the default state, invalid or missing data may cause warnings or errors when attempting to process the query.
When strict mode is disabled the same query would have its invalid, or missing, values adjusted and would produce a simple warning. This may seem like the preferred result, however with strict mode disabled certain actions may cause unexpected results; for instance, if the value being inserted exceeds the maximum character limit, then it will be truncated to fit the limit.
Make Backups, Always!
Whenever modifying files on a server it’s always best practice to take some form of a backup beforehand. This ensures you have a way to revert changes if something goes awry; it’s also beneficial because it helps track when and what changes were made.
While logged into SSH with the root user, do the following:
cp -a /usr/my.cnf{,.strict.bak}
cp -a /etc/my.cnf{,.strict.bak}
Note: The above command uses 'BASH brace expansion' in order to make a backup copy of the file in its original directory.
Edit the Configuration Files
Depending on the server and the current configurations you may need to edit one, or both, of the following files on the server. Generally, the relevant configuration lines are only in one of them, however, it could be in either one without causing issues; so generally it’s best to check both.
To edit the files, you will open the file with your favorite command line editor. In this example, we use 'vim'.
vim /usr/my.cnf
vim /etc/my.cnf
Within each file above you will be looking for a line with the following content:
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
If you find a line similar to the above that is setting the "sql_mode" variable then you will need to replace it with the following line to disable MySQL strict mode.
sql_mode=""
Once this adjustment has been made, or you've confirmed the file does not need to be adjusted you will then save and close the file.
Restart the MySQL Service
Finally, to make these changes effective you will need to restart the MySQL service as it will only read the configuration files when it initially loads up. In order to force MySQL to use the new configuration files you will do the following:
systemctl restart mysql
or
/etc/init.d/mysql restart
After issuing this command on the server the MySQL service will be restarted and will load the changes made. If all the directions were followed and completed, then MySQL strict mode should now be disabled.
To verify that the process was completed properly you can run the following:
mysql -e "SELECT @@sql_mode;"
The output may look similar to the following:
+--------------------------------------------+
| @@sql_mode
+--------------------------------------------+
| NO_AUTO_CREATE_USER
+--------------------------------------------+
If you have any questions or are not comfortable making these changes yourself, please feel free to contact admin@hackthesec.co.in
Thanks & Regardswww.hackthesec.co.in
0 comments:
Post a Comment