MySQL Password

From UwAmp Wiki

Jump to: navigation, search

Contents

Default password

The default password in UwAmp is :
user : root
password : root


Change password

You can change the MySQL password from the MySQL config or in PHPMyadmin in the privilege tab.

Change PHPMyAdmin authentification

Open file : UwAmp\phpapps\phpmyadmin\config.inc.php

Enter the username and password you want use to connect in PHPMyadmin :

    $cfg['Servers'][$i]['user'] = 'root'; 
    $cfg['Servers'][$i]['password'] = 'root'; 


If you want PHPMyadmin ask you the username and password for each connection change this line :

    $cfg['Servers'][$i]['auth_type'] = 'config';

With this :

    $cfg['Servers'][$i]['auth_type']     = 'cookie';

MySQL User UwAmp

UwAmp use the account "uwamp" in mysql to shutdown the server in standalone. This account must have only the rule SHUTDOWN.

Personal tools