vieläkö tähän löytyisi vastausta?
Jotenkin osasin odottaa tätä kysymystä
Sinulla pitää olla root-käyttäjänä oikeudet MySQL-tietokantaan ja se pitää kertoa phpmyadmin-ohjelmalle.
1. Vilkaise ensin hieman mysqladmin-ohjetta, mitä kaikkea voit sillä tehdä.
man mysqladmin2. Kirjaudu root-käyttäjänä Ubuntuun
asmok@ubuntu:~$ sudo su
root@ubuntu:/home/asmok#3. Anna salasana (= xxxxxx) root-käyttäjälle MySQL-tietokannassa.
root@ubuntu:/home/asmok# mysqladmin password xxxxxx4. Poistu root-tunnuksesta.
root@ubuntu:/home/asmok# exit5. Kokeile, että antamasi salasana toimii MySQL-tietokannassa.
asmok@ubuntu:~$ mysql -u root -pEnter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 11 to server version: 5.0.22-Debian_0ubuntu6.06.2-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
6. Kerro phpmyadmin-ohjelmalle samat tiedot.
asmok@ubuntu:~$ cd /etc/phpmyadminasmok@ubuntu:/etc/phpmyadmin$ ls
apache.conf blowfish_secret.inc.php config.footer.inc.php config.header.inc.php config.inc.php htaccess htpasswd.setup
asmok@ubuntu:/etc/phpmyadmin$ sudo vi config.inc.phpLisää salasana tähän kohtaan, hipsujen '' väliin:
//$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
//$cfg['Servers'][$i]['password'] = ''; // MySQL password
Ystävällisin terveisin Asmo Koskinen.