English 中文(简体)
我如何“创造用户”作为非专用用户?
原标题:How do I "grant create user" as a non-root user?
  • 时间:2011-10-06 21:58:35
  •  标签:
  • mysql

我有一个数据库,希望用户能够创建新的用户。 通过以下方式实现这一目标:

grant create user on *.* to foo;

这种做法是巨大的,可产生用户。 我的问题是,上述线如果是作为根基运行,但如果不作为正常用户运行,即使这些用户已经享有欧洲可再生能源网的特权,则行不通。

简言之,普通用户不能下放创造用户的能力。 我一直在寻找你能够这样做的任何特别特权,我开始认为,这只是一个根本可以做的事,尽管我没有在我的我的后勤文件中看到这方面的证据。

问题:我如何允许普通用户让新用户制造用户?

最佳回答

申请在补助金后处理:

FLUSH PRIVILEGES;
问题回答

这两种答复都是有用的,我使用了两者的组合,似乎已经奏效。

作为根基(行政管理是正常用户):

mysql> grant create user on *.* to admin with grant option;
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

作为行政(由他担任正常用户):

mysql> grant create user on *.* to foo with grant option;
Query OK, 0 rows affected (0.00 sec)

Thank you so much.

-- Create username user

GRANT ALL PRIVILEGES ON `tshirtshop`.*
      TO  username @ localhost  IDENTIFIED BY  password 
      WITH GRANT OPTION;

为了能够向其他用户提供<代码>GRANT的特权,必须创建MySQL用户。 页: 1

http://dev.mysql.com/doc/refman/5.1/en/grant.html#grant-other-characteristics





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...