“PHPMYADMIN Passwort” Code-Antworten

PhpMyAdmin Erstanmelde

// in config.sample.inc.php change this to true
$cfg['Servers'][$i]['AllowNoPassword'] = false;
// in config.sample.inc.php add this 
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123';
// refresh
Mohamed Sami khiari

PHPMYADMIN Passwort

-- DEFAULT: Username:root , Password: –  (none)
mysql> SET PASSWORD FOR root@localhost=PASSWORD('mypassword');
mysql> GRANT ALL PRIVILEGES ON *.* TO root@localhost 
	IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
VasteMonde

Ähnliche Antworten wie “PHPMYADMIN Passwort”

Fragen ähnlich wie “PHPMYADMIN Passwort”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen