I figured out the problem. The user and permissions were screwed up somehow. I was able to fix the issues by removing the user and recreating it, granting the appropriate permissions:
DROP USER 'xwiki'@'localhost'; CREATE USER 'xwiki'@'localhost' IDENTIFIED BY 'passwordhere'; GRANT ALL PRIVILEGES ON xwiki.* TO 'xwiki'@'localhost'; FLUSH PRIVILEGES; On Feb 19, 2013, at 2:34 PM, Andrew Havens <[email protected]> wrote: > I am having problems installing and configuring XWiki on a fresh install of > Ubuntu 12.04. I am using the package method described in this tutorial: > http://platform.xwiki.org/xwiki/bin/view/AdminGuide/InstallationViaAPT > > I have tried 3 different packages now and each of them result in different > errors (all of them database configuration related). > > xwiki-enterprise-tomcat7-mysql > xwiki-enterprise-tomcat7-psql > xwiki-enterprise-tomcat6-psql > > I think there is either a missing step, or the package is not setting the > configuration properly. I have used the dbconfig installer to set the > passwords for mysql root and xwiki user, so I don't know what else to try > other than another package, or configure manually. > > Can anyone confirm this bug and/or provide a solution? > > Thanks, > > Andrew Havens > _______________________________________________ users mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/users
