Installazione di MySQL su server Debian/Ubuntu

← Torna ad MySQL (Unix)

Introduzione

Instalalre mysql-server su ubuntu/debian

fonte: https://stackoverflow.com/questions/42421585/default-password-of-mysql-in-ubuntu-server-16-04

Procedura

  1. installazione server
    apt-get install mysql-server
  2. vedere le credenziali dell'utente di manutenzione
    le credenziali sono nel file /etc/mysql/debian.cfg
  3. creare un utente amministratore
    CREATE USER 'nsadmin'@'localhost' IDENTIFIED BY 'mysql279';
    GRANT ALL PRIVILEGES ON *.* TO 'nsadmin'@'localhost' WITH GRANT OPTION;
    FLUSH PRIVILEGES;