MySQLInitConf » Cronologia » Versione 2
Amministratore Truelite, 08-03-2006 15:50
1 | 2 | Amministratore Truelite | [[TracNav(TOC)]] |
---|---|---|---|
2 | 1 | Amministratore Truelite | = Configurazione di base per MySQL = |
3 | |||
4 | La configurazione di base di Debian crea il database con l'utente root sprovvisto di password. Per questo motivo il primo passo da fare immediatamente dopo l'installazione è impostare una password per esso, questo si fa con il comando: |
||
5 | |||
6 | {{{ |
||
7 | /usr/bin/mysqladmin -u root password NuovaPassword |
||
8 | }}} |
||
9 | |||
10 | dopo di che si potrà verificare che l'accesso è possibile con la nuova password con: |
||
11 | |||
12 | {{{ |
||
13 | server:~# mysql -u root -p |
||
14 | Enter password: |
||
15 | Welcome to the MySQL monitor. Commands end with ; or \g. |
||
16 | Your MySQL connection id is 9 to server version: 4.0.24_Debian-5-log |
||
17 | |||
18 | Type 'help;' or '\h' for help. Type '\c' to clear the buffer. |
||
19 | |||
20 | mysql> show databases; |
||
21 | +-------------+ |
||
22 | | Database | |
||
23 | +-------------+ |
||
24 | | mysql | |
||
25 | | test | |
||
26 | +-------------+ |
||
27 | 2 rows in set (0.00 sec) |
||
28 | |||
29 | mysql> \q |
||
30 | Bye |
||
31 | server:~# |
||
32 | }}} |
||
33 | |||
34 | Si tenga presente infine che le ultime versioni del pacchetto Debian non richiedono più un intervento manuale per abilitare l'ascolto su localhost in quanto la riga: |
||
35 | |||
36 | {{{ |
||
37 | bind-address = 127.0.0.1 |
||
38 | }}} |
||
39 | |||
40 | è già presente in '''/etc/my.cnf'''. |