summaryrefslogtreecommitdiff
path: root/SSL/run-client
diff options
context:
space:
mode:
Diffstat (limited to 'SSL/run-client')
-rwxr-xr-xSSL/run-client9
1 files changed, 9 insertions, 0 deletions
diff --git a/SSL/run-client b/SSL/run-client
new file mode 100755
index 00000000000..c8065f30030
--- /dev/null
+++ b/SSL/run-client
@@ -0,0 +1,9 @@
+#! /bin/sh
+
+cmd () {
+ echo $*
+ $*
+}
+
+client/mysql --port=4407 --socket=/tmp/test.mysql.sock --ssl-ca=SSL/cacert.pem --ssl-cert=SSL/client-cert.pem --ssl-key=SSL/client-key.pem --debug='d:t:O,/tmp/client.trace' -h 127.0.0.1 --execute="select version()"
+