Advertisement
Guest User

Crear base d datos - Mahdi

a guest
May 26th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. CREATE DATABASE `suitecrm`
  2. DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
  3. CREATE USER 'suitecrm-admin'@'localhost';
  4. CREATE USER 'suitecrm-admin'@'127.0.0.1';
  5. CREATE USER 'suitecrm-admin'@'::1';
  6. SET PASSWORD
  7. FOR 'suitecrm-admin'@'localhost' = PASSWORD('suitecrm123@');
  8. SET PASSWORD
  9. FOR 'suitecrm-admin'@'127.0.0.1' = PASSWORD('suitecrm123@');
  10. SET PASSWORD
  11. FOR 'suitecrm-admin'@'::1' = PASSWORD('suitecrm123@');
  12. GRANT ALL PRIVILEGES ON
  13. `suitecrm`.* to 'suitecrm-admin'@'localhost' WITH GRANT OPTION;
  14. GRANT ALL PRIVILEGES ON
  15. `suitecrm`.* to 'suitecrm-admin'@'127.0.0.1' WITH GRANT OPTION;
  16. GRANT ALL PRIVILEGES ON
  17. `suitecrm`.* to 'suitecrm-admin'@'::1' WITH GRANT OPTION;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement