From within MySQL (logged in with admin privileges), you should
GRANT ALL ON jbossportal.* TO 'portalUser'@'%' IDENTIFIED BY
'portualUser_password';
(where the last parameter is the password for portalUser)
and then
GRANT ALL ON jbossportal.* TO 'portalUser'@'localhost' IDENTIFIED BY
'portualUser_password';
Finally, you need to
Flush privileges;
before you exit MySQL for them to take affect.
I hope that helps.
CR
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966238#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...