mysql_install_db.sh
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:13k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #!/bin/sh
  2. # Copyright (C) 1997, 1998, 1999 TCX DataKonsult AB & Monty Program KB & Detron HB
  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. case "$1" in
  10.     -IN-RPM)
  11.       IN_RPM="1"; shift
  12.       ;;
  13. esac
  14. defaults=
  15. case "$1" in
  16.     --no-defaults|--defaults-file=*|--defaults-extra-file=*)
  17.       defaults="$1"; shift
  18.       ;;
  19. esac
  20. parse_arguments() {
  21.   # We only need to pass arguments through to the server if we don't
  22.   # handle them here.  So, we collect unrecognized options (passed on
  23.   # the command line) into the args variable.
  24.   pick_args=
  25.   if test "$1" = PICK-ARGS-FROM-ARGV
  26.   then
  27.     pick_args=1
  28.     shift
  29.   fi
  30.   for arg do
  31.     case "$arg" in
  32.       --force) force=1 ;;
  33.       --basedir=*) basedir=`echo "$arg" | sed -e 's/^[^=]*=//'` ;;
  34.       --ldata=*|--datadir=*) ldata=`echo "$arg" | sed -e 's/^[^=]*=//'` ;;
  35.       --user=*) user=`echo "$arg" | sed -e 's/^[^=]*=//'` ;;
  36.       *)
  37.         if test -n "$pick_args"
  38.         then
  39.           # This sed command makes sure that any special chars are quoted,
  40.           # so the arg gets passed exactly to the server.
  41.           args="$args "`echo "$arg" | sed -e 's,([^a-zA-Z0-9_.-]),\\1,g'`
  42.         fi
  43.         ;;
  44.     esac
  45.   done
  46. }
  47. # Get first arguments from the my.cfg file, groups [mysqld] and
  48. # [mysql_install_db], and then merge with the command line arguments
  49. if test -x ./bin/my_print_defaults
  50. then
  51.   print_defaults="./bin/my_print_defaults"
  52. elif test -x @bindir@/my_print_defaults
  53. then
  54.   print_defaults="@bindir@/my_print_defaults"
  55. elif test -x @bindir@/mysql_print_defaults
  56. then
  57.   print_defaults="@bindir@/mysql_print_defaults"
  58. else
  59.   print_defaults="my_print_defaults"
  60. fi
  61. args=
  62. ldata=
  63. execdir=
  64. bindir=
  65. basedir=
  66. force=0
  67. parse_arguments `$print_defaults $defaults mysqld mysql_install_db`
  68. parse_arguments PICK-ARGS-FROM-ARGV "$@"
  69. test -z "$ldata" && ldata=@localstatedir@
  70. if test -z "$basedir"
  71. then
  72.   basedir=@prefix@
  73.   bindir=@bindir@
  74.   execdir=@libexecdir@ 
  75. else
  76.   bindir="$basedir/bin"
  77. if test -x "$basedir/libexec/mysqld"
  78. then
  79.   execdir="$basedir/libexec"
  80. elif test -x "@libexecdir@/mysqld"
  81. then
  82.   execdir="@libexecdir@"
  83. else
  84.   execdir="$basedir/bin"
  85. fi
  86. fi
  87. mdata=$ldata/mysql
  88. if test ! -x $execdir/mysqld
  89. then
  90.   if test "$IN_RPM" -eq 1
  91.   then
  92.     echo "FATAL ERROR $execdir/mysqld not found!"
  93.     exit 1
  94.   else
  95.     echo "Didn't find $execdir/mysqld"
  96.     echo "You should do a 'make install' before executing this script"
  97.     exit 1
  98.   fi
  99. fi
  100. hostname=`@HOSTNAME@` # Install this too in the user table
  101. # Check if hostname is valid
  102. if test "$IN_RPM" -eq 0 -a $force -eq 0
  103. then
  104.   resolved=`$bindir/resolveip $hostname 2>&1`
  105.   if [ $? -ne 0 ]
  106.   then
  107.     resolved=`$bindir/resolveip localhost 2>&1`
  108.     if [ $? -eq 0 ]
  109.     then
  110.       echo "Sorry, the host '$hostname' could not be looked up."
  111.       echo "Please configure the 'hostname' command to return a correct hostname."
  112.       echo "If you want to solve this at a later stage, restart this script with"
  113.       echo "the --force option"
  114.       exit 1
  115.     fi
  116.     echo "WARNING: The host '$hostname' could not be looked up with resolveip."
  117.     echo "This probably means that your libc libraries are not 100 % compatible"
  118.     echo "with this binary MySQL version. The MySQL deamon, mysqld, should work"
  119.     echo "normally with the exception that host name resolving will not work."
  120.     echo "This means that you should use IP addresses instead of hostnames"
  121.     echo "when specifying MySQL privileges !"
  122.   fi
  123. fi
  124. # Create database directories mysql & test
  125. if test "$IN_RPM" -eq 0
  126. then
  127.   if test ! -d $ldata; then mkdir $ldata; chmod 700 $ldata ; fi
  128.   if test ! -d $ldata/mysql; then mkdir $ldata/mysql;  chmod 700 $ldata/mysql ; fi
  129.   if test ! -d $ldata/test; then mkdir $ldata/test;  chmod 700 $ldata/test ; fi
  130.   if test -w / -a ! -z "$user"; then
  131.     chown $user $ldata $ldata/mysql $ldata/test;
  132.   fi
  133. fi
  134. # Initialize variables
  135. c_d="" i_d=""
  136. c_h="" i_h=""
  137. c_u="" i_u=""
  138. c_f="" i_f=""
  139. c_t="" c_c=""
  140. # Check for old tables
  141. if test ! -f $mdata/db.frm
  142. then
  143.   echo "Preparing db table"
  144.   # mysqld --bootstrap wants one command/line
  145.   c_d="$c_d CREATE TABLE db ("
  146.   c_d="$c_d   Host char(60) binary DEFAULT '' NOT NULL,"
  147.   c_d="$c_d   Db char(64) binary DEFAULT '' NOT NULL,"
  148.   c_d="$c_d   User char(16) binary DEFAULT '' NOT NULL,"
  149.   c_d="$c_d   Select_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  150.   c_d="$c_d   Insert_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  151.   c_d="$c_d   Update_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  152.   c_d="$c_d   Delete_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  153.   c_d="$c_d   Create_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  154.   c_d="$c_d   Drop_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  155.   c_d="$c_d   Grant_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  156.   c_d="$c_d   References_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  157.   c_d="$c_d   Index_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  158.   c_d="$c_d   Alter_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  159.   c_d="$c_d PRIMARY KEY Host (Host,Db,User),"
  160.   c_d="$c_d KEY User (User)"
  161.   c_d="$c_d )"
  162.   c_d="$c_d comment='Database privileges';"
  163.   
  164.   i_d="INSERT INTO db VALUES ('%','test','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y');
  165.   INSERT INTO db VALUES ('%','test_%','','Y','Y','Y','Y','Y','Y','N','Y','Y','Y');"
  166. fi
  167. if test ! -f $mdata/host.frm
  168. then
  169.   echo "Preparing host table"
  170.   c_h="$c_h CREATE TABLE host ("
  171.   c_h="$c_h  Host char(60) binary DEFAULT '' NOT NULL,"
  172.   c_h="$c_h  Db char(64) binary DEFAULT '' NOT NULL,"
  173.   c_h="$c_h  Select_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  174.   c_h="$c_h  Insert_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  175.   c_h="$c_h  Update_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  176.   c_h="$c_h  Delete_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  177.   c_h="$c_h  Create_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  178.   c_h="$c_h  Drop_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  179.   c_h="$c_h  Grant_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  180.   c_h="$c_h  References_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  181.   c_h="$c_h  Index_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  182.   c_h="$c_h  Alter_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  183.   c_h="$c_h  PRIMARY KEY Host (Host,Db)"
  184.   c_h="$c_h )"
  185.   c_h="$c_h comment='Host privileges;  Merged with database privileges';"
  186. fi
  187. if test ! -f $mdata/user.frm
  188. then
  189.   echo "Preparing user table"
  190.   c_u="$c_u CREATE TABLE user ("
  191.   c_u="$c_u   Host char(60) binary DEFAULT '' NOT NULL,"
  192.   c_u="$c_u   User char(16) binary DEFAULT '' NOT NULL,"
  193.   c_u="$c_u   Password char(16) binary DEFAULT '' NOT NULL,"
  194.   c_u="$c_u   Select_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  195.   c_u="$c_u   Insert_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  196.   c_u="$c_u   Update_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  197.   c_u="$c_u   Delete_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  198.   c_u="$c_u   Create_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  199.   c_u="$c_u   Drop_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  200.   c_u="$c_u   Reload_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  201.   c_u="$c_u   Shutdown_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  202.   c_u="$c_u   Process_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  203.   c_u="$c_u   File_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  204.   c_u="$c_u   Grant_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  205.   c_u="$c_u   References_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  206.   c_u="$c_u   Index_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  207.   c_u="$c_u   Alter_priv enum('N','Y') DEFAULT 'N' NOT NULL,"
  208.   c_u="$c_u   PRIMARY KEY Host (Host,User)"
  209.   c_u="$c_u )"
  210.   c_u="$c_u comment='Users and global privileges';"
  211.   i_u="INSERT INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
  212.   INSERT INTO user VALUES ('$hostname','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
  213.   
  214.   REPLACE INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
  215.   REPLACE INTO user VALUES ('$hostname','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
  216.   
  217.   INSERT INTO user VALUES ('localhost','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N');
  218.   INSERT INTO user VALUES ('$hostname','','','N','N','N','N','N','N','N','N','N','N','N','N','N','N');"
  219. fi
  220. if test ! -f $mdata/func.frm
  221. then
  222.   echo "Preparing func table"
  223.   c_f="$c_f CREATE TABLE func ("
  224.   c_f="$c_f   name char(64) binary DEFAULT '' NOT NULL,"
  225.   c_f="$c_f   ret tinyint(1) DEFAULT '0' NOT NULL,"
  226.   c_f="$c_f   dl char(128) DEFAULT '' NOT NULL,"
  227.   c_f="$c_f   type enum ('function','aggregate') NOT NULL,"
  228.   c_f="$c_f   PRIMARY KEY (name)"
  229.   c_f="$c_f )"
  230.   c_f="$c_f   comment='User defined functions';"
  231. fi
  232. if test ! -f $mdata/tables_priv.frm
  233. then
  234.   echo "Preparing tables_priv table"
  235.   c_t="$c_t CREATE TABLE tables_priv ("
  236.   c_t="$c_t   Host char(60) binary DEFAULT '' NOT NULL,"
  237.   c_t="$c_t   Db char(64) binary DEFAULT '' NOT NULL,"
  238.   c_t="$c_t   User char(16) binary DEFAULT '' NOT NULL,"
  239.   c_t="$c_t   Table_name char(60) binary DEFAULT '' NOT NULL,"
  240.   c_t="$c_t   Grantor char(77) DEFAULT '' NOT NULL,"
  241.   c_t="$c_t   Timestamp timestamp(14),"
  242.   c_t="$c_t   Table_priv set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter') DEFAULT '' NOT NULL,"
  243.   c_t="$c_t   Column_priv set('Select','Insert','Update','References') DEFAULT '' NOT NULL,"
  244.   c_t="$c_t   PRIMARY KEY (Host,Db,User,Table_name),"
  245.   c_t="$c_t   KEY Grantor (Grantor)"
  246.   c_t="$c_t )"
  247.   c_t="$c_t   comment='Table privileges';"
  248. fi
  249. if test ! -f $mdata/columns_priv.frm
  250. then
  251.   echo "Preparing columns_priv table"
  252.   c_c="$c_c CREATE TABLE columns_priv ("
  253.   c_c="$c_c   Host char(60) binary DEFAULT '' NOT NULL,"
  254.   c_c="$c_c   Db char(64) binary DEFAULT '' NOT NULL,"
  255.   c_c="$c_c   User char(16) binary DEFAULT '' NOT NULL,"
  256.   c_c="$c_c   Table_name char(64) binary DEFAULT '' NOT NULL,"
  257.   c_c="$c_c   Column_name char(64) binary DEFAULT '' NOT NULL,"
  258.   c_c="$c_c   Timestamp timestamp(14),"
  259.   c_c="$c_c   Column_priv set('Select','Insert','Update','References') DEFAULT '' NOT NULL,"
  260.   c_c="$c_c   PRIMARY KEY (Host,Db,User,Table_name,Column_name)"
  261.   c_c="$c_c )"
  262.   c_c="$c_c   comment='Column privileges';"
  263. fi
  264. echo "Installing all prepared tables"
  265. if eval "$execdir/mysqld $defaults --bootstrap --skip-grant-tables 
  266.          --basedir=$basedir --datadir=$ldata --skip-innodb --skip-gemini --skip-bdb $args" << END_OF_DATA
  267. use mysql;
  268. $c_d
  269. $i_d
  270. $c_h
  271. $i_h
  272. $c_u
  273. $i_u
  274. $c_f
  275. $i_f
  276. $c_t
  277. $c_c
  278. END_OF_DATA
  279. then
  280.   echo ""
  281.   if test "$IN_RPM" -eq 0
  282.   then
  283.     echo "To start mysqld at boot time you have to copy support-files/mysql.server"
  284.     echo "to the right place for your system"
  285.     echo
  286.   fi
  287.   echo "PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !"
  288.   echo "This is done with:"
  289.   echo "$bindir/mysqladmin -u root  password 'new-password'"
  290.   echo "$bindir/mysqladmin -u root -h $hostname  password 'new-password'"
  291.   echo "See the manual for more instructions."
  292.   #
  293.   # Print message about upgrading unless we have created a new db table.
  294.   if test -z "$c_d"
  295.   then
  296.     echo
  297.     echo "NOTE:  If you are upgrading from a MySQL <= 3.22.10 you should run"
  298.     echo "the $bindir/mysql_fix_privilege_tables. Otherwise you will not be"
  299.     echo "able to use the new GRANT command!"
  300.   fi
  301.   echo
  302.   if test "$IN_RPM" -eq 0
  303.   then
  304.     echo "You can start the MySQL daemon with:"
  305.     echo "cd @prefix@ ; $bindir/safe_mysqld &"
  306.     echo
  307.     echo "You can test the MySQL daemon with the benchmarks in the 'sql-bench' directory:"
  308.     echo "cd sql-bench ; run-all-tests"
  309.     echo
  310.   fi
  311.   echo "Please report any problems with the @scriptdir@/mysqlbug script!"
  312.   echo
  313.   echo "The latest information about MySQL is available on the web at"
  314.   echo "http://www.mysql.com"
  315.   echo "Support MySQL by buying support/licenses at https://order.mysql.com"
  316.   echo 
  317.   exit 0
  318. else
  319.   echo "Installation of grant tables failed!"
  320.   echo
  321.   echo "Examine the logs in $ldata for more information."
  322.   echo "You can also try to start the mysqld daemon with:"
  323.   echo "$execdir/mysqld --skip-grant &"
  324.   echo "You can use the command line tool"
  325.   echo "$bindir/mysql to connect to the mysql"
  326.   echo "database and look at the grant tables:"
  327.   echo
  328.   echo "shell> $bindir/mysql -u root mysql"
  329.   echo "mysql> show tables"
  330.   echo
  331.   echo "Try 'mysqld --help' if you have problems with paths. Using --log"
  332.   echo "gives you a log in $ldata that may be helpful."
  333.   echo
  334.   echo "The latest information about MySQL is available on the web at"
  335.   echo "http://www.mysql.com"
  336.   echo "Please consult the MySQL manual section: 'Problems running mysql_install_db',"
  337.   echo "and the manual section that describes problems on your OS."
  338.   echo "Another information source is the MySQL email archive."
  339.   echo "Please check all of the above before mailing us!"
  340.   echo "And if you do mail us, you MUST use the @scriptdir@/mysqlbug script!"
  341.   exit 1
  342. fi