Start and stop ingress components
- Last UpdatedApr 19, 2024
- 1 minute read
To control data ingress, you can start and stop the ingress components of an AVEVA Events to CONNECT whenever necessary. By default, all currently configured ingress components are started.
Start an ingress component
Complete the following steps to start an individual ingress component:
1. Use any of the Configuration tools capable of making HTTP requests.
2. Run a POST command to the following endpoint, replacing <ComponentId> with the ingress component that you want to start: http://localhost:5590/api/v1/administration/<ComponentId>/Start
Note: 5590 is the default port number. If you selected a different port number, replace it with that value.
Example using curl:
To start the agent ingress component:
curl.exe --ntlm --negotiate -u <UserName> -d "" -X POST "http://localhost:5590/api/v1/Administration/<ComponentId>/Start"
Stop an ingress component
Complete the following steps to stop an individual ingress component:
1. Start any configuration tool capable of making HTTP requests.
2. Run a POST command to the following endpoint, replacing <ComponentId> with the ingress component that you want to stop: http://localhost:5590/api/v1/administration/<ComponentId>/Stop
Note: 5590 is the default port number. If you selected a different port number, replace it with that value. Example using curl:
Example using curl:
To stop the agent ingress component:
curl.exe --ntlm --negotiate -u <UserName> -d "" -X POST "http://localhost:5590/api/v1/Administration/<ComponentId>/Stop"