Title
Create new category
Edit page index title
Edit category
Edit link
Reconfiguring xDeTECH Services
Configuration properties are stored in files in the config directory of each service. The service must be restarted for any changes to these services to take effect.
Open a terminal window and log in to a session on the container.
List running processes:
ps -ef | grep sentinelExample output shows three java processes, from top to bottom: VCDx, VGSx and VGSx tester. The process id (PID) is the leftmost number listed.
Kill the process you want to reconfigure:
kill -9 {PID}wherePIDrepresents the Process ID. To kill VGSx in the example above, usekill -9 8893Change to the config directory for the service:
cd {service-folder}/configwhereservice-folderis one ofsentinel-vcdx,sentinel-vgsxorsentinel-vgsx-testerUpdate the configuration file, either
application.propertiesorapplication.yml, using a console editor of your choice (examplevi). Alternatively, copy the file from the container, edit it on your desktop and copy it back.Change directory to the bin directory of the updated service. For example:
cd sentinel-vgsx/biRestart the service as a background task:
./startup.sh &Check the service is running. You can check the service logs listed in the directory structure above, and ping the service to be sure.
List running services:
ps -ef | grep sentinelPing the services:
For VCDx: curl localhost:8099/actuator/health Returns:
For VGSx: curl localhost:8080/pingReturns:
For VGSx Tester: curl localhost:8081/pingReturns:
Check the service logs. Logs are stored in the service’s logs directory. You can type cat {log name} to see that the service has started up without errors.