~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to support-files/binary-configure.sh

  • Committer: bk at mysql
  • Date: 2000-07-31 19:29:14 UTC
  • Revision ID: sp1r-bk@work.mysql.com-20000731192914-08846
Import changeset

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
if test ! -x  ./scripts/mysql_install_db
 
3
then
 
4
  echo "I didn't find the script './scripts/mysql_install_db'."
 
5
  echo "Please execute this script in the mysql distribution directory!"
 
6
  exit 1;
 
7
fi
 
8
 
 
9
./scripts/mysql_install_db
 
10
if [ $? = 0 ]
 
11
then
 
12
  echo "Starting the mysqld server.  You can test that it is up and running"
 
13
  echo "with the command:"
 
14
  echo "./bin/mysqladmin version"
 
15
  ./bin/safe_mysqld &
 
16
fi