Installazione di MySQL su server Debian/Ubuntu
Introduzione
Instalalre mysql-server su ubuntu/debian
fonte: https://stackoverflow.com/questions/42421585/default-password-of-mysql-in-ubuntu-server-16-04
Procedura
- installazione server
- apt-get install mysql-server
- vedere le credenziali dell'utente di manutenzione
- le credenziali sono nel file /etc/mysql/debian.cfg
- creare un utente amministratore
- CREATE USER 'nsadmin'@'localhost' IDENTIFIED BY 'mysql279';
- GRANT ALL PRIVILEGES ON *.* TO 'nsadmin'@'localhost' WITH GRANT OPTION;
- FLUSH PRIVILEGES;