Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following PHP code that i use to create a database, a user, and grant permissions to the user:

$con = mysql_connect("IP.ADDRESS","user","pass");
mysql_query("CREATE DATABASE ".$dbuser."",$con)or die(mysql_error());
mysql_query("grant all on ".$dbuser.".* to  ".$dbname." identified by '".$dbpass."'",$con) or die(mysql_error());

I want to perform these same actions but from within a shell script. Is it just something like this:

MyUSER="user"
MyPASS="pass"
MYSQL -u $MyUSER -h -p$MyPASS -Bse "CREATE DATABASE $dbuser;"
MYSQL -u $MyUSER -h -p$MyPASS -Bse "GRANT ALL ON $DBUSER.* to  $DBNAME identified by $DBPASS;"

EDIT as this is needed within postwwwacct (a cPanel post account creation hook script) ideally it will be entirely self-contained

share|improve this question

2 Answers

up vote 4 down vote accepted

You need to lower-case "MYSQL" and add a hostname after the -h and you've mixed single and double quotes. Also, you need to set the values for dbname, dbuser and dbpass and use consistent capitalization.:

MyUSER="user"
MyPASS="pass"
HostName="host"
dbName="dbname"
dbUser="dbuser"
dbPass="dbpass"

mysql -u $MyUSER -h $HostName -p$MyPASS -Bse "CREATE DATABASE $dbUser;"
mysql -u $MyUSER -h $HostName -p$MyPASS -Bse "GRANT ALL ON ${dbUser}.* to $dbName identified by $dbPass;"

But I'm not 100% confident in your SQL syntax. I would think it would look more like this:

mysql -u $MyUSER -h $HostName -p$MyPASS -Bse "CREATE DATABASE $dbName;"
mysql -u $MyUSER -h $HostName -p$MyPASS -Bse "GRANT ALL ON ${dbName}.* to $dbUser identified by $dbPass;"
share|improve this answer

Your quotes and capitalization is a bit off (or platform biased), but in essence yes.

You might want to consider actually having your script create an sql script, then making it run through php, shell(s!), etc will be much easier.

share|improve this answer
I second using a SQL script for that. Have a look a dbdeploy and phing davedevelopment.co.uk/2008/04/14/… – Gordon May 5 '10 at 10:36
ideally i would keep it within this one script, its being run from postwwwacct (a cpanel post account creation script) so ideally it would be entirely self-contained – seengee May 5 '10 at 10:47
@Unreason could you let me know where the quotes and caps are off so i can fix them please – seengee May 5 '10 at 12:05
.. or give an example of it creating an SQL script and executing that. thanks – seengee May 5 '10 at 12:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.