Changes between Version 20 and Version 21 of xQTLAdministratorInstall
- Timestamp:
- 2011-09-01T10:46:05+02:00 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
xQTLAdministratorInstall
v20 v21 22 22 You are now done setting up :)[[BR]]PLEASE NOTICE: For subsequent starts of the application, use:[[BR]][[BR]] 23 23 `ant -f molgenis_apps/xqtl_dev.xml`[[BR]][[BR]] 24 To avoid regeneration and recompilation. Things you can do next are..24 To avoid regeneration and recompilation. It calls the default target '`run`'. Things you can do next are.. 25 25 [[BR]] 26 26 * Change the admin password[[BR]] … … 36 36 #!html 37 37 <h2 style="color: blue"> 38 Stable freeze <font color="green"><b>WORKING</b></font>38 Development & Deployment 39 39 </h2> 40 40 }}} 41 41 42 Run these checkouts instead:[[BR]][[BR]] 43 `svn co -r 8800 http://www.molgenis.org/svn/molgenis/trunk/ molgenis`[[BR]] 44 `svn co -r 8800 http://www.molgenis.org/svn/molgenis_apps/trunk/ molgenis_apps`[[BR]] 45 `svn update -r 8814 molgenis_apps/modules/matrix/org/molgenis/matrix/component`[[BR]] 46 `svn update -r 8815 molgenis_apps/modules/webserver/boot/WebserverGui.java`[[BR]] 42 ''Go into the application source for convenient access to the Ant scripts:''[[BR]] 43 `cd molgenis_apps`[[BR]] 47 44 48 Followed by the same `ant -f molgenis_apps/xqtl_dev.xml make_run` command.[[BR]] 49 You can run the data- and webtest yourself to find out if your version is stable:[[BR]][[BR]] 50 `cd molgenis_apps`[[BR]] 45 '''Run the application on a specified port''', and only this port:[[BR]] 46 `ant -f xqtl_dev.xml runOn -Dport=9000`[[BR]] 47 48 '''Update the application''':[[BR]] 49 `svn update molgenis molgenis_apps`[[BR]] 50 Followed by at least recompilation. This is the 'fast but may fail' option.[[BR]] 51 `ant -f xqtl_dev.xml recompile`[[BR]] 52 For some updates you must remake the application, which includes MOLGENIS generation and recompilation. This is the 'safe but slow' option.[[BR]] 53 `ant -f xqtl_dev.xml make`[[BR]] 54 55 You can '''run the data- and webtest''' yourself to find out if your version is stable:[[BR]] 51 56 `ant -f xqtl_dev.xml test`[[BR]] 52 57 `ant -f xqtl_selenium.xml webtest` (if this fails: try running as root due to permissions) 58 59 You can '''remove all generated and compiled code''':[[BR]] 60 `ant -f xqtl_dev.xml clean`[[BR]] 61 And even delete the HSQL database:[[BR]] 62 `ant -f xqtl_dev.xml deletedb`[[BR]] 63 64 For '''further details''' you can consult the source of the various scripts: 65 [http://www.molgenis.org/svn/molgenis_apps/trunk/xqtl_dev.xml development], [http://www.molgenis.org/svn/molgenis_apps/trunk/xqtl_selenium.xml webtesting], [http://www.molgenis.org/svn/molgenis_apps/trunk/xqtl_jar.xml jarbuilding]. 53 66 54 67