Removing the 'crowd' Context from the Application URL
For many different reasons, when using the Crowd distribution, you may want to access the Crowd console using http://localhost:8095
instead of http://localhost:8095/crowd
.
To remove the /crowd part from the URL:
In
<Crowd-Install>/build.properties
set the crowd.url variable to the following:# Crowd context root crowd.url=http://localhost:8095/
Run
<Crowd-Install>/build.sh
(UNIX) or<Crowd-Install>\build.bat
(Windows).Change your
<Crowd-Install>/apache-tomcat/conf/server.xml
file to include the following element in the Host section configuration:<Context path="" docBase="../../crowd-webapp" debug="0"> <Manager pathname="" /> </Context>
Sample Host configuration:
<Engine defaultHost="localhost" name="Catalina"> <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true"> <Context path="" docBase="../../crowd-webapp" debug="0"> <Manager pathname="" /> </Context> <Valve className="org.apache.catalina.valves.ErrorReportValve" showReport="true" showServerInfo="false" /> </Host> </Engine>
- Perform a backup of the
crowd.xml
file in<Crowd-Install>/apache-tomcat/conf/Catalina/localhost
to another directory. - From
<Crowd-Install>/apache-tomcat/conf/Catalina/localhost
, remove thecrowd.xml
file to prevent Tomcat from loading the /crowd context. - After the restart, in the Server Settings screen, change the base URL.
最終更新日: 2021 年 10 月 15 日
Powered by Confluence and Scroll Viewport.