...
- Disable all DPOD services except Derby, UI and Reports
Edit (with vi) /etc/sysconfig/MonTier and find the line starting with
Code Block SERVICES_FIRST_GROUP="MonTier-Derby MonTier-es-raw-trans-Node-1"
and remove all components except for MonTier-Derby:
Code Block SERVICES_FIRST_GROUP="MonTier-Derby"
Comment out the following lines:
Code Block SERVICES_SECOND_GROUP="MonTier-es-raw-trans-Node ..." SERVICES_THIRD_GROUP="MonTier-HK-ESRetention" ... SERVICES_FORTH_GROUP="MonTier-AggAgent- ..." SERVICES_FIFTH_GROUP="MonTier-BalancerAgent ..." SERVICES_SIXTH_GROUP="MonTier-WsmAgent-1 ..."
Change
Code Block SERVICES_SEVENTH_GROUP="MonTier-UI MonTier-Reports MonTier-HK-WsmKeepalive MonTier-HK-SyslogKeepalive"
to remove all components except MonTier-UI and MonTier-Reports
Code Block SERVICES_SEVENTH_GROUP="MonTier-UI MonTier-Reports"
Change DPOD's Elastic Search alias entry in /etc/hosts to direct to the internal console:
Code Block vi /etc/hosts
Change the line that directs montier-es to point to the internal Console IP Address (1.1.1.1 in the example below)
Code Block 1.1.1.1 montier-es
Edit DPOD UI configuration file:
Code Block vi /app/ui/MonTier-UI/conf/MonTierUI.conf
and change the port on the following line
Code Block elasticsearch.discovery.zen.ping.unicast.hosts=montier-es:9300
to the new port
Code Block elasticsearch.discovery.zen.ping.unicast.hosts=montier-es:9302
Comment out the following lines:
Code Block elasticsearch.node.name=MonTier-UI elasticsearch.network.host=montier-es-http elasticsearch.transport.tcp.port=9320 elasticsearch.http_node.host=montier-es-http elasticsearch.http_node.port=9200
Start configuration database service
Code Block start_services.sh -o derby
Enter ij to issue SQL commands
Code Block language bash linenumbers true ij ij
Update the SystemParameter SQL table:
Code Block UPDATE SystemParameter SET value='false' WHERE name='agents.management.enabled';
Update the SystemParameter SQL table:
Code Block UPDATE SystemParameter SET value='false' WHERE name = 'system.internal_self_service.is_internal';
- If you wish to let the external self service users access the DevOps Services Portal, change the following system parameters in the external self service console:
a. Internal Self Service Address - enter the address of the internal self service portal
b. Internal Self Service User Name - the DPOD user name that will be used to access the internal portal - it is recommended to create a new user for this purpose
c. Internal Self Service Password - the password for the user that will be used to access the internal portal
d. Internal Self Service Webserver Port - (defaults to 443) the webserver port for the internal self service portal - change this value only if advised.
...