You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
438 B
12 lines
438 B
ALTER USER 'root'@'localhost' IDENTIFIED BY 'msqlroot-=-';
|
|
DELETE FROM mysql.global_priv WHERE User='';
|
|
DELETE FROM mysql.global_priv WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');
|
|
DROP DATABASE IF EXISTS test;
|
|
DELETE FROM mysql.db WHERE Db='test' OR Db='test\\_%';
|
|
FLUSH PRIVILEGES;
|
|
|
|
|
|
create database osticket_db;
|
|
grant all privileges on osticket_db.* to osticket_user identified by 'OsTicketP4';
|
|
flush privileges;
|