Manage Jenkins > Configure Global Security In "Authorization", change to "Logged-in users can do anything" but uncheck "Allow anonymous read access"
Read More1create database yourDB; 2CREATE USER 'yourDBA'@'localhost' IDENTIFIED BY 'yourPASS'; 3GRANT ALL PRIVILEGES ON yourDB.* TO 'yourDBA'@'localhost'; 4FLUSH PRIVILEGES;
Read More