Difference between revisions of "Enabling and Disabling Backend Services"

From AgileApps Support Wiki
imported>Aeric
 
imported>Aeric
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
=== Enabling and Disabling Backend Services ===
<includeonly>==== Enabling and Disabling Backend Services ====</includeonly>
During installation, the <tt>[[networking.properties]]</tt> file is created. That file can be used to manually enable and disable backend services for an existing installation.
During installation, the <tt>[[networking.properties]]</tt> file is created. That file can be used to manually enable and disable backend services for an existing installation.


Line 5: Line 5:


;To view the server list:
;To view the server list:
#Open <tt>longjump_installation/tomcat/conf/RN/networking.properties</tt>
#Open <tt>{install-dir}/profiles/IS_default/configuration/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 19: Line 19:
#Save the file
#Save the file
#[[Restart the Application Server]]
#[[Restart the Application Server]]
<noinclude>


''Learn More:''
[[Category:Installation]]
:* [[networking.properties]]
</noinclude>
:* [[Manually Configuring Backend Services]]

Latest revision as of 11:23, 16 October 2019

During installation, the networking.properties file is created. That file can be used to manually enable and disable backend services for an existing installation.

Warn.png

Important: Each background service should run on only one server.

To view the server list
  1. Open {install-dir}/profiles/IS_default/configuration/tomcat/conf/RN/networking.properties
    Servers are listed in this format: xxxxx_manager_instance=1
    where "xxxxx" is one of "import", "report", etc.
To Disable a service
  1. Add a "#" character before the xxxxx_manager_instance=1 command
    # report_manager_instance=1
  2. Save the file
  3. Restart the Application Server
To Enable a service
  1. Remove the "#" character from the xxxxx_manager_instance=1 command
    report_manager_instance=1
  2. Save the file
  3. Restart the Application Server