mariadb/support-files/binary-configure.sh
bk@work.mysql.com f4c589ff6c Import changeset
2000-07-31 21:29:14 +02:00

16 lines
416 B
Bash
Executable file

#!/bin/sh
if test ! -x ./scripts/mysql_install_db
then
echo "I didn't find the script './scripts/mysql_install_db'."
echo "Please execute this script in the mysql distribution directory!"
exit 1;
fi
./scripts/mysql_install_db
if [ $? = 0 ]
then
echo "Starting the mysqld server. You can test that it is up and running"
echo "with the command:"
echo "./bin/mysqladmin version"
./bin/safe_mysqld &
fi