Revision 3088
Added by Matt Jones about 18 years ago
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> |
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.