21 Aug
2007
21 Aug
'07
11:25 a.m.
yaser hassan wrote:
*I opened the mysql command line with runing "C:\mysql\bin\mysql.exe", and typed your command :* *mysql-e 'update user set password=password("abc123") where user="kohaadmin"';* *but it gave me syntax error,**please try to write the mysql command exactly.*
Two mistakes: (*) there must be a space after "mysql" (*) the database name is required as the first arg mysql Koha -e 'update user set password=password("abc123") where user="kohaadmin"' HTH! rickw