Difference between revisions of "Enabling and Disabling Backend Services"
From AgileApps Support Wiki
imported>Aeric |
imported>Aeric |
||
Line 5: | Line 5: | ||
;To view the server list: | ;To view the server list: | ||
#Open <tt> | #Open <tt>{installationDir}/tomcat/conf/RN/networking.properties</tt> | ||
#:Servers are listed in this format: <tt>xxxxx_manager_instance=1</tt><br/>where "xxxxx" is one of "import", "report", etc. | #:Servers are listed in this format: <tt>xxxxx_manager_instance=1</tt><br/>where "xxxxx" is one of "import", "report", etc. | ||
Line 22: | Line 22: | ||
''Learn More:'' | ''Learn More:'' | ||
:* [[networking.properties]] | :* [[networking.properties]] | ||
:* [[ | :* [[Configuring Backend Services]] | ||
<noinclude> | <noinclude> | ||
[[Category:Installation]] | [[Category:Installation]] | ||
</noinclude> | </noinclude> |
Revision as of 22:34, 21 September 2015
During installation, the networking.properties file is created. That file can be used to manually enable and disable backend services for an existing installation.
- To view the server list
- Open {installationDir}/tomcat/conf/RN/networking.properties
- Servers are listed in this format: xxxxx_manager_instance=1
where "xxxxx" is one of "import", "report", etc.
- Servers are listed in this format: xxxxx_manager_instance=1
- To Disable a service
- Add a "#" character before the xxxxx_manager_instance=1 command
- # report_manager_instance=1
- Save the file
- Restart the Application Server
- To Enable a service
- Remove the "#" character from the xxxxx_manager_instance=1 command
- report_manager_instance=1
- Save the file
- Restart the Application Server
Learn More: