InterviewSolution
Saved Bookmarks
| 1. |
The variable that checks for availability of SSL support is ____________(a) have_ssl(b) has_ssl(c) avail_ssl(d) ssl_avail |
|
Answer» Correct option is (a) have_ssl Explanation: After the SSL-capable server is started, to verify that it supports SSL, connection is established with ‘mysql’ and the following query is issued: SHOW VARIABLES LIKE ‘have_ssl’. |
|