Joomla Template password change failed

PatchDog

New Member
Apr 26, 2010
21
0
1
I am getting an error trying to change the password on the Joomla template. I am following the Wiki and this is what I am getting.

Code:
joomla:~# mysqladmin -u root -p admin
Enter password:
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user 'root'@'localhost' (using password: YES)'

What am I missing here??? It cant be that difficult. Using Proxmox 1.5
 
I have done that. If I imput a password afterwards I still get prompted to input a new password. And I always get the same error.
 
no, you posted that you did not.

enter the command, confirm with the current password (admin) and its changed.
 
Ok I deleted the VM and recreated a new one. log into it and this is the first thing I do. I am still getting the same error.

Code:
joomla:~# mysqladmin -u root -p admin mynewpassword
Enter password:mynewpassword
mysqladmin: connect to server at 'localhost' failed
error: 'Access denied for user [EMAIL="'root'@'localhost'"]'root'@'localhost'[/EMAIL] (using password: YES)'
joomla:~#


What am I doing wrong?
 
your are not entering the command I posted. enter this to change the password for example to 'secret':

Code:
mysqladmin -u root -p password secret

on the prompt, give the existing root password (admin).
 
patchdog,

"-p" and "password" are two indipendent commands/options to mysqladmin

"- p" tells mysqladmin "i will provid my current password later"

"password secret" tells mysqladmin "i want to change my current password to the word that follows, ie: 'secret' "

Marco
 
there is something error in database connection check config file
 
OK I got it. It was my lack of command knowledge and not knowing that "-p password" was the commmand itself. I was inputing "-p admin" thinking -p was the command and I had to supply the passord afterwards.

Thanks everyone for your help. I live in a windows world and still a linux noob. Always learning that why I love computers!
 
yes, these mysql commands are confusing, glad to help.