gmishra has asked for the wisdom of the Perl Monks concerning the following question:
Though i am able to make the new database, i am not able to use it to create new user and grant rights. I am getting the following error.use DBI; $drh = DBI->install_driver("mysql"); $database ='testg1'; $host ="localhost"; $user = "root"; $password = "passowrd"; $rc = $drh->func('createdb', $database, $host, $user, $password, ' +admin'); if ($rc == 1){print"new database created.."; } else{print "could not create database: $DBI::errstr\n";} ##################################### ######database created successfully ##################################### #################################### ### the following segment is giving problem ##################################### # the datasource $dbname = 'testg1'; my $db="$dbname:164.xxx.x.xxx:yyyy"; my $dbh = DBI->connect("DBI:mysql:$db",$user,$password) or die("ca +nt connect\n"); print "connected"; ########################################### ###### because of the error, i dont reach the following ##segment ############################################ $auser = 'newuser@localhost'; $pw = 'abcd'; my $query = qq|GRANT ALL on $db.* TO ? IDENTIFIED BY ?|; $dbh->do($query,undef,$auser,$pw) || die ("Could not do $query - E +rror: $DBI::errstr"); ###########################################
I can connect through the MySql console using same username and password. I can also create dtabase and grant rights etc from there. But through thr program, i am getting the "cant connect" error. Please help.DBI->connect(testg1:164.xxx.x.xxx:yyyy) failed: Access denied for user +: 'root@myhost' (Using password: YES) at create.pl line 19 cant connect
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Create new user in MySQL
by jaa (Friar) on Mar 26, 2004 at 12:02 UTC | |
by gmishra (Sexton) on Mar 27, 2004 at 05:17 UTC | |
by jaa (Friar) on Apr 01, 2004 at 14:07 UTC | |
by gmishra (Sexton) on Apr 08, 2004 at 04:25 UTC |