You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
369 B
10 lines
369 B
--source include/have_64bit.inc
|
|
|
|
CREATE USER u1@localhost IDENTIFIED BY 'secret' REQUIRE SSL;
|
|
GRANT SELECT ON test.* TO u1@localhost;
|
|
|
|
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
|
|
--exec $MYSQL -uu1 -psecret -h127.0.0.1 --ssl-ca=$MYSQL_TEST_DIR/std_data/ca-sha512.pem --ssl-cipher=DHE-RSA-AES256-SHA test -e "SHOW VARIABLES like '%ssl%';"
|
|
|
|
DROP USER u1@localhost;
|
|
|
|
|