My brother. Holy crap thank you. I have been trying to install this for two days and could not get it to work even though I am alright with linux. Thanks again!
on my debian 12 it does not work: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) and the database is created before!
This error is quite common and occurs because by default in Debian/Ubuntu, MariaDB's root user is configured to use the unix_socket authentication plugin instead of a password. When the script tries to execute MySQL commands as root without a password, it fails. Here are 3 possible solutions, starting with the most recommended one: Most Recommended Solution: Modify the MySQL commands in the script to use sudo: bashCopy# Replace these lines: sudo mysql -u root
My brother. Holy crap thank you. I have been trying to install this for two days and could not get it to work even though I am alright with linux. Thanks again!
Brilliant! Installed in under 5m on Ubuntu 22.04 Thanks for your work on this
Glad it helped!
on my debian 12 it does not work: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
and the database is created before!
This error is quite common and occurs because by default in Debian/Ubuntu, MariaDB's root user is configured to use the unix_socket authentication plugin instead of a password. When the script tries to execute MySQL commands as root without a password, it fails.
Here are 3 possible solutions, starting with the most recommended one:
Most Recommended Solution: Modify the MySQL commands in the script to use sudo:
bashCopy# Replace these lines:
sudo mysql -u root