Please, Post your log file here.
Ambuj Tiwari wrote: > > I'm using below code in roller-custom.properties file. > > installation.type=auto > database.configurationType=jdbc > database.jdbc.driverClass=com.mysql.jdbc.Driver > database.jdbc.connectionURL=jdbc:mysql://localhost:3306/rollerdb > database.jdbc.username=scott > database.jdbc.password=tiger > mail.configurationType=properties > mail.hostname=smtp-server.example.com > mail.username=scott > mail.password=tiger > > I have also given all the privileges by executing below command > > grant all privileges on rollerdb.* to [EMAIL PROTECTED] identified by > 'tiger'; > > Still, i'm getting the same problem. > > > > On Thu, Sep 25, 2008 at 3:53 PM, Harsh Gupta > <[EMAIL PROTECTED]>wrote: > >> >> True, Grant proper privileges to roller-db. Use the following command. >> >> GRANT ALL PRIVILEGES ON roller-db.* TO 'scott'@'%' IDENTIFIED BY 'tiger' >> WITH GRANT OPTION; >> >> >> tanuja v wrote: >> > >> > You can also check roller-custom.properties file. I had encountered >> the >> > same exception and found out from logs that I had a bad database >> > connection. >> > This was because I had missed some necessary lines of code in >> > roller-custom.properties file. >> > >> > >> > On Wed, Sep 24, 2008 at 7:37 AM, Oscar del Rio >> > <[EMAIL PROTECTED]>wrote: >> > >> >> Ambuj Tiwari wrote: >> >> >> >>> I installed Roller and configured it but when I' trying to open " >> >>> http://localhost:8080/roller/" it gives me unexpected error. >> >>> >> >>> Unexpected Exception Status Code 500 Message Roller Weblogger has >> not >> >>> been >> >>> bootstrapped yet Type >> >>> Exception Roller has encountered and logged an unexpected exception. >> >>> Can somebody tell me the reason for this? >> >>> >> >>> >> >> Check the log file, it might give you some hints of what went wrong. >> >> Last time I upgraded I had the same error and the reason turned out to >> be >> >> something corrupted in the database that I had to fix manually. >> >> >> > >> > >> >> -- >> View this message in context: >> http://www.nabble.com/Problem-with-Start-Up-tp19645523s12275p19666859.html >> Sent from the Roller - User mailing list archive at Nabble.com. >> >> > > -- View this message in context: http://www.nabble.com/Problem-with-Start-Up-tp19645523s12275p19682333.html Sent from the Roller - User mailing list archive at Nabble.com.
