Advertisement
PuriDevelopers

Guacamole.sql

Mar 17th, 2023
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.25 KB | None | 0 0
  1. ALTER USER 'root'@'localhost' IDENTIFIED BY 'password';
  2. CREATE DATABASE guacamole_db;
  3. CREATE USER 'guacamole_user'@'localhost' IDENTIFIED BY 'password';
  4. GRANT SELECT,INSERT,UPDATE,DELETE ON guacamole_db.* TO 'guacamole_user'@'localhost';
  5. FLUSH PRIVILEGES;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement