MySQL Notes
From Brandonhutchinson.com
(Difference between revisions)
(New page: * To securely provide a user password non-interactively, place user passwords within the ''[client]'' section of ''~/.my.cnf''. e.g., [client] password="''password''" [http://dev.mysql.c...) |
|||
| Line 1: | Line 1: | ||
| - | * To securely provide a user password | + | * To securely provide a user password automatically, place user passwords within the ''[client]'' section of ''~/.my.cnf''. The file should have 600 or 400 permissions. e.g., |
[client] | [client] | ||
password="''password''" | password="''password''" | ||
[http://dev.mysql.com/doc/refman/5.1/en/password-security.html 5.5.6. Keeping Your Password Secure] | [http://dev.mysql.com/doc/refman/5.1/en/password-security.html 5.5.6. Keeping Your Password Secure] | ||
Revision as of 15:28, 14 April 2008
- To securely provide a user password automatically, place user passwords within the [client] section of ~/.my.cnf. The file should have 600 or 400 permissions. e.g.,
[client] password="password"
