Open GoogleCodeExporter opened 9 years ago
Same failure on ubuntu 10.04 LTS with official java 1.6.0_24 and system tomcat
6.0.24
Original comment by steve.pi...@gmail.com
on 28 Feb 2012 at 10:58
Solved.
For those who may come behind me:
Make sure the dir:
$CATALINA_BASE/db
is there and writable by the tomcat process.
On Ubuntu, that's /var/lib/tomcat6 so:
sudo mkdir /var/lib/tomcat6/db
sudo chown tomcat6:tomcat6 /var/lib/tomcat6/db/
Original comment by steve.pi...@gmail.com
on 29 Feb 2012 at 12:47
I had the same problem. Steve's solution fixed it. Thanks! :)
Original comment by cosmin.s...@gmail.com
on 25 May 2012 at 1:59
The quickest (and ugliest) way to handle the issue is to run the tomcat process
with root/admin privileges (although I admit Steve's solution is more elegant)
- will do the trick in linux/win7, and won't be necessary in most XP
installations.
Since in the upcoming version of wavsep, some specific test cases will require
wavsep to run as root, I'm still not sure how to address this issue,
but my current intention to to find a way to mitigate it by storing the derby
repository in a location owned by the tomcat user.
Original comment by sectoola...@gmail.com
on 30 May 2012 at 10:51
This problem occurs on Ubuntu 11.10 with Tomcat7 even after following the above
fixes. Any suggestions?
Original comment by m...@errancarey.com
on 17 Aug 2012 at 6:10
In newer version, the catalina base that is passed to tomcat is
/usr/share/tomcat6 which has symbolic links pointing to /var/lib/tomcat6
directories. So you need to create a new symbolic link db which points to
directory /var/lib/tomcat6/db as below:
cd /usr/share/tomcat6
ln -s /var/lib/tomcat6/db
Make sure you do this with root user.
Original comment by casaraw...@qualys.com
on 2 Jul 2015 at 9:00
Original issue reported on code.google.com by
steve.pi...@gmail.com
on 28 Feb 2012 at 9:30Attachments: