uj könyvtär Scripts

This commit is contained in:
2025-12-15 10:00:38 +01:00
parent c06d51509d
commit 0c3b5e75a6
43 changed files with 1957 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
CREATE DATABASE drucklog;
CREATE USER IF NOT EXIST 'druckloguser'@'%' IDENTIFIED BY 'Test123#';
SELECT user, host FROM mysql.user;
GRANT ALL PRIVILEGES ON drucklog.* TO 'druckloguser'@'%';
FLUSH PRIVILEGES;
EXIT;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'eprencs';
FLUSH PRIVILEGES;