[Koha-devel] Problems installation in beta2

Marc Chantreux marc.chantreux at biblibre.com
Tue May 27 22:09:12 CEST 2008


hello

On Tue, May 27, 2008 at 03:07:13PM -0400, Roxana Luz Fleipaz wrote:
> Hello friends
> t/Labels....................DBI
> connect('dbname=koha;host=localhost;port=3306','kohaadmin',...) failed:
> Access denied for user 'kohaadmin'@'localhost' (using password: YES) at

looks like you forgot to grant access to kohaadmin.

mysql_grant_access () { 
        local base login password
        base="$1" login="$2" password="$3"
cat << GRANTACCESS | mysql "$base"
grant all on $base.* to '$login'@'localhost' identified by '$password';
flush privileges;
GRANTACCESS
}

If you are a debian user, look at
http://musil.biblibre.com/koha/README.install_koha_on_fresh_debian

regards,

-- 
Marc Chantreux
BibLibre, expert en logiciels libres pour l'info-doc
http://biblibre.com




More information about the Koha-devel mailing list