Workshop
The workshop is designed to help you anticipate possible questions, review what you've learned, and begin learning how to put your knowledge into practice.Quiz
1: | True or False: Telnet is a perfectly acceptable method to securely connect to MySQL from a remote host. |
2: | Which three pieces of information does MySQL check each time a request is made? |
3: | What command would you use to grant SELECT, INSERT, and UPDATE privileges to a user named bill on localhost to all tables on the BillDB database? Also, what piece of information is missing from this statement that is recommended for security purposes? |
Answers
A1: | False. The key word is secure , and Telnet does not encrypt data between hosts. Instead, use SSH to connect to your server. |
A2: | Who you are, where you are accessing from, and what actions you're allowed to perform. |
A3: | The command isThe important missing piece is a password for the user! |