Access denied for user 'SYSTEM'@'localhost' (
Résolu/Fermé
A voir également:
- Access denied for user 'zabbix'@'localhost' (using password: yes)
- Error 1045 (28000): access denied for user 'root'@'localhost' (using password: yes) - Meilleures réponses
- Error 1045 (28000): access denied for user 'zabbix'@'localhost' (using password: yes) - Meilleures réponses
- Serveur zabbix ✓ - Forum - Réseau
- Error 1045 (28000): access denied for user 'zabbix'@'localhost' (using password: yes) - Forum - MySQL
- Access denied for user 'SYSTEM'@'localhost' ( ✓ - Forum - Webmaster
- Erreur access denied for user 'root'@'localhost' (using password ✓ - Forum - MySQL
- [ POSTFIX ] DSPAM : ERROR 1045 (28000): Access denid for user - Forum - Bases de données
7 réponses
Tu pourrais être plus précis? genre copier/coller ton script de connexion à ta DB... en cachant le mot de passe et le user bien entendu, mais il semblerait que ton serveur n'accepte pas le user SYSTEM...
bonjour;
lorsque que je peut de faire la connexion de la bdd je me recois ce message
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: YES) in C:\Program Files\EasyPHP 2.0b1\www\aa.php on line 6
voila mon code :
<?php
$hoste="localhost";
$user="root";
$passe=" ";
$req1="select * from client";
$connexion =mysql_connect($hoste,$user,$passe) ;
mysql_select_db("enap");
$rep= mysql_query($req1,$connexion);
while ($donnees =@mysql_fetch_array($rep) )
{$aff= $donnees['nom'];
echo"$aff";}
?>
lorsque que je peut de faire la connexion de la bdd je me recois ce message
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: YES) in C:\Program Files\EasyPHP 2.0b1\www\aa.php on line 6
voila mon code :
<?php
$hoste="localhost";
$user="root";
$passe=" ";
$req1="select * from client";
$connexion =mysql_connect($hoste,$user,$passe) ;
mysql_select_db("enap");
$rep= mysql_query($req1,$connexion);
while ($donnees =@mysql_fetch_array($rep) )
{$aff= $donnees['nom'];
echo"$aff";}
?>
bon je sais pas du tout comment fonctionne mysql avec windows mais bon devrait aider quand meme :)
root@raclo94 Téléchargement]#/etc/init.d/mysqld stop
[root@raclo94 Téléchargement]# mysqld --skip-grant-tables --skip-networking &
[root@raclo94 Téléchargement]# mysql -p -u root
Enter password: tapez juste entrée
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.34 Mandriva Linux - MySQL Standard Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use mysql
Database changed
mysql> UPDATE user SET password=PASSWORD('mot de pass') WHERE user="root";
Query OK, 0 rows affected (0.00 sec)
Rows matched: 0 Changed: 0 Warnings: 0
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY 'même mot de pass que ci-dessus'
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
[root@raclo94 Téléchargement]# /etc/init.d/mysqld stop
Shutting down MySQL: ... [ OK ]
[root@raclo94 Téléchargement]# /etc/init.d/mysqld start
Starting MySQL: . [ OK ]
[root@raclo94 Téléchargement]# mysql -p -u root
Enter password: votre pass
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.1.34 Mandriva Linux - MySQL Standard Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
et voila :)
root@raclo94 Téléchargement]#/etc/init.d/mysqld stop
[root@raclo94 Téléchargement]# mysqld --skip-grant-tables --skip-networking &
[root@raclo94 Téléchargement]# mysql -p -u root
Enter password: tapez juste entrée
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.34 Mandriva Linux - MySQL Standard Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> use mysql
Database changed
mysql> UPDATE user SET password=PASSWORD('mot de pass') WHERE user="root";
Query OK, 0 rows affected (0.00 sec)
Rows matched: 0 Changed: 0 Warnings: 0
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY 'même mot de pass que ci-dessus'
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
[root@raclo94 Téléchargement]# /etc/init.d/mysqld stop
Shutting down MySQL: ... [ OK ]
[root@raclo94 Téléchargement]# /etc/init.d/mysqld start
Starting MySQL: . [ OK ]
[root@raclo94 Téléchargement]# mysql -p -u root
Enter password: votre pass
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.1.34 Mandriva Linux - MySQL Standard Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
et voila :)
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY 'même mot de pass que ci-dessus'
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
[root@raclo94 Téléchargement]# /etc/init.d/mysqld stop
Shutting down MySQL: ... [ OK ]
[root@raclo94 Téléchargement]# /etc/init.d/mysqld start
Starting MySQL: . [ OK ]
[root@raclo94 Téléchargement]# mysql -p -u root
Enter password: votre pass
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.1.34 Mandriva Linux - MySQL Standard Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
et voila Smile
Query OK, 0 rows affected (0.00 sec)
mysql> GRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY 'même mot de pass que ci-dessus'
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
[root@raclo94 Téléchargement]# /etc/init.d/mysqld stop
Shutting down MySQL: ... [ OK ]
[root@raclo94 Téléchargement]# /etc/init.d/mysqld start
Starting MySQL: . [ OK ]
[root@raclo94 Téléchargement]# mysql -p -u root
Enter password: votre pass
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 13
Server version: 5.1.34 Mandriva Linux - MySQL Standard Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
et voila Smile
niousha
12 avril 2008 à 14:59
- Messages postés
- 12
- Date d'inscription
- lundi 17 décembre 2007
- Statut
- Membre
- Dernière intervention
- 7 août 2010
12 avril 2008 à 14:59
Bonjour,
Ai installé thunderbird et arrive pas accéder à une boite mail, aucun compte, il m'est donné comme explication :
erreur serveur 0X800CCC90 - n° erreur 0X800CCC92
Merci de m'aider si possible.
Vous en remerciant par avance.
Ai installé thunderbird et arrive pas accéder à une boite mail, aucun compte, il m'est donné comme explication :
erreur serveur 0X800CCC90 - n° erreur 0X800CCC92
Merci de m'aider si possible.
Vous en remerciant par avance.
prologic
25 avril 2008 à 16:19
- Messages postés
- 92
- Date d'inscription
- lundi 17 décembre 2007
- Statut
- Membre
- Dernière intervention
- 7 décembre 2010
25 avril 2008 à 16:19
le post est un peu vieux, tu devrais en faire un autre, et fait gaffe, ca n'a rien a voir avec les erreur de langage PHP cité au déprt.