Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 Assuming an existing mySQL installation, execute the following:
 

Code Block
languagesql
create database [fedoradatabase];
create database [drupaldatabase];
GRANT ALL ON [fedoradatabase].* TO [fedoradbuser] IDENTIFIED BY [password]; 
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES ON [drupaldatabase].* TO '[drupaldatabaseuser]'@'localhost' IDENTIFIED BY '[password]'; 
 
flush privileges;
exit