NIHVIVO-3228 Warn installers not to create Context elements server.xml unless they include the necessary parameters.
This commit is contained in:
parent
1574966f8e
commit
47600e79d2
1 changed files with 19 additions and 6 deletions
|
@ -807,17 +807,30 @@
|
||||||
<p>
|
<p>
|
||||||
Edit Tomcat's conf/server.xml and add the following attribute to each of the
|
Edit Tomcat's conf/server.xml and add the following attribute to each of the
|
||||||
Connector elements: URIEncoding="UTF-8".
|
Connector elements: URIEncoding="UTF-8".
|
||||||
|
</p>
|
||||||
<pre>
|
<pre>
|
||||||
<Server ...>
|
<Server ...>
|
||||||
<Service ...>
|
<Service ...>
|
||||||
<Connector ... URIEncoding="UTF-8"/>
|
<Connector ... URIEncoding="UTF-8"/>
|
||||||
...
|
...
|
||||||
</Connector>
|
</Connector>
|
||||||
</Service>
|
</Service>
|
||||||
</Server>
|
</Server>
|
||||||
</pre>
|
</pre>
|
||||||
|
<h4>Take care when creating Context elements</h4>
|
||||||
|
<p>
|
||||||
|
Each of the webapps in the VIVO distribution (VIVO and Solr) includes a "context fragment" file,
|
||||||
|
containing some of the deployment information for that webapp.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
Tomcat allows you to override these context fragments by adding Context elements to "server.xml".
|
||||||
|
If you decide to do this, be sure that your new Context element includes the necessary
|
||||||
|
deployment parameters from the overridden context fragment.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
See <a href="#tomcat_connector">Section X</a> below,
|
||||||
|
for an example of overriding the VIVO context fragment.
|
||||||
|
</p>
|
||||||
|
|
||||||
<h3 id="start_tomcat">VII. Start Tomcat </h3>
|
<h3 id="start_tomcat">VII. Start Tomcat </h3>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Add table
Reference in a new issue