mysql_install_db.sh
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:8k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh
  2. # Copyright (C) 2002-2003 MySQL AB
  3. # For a more info consult the file COPYRIGHT distributed with this file.
  4. # This scripts creates the privilege tables db, host, user, tables_priv,
  5. # columns_priv in the mysql database, as well as the func table.
  6. #
  7. # All unrecognized arguments to this script are passed to mysqld.
  8. in_rpm=0
  9. windows=0
  10. defaults=""
  11. user=""
  12. case "$1" in
  13.     --no-defaults|--defaults-file=*|--defaults-extra-file=*)
  14.       defaults="$1"; shift
  15.       ;;
  16. esac
  17. parse_arguments() {
  18.   # We only need to pass arguments through to the server if we don't
  19.   # handle them here.  So, we collect unrecognized options (passed on
  20.   # the command line) into the args variable.
  21.   pick_args=
  22.   if test "$1" = PICK-ARGS-FROM-ARGV
  23.   then
  24.     pick_args=1
  25.     shift
  26.   fi
  27.   for arg do
  28.     case "$arg" in
  29.       --force) force=1 ;;
  30.       --basedir=*) basedir=`echo "$arg" | sed -e 's/^[^=]*=//'` ;;
  31.       --ldata=*|--datadir=*) ldata=`echo "$arg" | sed -e 's/^[^=]*=//'` ;;
  32.       --user=*)
  33.         # Note that the user will be passed to mysqld so that it runs
  34.         # as 'user' (crucial e.g. if log-bin=/some_other_path/
  35.         # where a chown of datadir won't help)
  36.  user=`echo "$arg" | sed -e 's/^[^=]*=//'` ;;
  37.       --skip-name-resolve) ip_only=1 ;;
  38.       --verbose) verbose=1 ;;
  39.       --rpm) in_rpm=1 ;;
  40.       --windows) windows=1 ;;
  41.       *)
  42.         if test -n "$pick_args"
  43.         then
  44.           # This sed command makes sure that any special chars are quoted,
  45.           # so the arg gets passed exactly to the server.
  46.           args="$args "`echo "$arg" | sed -e 's,([^a-zA-Z0-9_.-]),\\1,g'`
  47.         fi
  48.         ;;
  49.     esac
  50.   done
  51. }
  52. # Get first arguments from the my.cfg file, groups [mysqld] and
  53. # [mysql_install_db], and then merge with the command line arguments
  54. if test -x ./bin/my_print_defaults
  55. then
  56.   print_defaults="./bin/my_print_defaults"
  57. elif test -x ./extra/my_print_defaults
  58. then
  59.   print_defaults="./extra/my_print_defaults"
  60. elif test -x @bindir@/my_print_defaults
  61. then
  62.   print_defaults="@bindir@/my_print_defaults"
  63. elif test -x @bindir@/mysql_print_defaults
  64. then
  65.   print_defaults="@bindir@/mysql_print_defaults"
  66. else
  67.   print_defaults="my_print_defaults"
  68. fi
  69. args=
  70. ldata=
  71. execdir=
  72. bindir=
  73. basedir=
  74. force=0
  75. verbose=0
  76. fill_help_tables=""
  77. parse_arguments `$print_defaults $defaults mysqld mysql_install_db`
  78. parse_arguments PICK-ARGS-FROM-ARGV "$@"
  79. test -z "$ldata" && ldata=@localstatedir@
  80. if test -z "$basedir"
  81. then
  82.   basedir=@prefix@
  83.   bindir=@bindir@
  84.   execdir=@libexecdir@
  85.   pkgdatadir=@pkgdatadir@
  86. else
  87.   bindir="$basedir/bin"
  88.   if test -x "$basedir/libexec/mysqld"
  89.   then
  90.     execdir="$basedir/libexec"
  91.   elif test -x "$basedir/sbin/mysqld"
  92.   then
  93.     execdir="$basedir/sbin"
  94.   else
  95.     execdir="$basedir/bin"
  96.   fi
  97. fi
  98. # find fill_help_tables.sh
  99. for i in $basedir/support-files $basedir/share $basedir/share/mysql $basedir/scripts `pwd` `pwd`/scripts @pkgdatadir@
  100. do
  101.   if test -f $i/fill_help_tables.sql
  102.   then
  103.     pkgdatadir=$i
  104.   fi
  105. done
  106. if test -f $pkgdatadir/fill_help_tables.sql
  107. then
  108.   fill_help_tables=$pkgdatadir/fill_help_tables.sql
  109. else
  110.   echo "Could not find help file 'fill_help_tables.sql' in @pkgdatadir@ or inside $basedir".
  111.   exit 1;
  112. fi
  113. mdata=$ldata/mysql
  114. mysqld=$execdir/mysqld
  115. mysqld_opt=""
  116. scriptdir=$bindir
  117. if test "$windows" = 1
  118. then
  119.   mysqld="./sql/mysqld"
  120.   mysqld_opt="--language=./sql/share/english"
  121.   scriptdir="./scripts"
  122. fi
  123. if test ! -x $mysqld
  124. then
  125.   if test "$in_rpm" = 1
  126.   then
  127.     echo "FATAL ERROR $mysqld not found!"
  128.     exit 1
  129.   else
  130.     echo "Didn't find $mysqld"
  131.     echo "You should do a 'make install' before executing this script"
  132.     exit 1
  133.   fi
  134. fi
  135. # Try to determine the hostname
  136. hostname=`@HOSTNAME@`
  137. # Check if hostname is valid
  138. if test "$windows" = 0 -a "$in_rpm" = 0 -a $force = 0
  139. then
  140.   resolved=`$bindir/resolveip $hostname 2>&1`
  141.   if [ $? -ne 0 ]
  142.   then
  143.     resolved=`$bindir/resolveip localhost 2>&1`
  144.     if [ $? -ne 0 ]
  145.     then
  146.       echo "Neither host '$hostname' nor 'localhost' could be looked up with"
  147.       echo "$bindir/resolveip"
  148.       echo "Please configure the 'hostname' command to return a correct hostname."
  149.       echo "If you want to solve this at a later stage, restart this script with"
  150.       echo "the --force option"
  151.       exit 1
  152.     fi
  153.     echo "WARNING: The host '$hostname' could not be looked up with resolveip."
  154.     echo "This probably means that your libc libraries are not 100 % compatible"
  155.     echo "with this binary MySQL version. The MySQL daemon, mysqld, should work"
  156.     echo "normally with the exception that host name resolving will not work."
  157.     echo "This means that you should use IP addresses instead of hostnames"
  158.     echo "when specifying MySQL privileges !"
  159.   fi
  160. fi
  161. if test "$ip_only" = "1"
  162. then
  163.   ip=`echo "$resolved" | awk '/ /{print $6}'`
  164.   hostname=$ip
  165. fi
  166. # Create database directories mysql & test
  167.   if test ! -d $ldata; then mkdir $ldata; chmod 700 $ldata ; fi
  168.   if test ! -d $ldata/mysql; then mkdir $ldata/mysql;  chmod 700 $ldata/mysql ; fi
  169.   if test ! -d $ldata/test; then mkdir $ldata/test;  chmod 700 $ldata/test ; fi
  170.   if test -w / -a ! -z "$user"; then
  171.     chown $user $ldata $ldata/mysql $ldata/test;
  172.   fi
  173. if test ! -f $mdata/db.frm
  174. then
  175.   c_d="yes"
  176. fi
  177. if test $verbose = 1
  178. then
  179.   create_option="verbose"
  180. else
  181.   create_option="real"
  182. fi
  183. if test -n "$user"; then
  184.   args="$args --user=$user"
  185. fi
  186. if test "$in_rpm" -eq 0 -a "$windows" -eq 0
  187. then
  188.   echo "Installing all prepared tables"
  189. fi
  190. mysqld_install_cmd_line="$mysqld $defaults $mysqld_opt --bootstrap 
  191. --skip-grant-tables --basedir=$basedir --datadir=$ldata --skip-innodb 
  192. --skip-bdb --skip-ndbcluster $args --max_allowed_packet=8M --net_buffer_length=16K"
  193. if $scriptdir/mysql_create_system_tables $create_option $mdata $hostname $windows 
  194.    | eval "$mysqld_install_cmd_line" 
  195. then
  196.   if test -n "$fill_help_tables"
  197.   then
  198.     if test "$in_rpm" -eq 0 -a "$windows" -eq 0
  199.     then
  200.       echo "Fill help tables"
  201.     fi
  202.     (echo "use mysql;"; cat $fill_help_tables) | eval "$mysqld_install_cmd_line"
  203.     res=$?
  204.     if test $res != 0
  205.     then
  206.       echo ""
  207.       echo "WARNING: HELP FILES ARE NOT COMPLETELY INSTALLED!"
  208.       echo "The "HELP" command might not work properly"
  209.       echo ""
  210.     fi
  211.   fi
  212.   if test "$in_rpm" = 0 -a "$windows" = 0
  213.   then
  214.     echo ""
  215.     echo "To start mysqld at boot time you have to copy support-files/mysql.server"
  216.     echo "to the right place for your system"
  217.     echo
  218.   fi
  219.   if test "$windows" -eq 0
  220.   then
  221.   echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !"
  222.   echo "To do so, start the server, then issue the following commands:"
  223.   echo "$bindir/mysqladmin -u root password 'new-password'"
  224.   echo "$bindir/mysqladmin -u root -h $hostname password 'new-password'"
  225.   echo "See the manual for more instructions."
  226.   #
  227.   # Print message about upgrading unless we have created a new db table.
  228.   if test -z "$c_d"
  229.   then
  230.     echo
  231.     echo "NOTE:  If you are upgrading from a MySQL <= 3.22.10 you should run"
  232.     echo "the $bindir/mysql_fix_privilege_tables. Otherwise you will not be"
  233.     echo "able to use the new GRANT command!"
  234.   fi
  235.   echo
  236.   if test "$in_rpm" = "0"
  237.   then
  238.     echo "You can start the MySQL daemon with:"
  239.     echo "cd @prefix@ ; $bindir/mysqld_safe &"
  240.     echo
  241.     echo "You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory:"
  242.     echo "cd sql-bench ; perl run-all-tests"
  243.     echo
  244.   fi
  245.   echo "Please report any problems with the @scriptdir@/mysqlbug script!"
  246.   echo
  247.   echo "The latest information about MySQL is available on the web at"
  248.   echo "http://www.mysql.com"
  249.   echo "Support MySQL by buying support/licenses at https://order.mysql.com"
  250.   fi
  251.   exit 0
  252. else
  253.   echo "Installation of system tables failed!"
  254.   echo
  255.   echo "Examine the logs in $ldata for more information."
  256.   echo "You can also try to start the mysqld daemon with:"
  257.   echo "$mysqld --skip-grant &"
  258.   echo "You can use the command line tool"
  259.   echo "$bindir/mysql to connect to the mysql"
  260.   echo "database and look at the grant tables:"
  261.   echo
  262.   echo "shell> $bindir/mysql -u root mysql"
  263.   echo "mysql> show tables"
  264.   echo
  265.   echo "Try 'mysqld --help' if you have problems with paths. Using --log"
  266.   echo "gives you a log in $ldata that may be helpful."
  267.   echo
  268.   echo "The latest information about MySQL is available on the web at"
  269.   echo "http://www.mysql.com"
  270.   echo "Please consult the MySQL manual section: 'Problems running mysql_install_db',"
  271.   echo "and the manual section that describes problems on your OS."
  272.   echo "Another information source is the MySQL email archive."
  273.   echo "Please check all of the above before mailing us!"
  274.   echo "And if you do mail us, you MUST use the @scriptdir@/mysqlbug script!"
  275.   exit 1
  276. fi