QuestionQ43
Database SecurityYou want to store the username and password for a client connection to a MySQL server in a file on the local file system.
What is the best way to encrypt that file?
- A Use the AES_ENCRYPT() MySQL function on the option file.
- B Use mysql_secure_installation to encrypt stored login credentials.
- C Use a text editor to create a new defaults file and encrypt it from Linux prompt.
- D Use mysql_config_editor to create an encrypted file.
Community Discussion