Installazione di MySQL su server Debian/Ubuntu

Versione del 23 dic 2022 alle 08:25 di Andrea (discussione | contributi) (Creata pagina con "← Torna ad MySQL (Unix) Category:MySQL == Introduzione == Instalalre mysql-server su ubuntu/debian fonte: https://stackoverflow.com/questi...")
(diff) ← Versione meno recente | Versione attuale (diff) | Versione più recente → (diff)

← 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;