I have gone through the steps in https://openspecimen.atlassian.net/wiki/pages/viewpage.action?pageId=1115955 to deploy OS to Tomcat 7. Some essential steps I had to make for on fresh install (after a few Foreign Key Constraint errors thrown by MySQL ) were:
SHOW VARIABLES LIKE ‘%FOREIGN_KEY%’;
If the FOREIGN_KEY_CHECKS=ON then execute the query below
SET GLOBAL FOREIGN_KEY_CHECKS=0;
and remember to set it back when you are done
SET GLOBAL FOREIGN_KEY_CHECKS=1;
After going through these and the steps in the link above, the application was installed successfully but on accessing the app at http://localhost:8080/openspecimen I get a black page. There are not error to report either from the logs. So far the only plugin I have compiled is os-miabis.jar. Any heads up on why this might be the case? Your insights are greatly appreciated.
Regards,
Caesar Olima