We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42e9ada commit d0f3eceCopy full SHA for d0f3ece
.travis.initialize.db.sh
@@ -32,6 +32,9 @@ if [ ! -z "${DB}" ]; then
32
if [ -x ${P}/bin/mysql_ssl_rsa_setup ]; then
33
${P}/bin/mysql_ssl_rsa_setup --datadir=${HOME}/db-"${DB}"
34
fi
35
+ # sha256 password auth keys:
36
+ openssl genrsa -out "${P}"/private_key.pem 2048
37
+ openssl rsa -in "${P}"/private_key.pem -pubout -out "${P}"/public_key.pem
38
${P}/bin/mysqld_safe ${O} --ledir=/ --mysqld=${P}/bin/mysqld --datadir=${HOME}/db-${DB} --socket=/tmp/mysql.sock --port 3307 --innodb-buffer-pool-size=200M --lc-messages-dir=${P}/share --plugin-dir=${P}/lib/plugin/ --log-error=/tmp/mysql.err &
39
while [ ! -S /tmp/mysql.sock ]; do
40
sleep 2
0 commit comments