s95268 / FiveM-Server-Setup

Automate your FiveM server setup with this simple and effective Bash script! 🚀
1 stars 0 forks source link

how set blank password mysql? #1

Open morganinh4 opened 1 month ago

morganinh4 commented 1 month ago

hello, how define a blank password in mysql? the version of mysql is same from db used in xampp windows?

sinSeptember commented 1 month ago

set the password for the user to an empty string (''), using the ALTER USER or SET PASSWORD statement... after login

ALTER USER 'username'@'localhost' IDENTIFIED BY '';

or: SET PASSWORD FOR 'username'@'localhost' = '';