Getting Started With Docker (Security Mode)
Warning
Information in this page may be outdated.
This section describes how to run device-onvif-camera with docker and EdgeX security mode.
1. Build docker image
Build docker image named edgex/device-onvif-camera:0.0.0-dev with the following command:
make docker
2. Prepare edgex-compose/compose-builder
- Download the edgex-compose
- Change directory to the
edgex-compose/compose-builder
3. Deploy services with the following command:
make run ds-onvif-camera
3.1 Check whether the services are running from Consul
- Get the consul token for Consul Login
$ make get-consul-acl-token 14891947-51b3-603d-9e35-628fb82993f4
- Navigate to
http://localhost:8500/
4. Add the Username and Password for the Onvif Camera
curl --location --request POST 'http://0.0.0.0:59984/api/v3/secret' \
--header 'Content-Type: application/json' \
--data-raw '{
"apiVersion" : "v3",
"secretName": "bosch",
"secretData":[
{
"key":"username",
"value":"administrator"
},
{
"key":"password",
"value":"Password1!"
},
{
"key":"mode",
"value":"digest"
}
]
}'
5. Add the device profile to EdgeX
Change directory back to the device-onvif-camera
and add the device profile to core-metadata service with the following command:
curl http://localhost:59881/api/v3/deviceprofile/uploadfile \
-F "file=@./cmd/res/profiles/camera.yaml"
6. Add the device to EdgeX
Add the device data to core-metadata service with the following command:
curl -X POST -H 'Content-Type: application/json' \
http://localhost:59881/api/v3/device \
-d '[
{
"apiVersion" : "v3",
"device": {
"name":"Camera003",
"serviceName": "device-onvif-camera",
"profileName": "onvif-camera",
"description": "My test camera",
"adminState": "UNLOCKED",
"operatingState": "UNKNOWN",
"protocols": {
"Onvif": {
"Address": "192.168.12.148",
"Port": "80",
"AuthMode": "digest",
"SecretName": "bosch"
}
}
}
}
]'
Check the available commands from core-command service:
$ curl http://localhost:59882/api/v3/device/name/Camera003 | jq .
{
"apiVersion" : "v3",
"deviceCoreCommand" : {
"coreCommands" : [
{
"get" : true,
"set" : true,
"name" : "DNS",
"parameters" : [
{
"resourceName" : "DNS",
"valueType" : "Object"
}
],
"path" : "/api/v3/device/name/Camera003/DNS",
"url" : "http://edgex-core-command:59882"
},
...
{
"get" : true,
"name" : "StreamUri",
"parameters" : [
{
"resourceName" : "StreamUri",
"valueType" : "Object"
}
],
"path" : "/api/v3/device/name/Camera003/StreamUri",
"url" : "http://edgex-core-command:59882"
}
],
"deviceName" : "Camera003",
"profileName" : "onvif-camera"
},
"statusCode" : 200
}
7. Execute a Get Command
$ curl http://0.0.0.0:59882/api/v3/device/name/Camera003/Users | jq .
{
"apiVersion" : "v3",
"event" : {
"apiVersion" : "v3",
"deviceName" : "Camera003",
"id" : "c0826f49-2840-421b-9474-7ad63a443302",
"origin" : 1639525215434025100,
"profileName" : "onvif-camera",
"readings" : [
{
"deviceName" : "Camera003",
"id" : "d4dc823a-d75f-4fe1-8ee4-4220cc53ddc6",
"objectValue" : {
"User" : [
{
"UserLevel" : "Operator",
"Username" : "user"
},
{
"UserLevel" : "Administrator",
"Username" : "service"
},
{
"UserLevel" : "Administrator",
"Username" : "administrator"
}
]
},
"origin" : 1639525215434025100,
"profileName" : "onvif-camera",
"resourceName" : "Users",
"valueType" : "Object"
}
],
"sourceName" : "Users"
},
"statusCode" : 200
}