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

模拟服务器

开发平台:

C/C++

  1. #!/bin/sh
  2. echo "This scripts updates the mysql.user, mysql.db, mysql.host and the"
  3. echo "mysql.func tables to MySQL 3.22.14 and above."
  4. echo ""
  5. echo "This is needed if you want to use the new GRANT functions,"
  6. echo "CREATE AGGREGATE FUNCTION or want to use the more secure passwords in 3.23"
  7. echo ""
  8. echo "If you get 'Access denied' errors, you should run this script again"
  9. echo "and give the MySQL root user password as an argument!"
  10. host="localhost"
  11. user="root"
  12. if test -z $1 ; then
  13.   cmd="@bindir@/mysql -f --user=$user --host=$host mysql"
  14. else
  15.   root_password="$1"
  16.   cmd="@bindir@/mysql -f --user=$user --password=$root_password --host=$host mysql"
  17. fi
  18. # Fix old password format, add File_priv and func table
  19. echo ""
  20. echo "If your tables are already up to date or partially up to date you will"
  21. echo "get some warnings about 'Duplicated column name'. You can safely ignore these!"
  22. $cmd <<END_OF_DATA
  23. alter table user change password password char(16) NOT NULL;
  24. alter table user add File_priv enum('N','Y') NOT NULL;
  25. CREATE TABLE if not exists func (
  26.   name char(64) DEFAULT '' NOT NULL,
  27.   ret tinyint(1) DEFAULT '0' NOT NULL,
  28.   dl char(128) DEFAULT '' NOT NULL,
  29.   type enum ('function','aggregate') NOT NULL,
  30.   PRIMARY KEY (name)
  31. );
  32. END_OF_DATA
  33. echo ""
  34. # Add the new grant colums
  35. echo "Creating Grant Alter and Index privileges if they don't exists"
  36. echo "You can ignore any Duplicate column errors"
  37. $cmd <<END_OF_DATA
  38. alter table user add Grant_priv enum('N','Y') NOT NULL,add References_priv enum('N','Y') NOT NULL,add Index_priv enum('N','Y') NOT NULL,add Alter_priv enum('N','Y') NOT NULL;
  39. alter table host add Grant_priv enum('N','Y') NOT NULL,add References_priv enum('N','Y') NOT NULL,add Index_priv enum('N','Y') NOT NULL,add Alter_priv enum('N','Y') NOT NULL;
  40. alter table db add Grant_priv enum('N','Y') NOT NULL,add References_priv enum('N','Y') NOT NULL,add Index_priv enum('N','Y') NOT NULL,add Alter_priv enum('N','Y') NOT NULL;
  41. END_OF_DATA
  42. res=$?
  43. echo ""
  44. # If the new grant columns didn't exists, copy File -> Grant
  45. # and Create -> Alter, Index, References
  46. if test $res = 0
  47. then
  48.   echo "Setting default privileges for the new grant, index and alter privileges"
  49.   $cmd <<END_OF_DATA
  50.   UPDATE user SET Grant_priv=File_priv,References_priv=Create_priv,Index_priv=Create_priv,Alter_priv=Create_priv;
  51.   UPDATE db SET References_priv=Create_priv,Index_priv=Create_priv,Alter_priv=Create_priv;
  52.   UPDATE host SET References_priv=Create_priv,Index_priv=Create_priv,Alter_priv=Create_priv;
  53. END_OF_DATA
  54.   echo ""
  55. fi
  56. #
  57. # Create tables_priv and columns_priv if they don't exists
  58. #
  59. echo "Creating the new table and column privilege tables"
  60. $cmd <<END_OF_DATA
  61. CREATE TABLE IF NOT EXISTS tables_priv (
  62.   Host char(60) DEFAULT '' NOT NULL,
  63.   Db char(60) DEFAULT '' NOT NULL,
  64.   User char(16) DEFAULT '' NOT NULL,
  65.   Table_name char(60) DEFAULT '' NOT NULL,
  66.   Grantor char(77) DEFAULT '' NOT NULL,
  67.   Timestamp timestamp(14),
  68.   Table_priv set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter') DEFAULT '' NOT NULL,
  69.   Column_priv set('Select','Insert','Update','References') DEFAULT '' NOT NULL,
  70.   PRIMARY KEY (Host,Db,User,Table_name)
  71. );
  72. CREATE TABLE IF NOT EXISTS columns_priv (
  73.   Host char(60) DEFAULT '' NOT NULL,
  74.   Db char(60) DEFAULT '' NOT NULL,
  75.   User char(16) DEFAULT '' NOT NULL,
  76.   Table_name char(60) DEFAULT '' NOT NULL,
  77.   Column_name char(59) DEFAULT '' NOT NULL,
  78.   Timestamp timestamp(14),
  79.   Column_priv set('Select','Insert','Update','References') DEFAULT '' NOT NULL,
  80.   PRIMARY KEY (Host,Db,User,Table_name,Column_name)
  81. );
  82. END_OF_DATA
  83. #
  84. # Name change of Type -> Column_priv from MySQL 3.22.12
  85. #
  86. echo "Changing name of columns_priv.Type -> columns_priv.Column_priv"
  87. echo "You can ignore any errors from this"
  88. $cmd <<END_OF_DATA
  89. ALTER TABLE columns_priv change Type Column_priv set('Select','Insert','Update','References') DEFAULT '' NOT NULL;
  90. END_OF_DATA
  91. #
  92. # Add the new 'type' column to the func table.
  93. #
  94. echo "Fixing the func table"
  95. echo "You can ignore any Duplicate column errors"
  96. $cmd <<EOF
  97. alter table func add type enum ('function','aggregate') NOT NULL;
  98. EOF