Revision 3088
Added by Matt Jones about 18 years ago
lib/configure-restart.jsp | ||
---|---|---|
56 | 56 |
<p class="section">Restarting Metacat</p> |
57 | 57 |
<p>The simplest way to restart metacat is to restart the entire servlet engine. |
58 | 58 |
For Tomcat, this would mean calling "$TOMCAT_HOME/bin/tomcat.sh restart" or |
59 |
an equivalent command appropriate to your operating system. |
|
59 |
an equivalent command appropriate to your operating system. After restarting, |
|
60 |
you can access your new Metacat server at the URL: |
|
61 |
<a href="<%= request.getScheme() + "://" + |
|
62 |
request.getServerName() + ":" + request.getServerPort() + |
|
63 |
request.getContextPath() %>"><%= request.getScheme() + "://" + |
|
64 |
request.getServerName() + ":" + request.getServerPort() + |
|
65 |
request.getContextPath() %></a> |
|
60 | 66 |
</p> |
61 | 67 |
|
62 | 68 |
</body> |
lib/configure.jsp | ||
---|---|---|
76 | 76 |
</p> |
77 | 77 |
<br clear="right"/> |
78 | 78 |
|
79 |
<form method="POST" action="/knb/metacat">
|
|
79 |
<form method="POST" action="<%= request.getContextPath() %>/metacat">
|
|
80 | 80 |
|
81 | 81 |
<p class="section">All properties (unsorted, need to fix)</p> |
82 | 82 |
|
Also available in: Unified diff
Removed the hadcoded servlet context and instead get it from the HTTP request to allow the config files to be installed in any context.