You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker exec cc sagcc add landscape nodes alias=mynode1 url=http://IP:8092 -e OK
33
33
```
34
34
35
-
If this is succesfull the output will be```200 OK```
35
+
Succesfull registration will report```200 OK```
36
36
37
-
Your Command Central Web UI now shows this node under Installations and all
38
-
discovered managed instances under Instances tab.
37
+
Command Central Web UI will show this managed node under Installations tab with all discovered managed instances under Instances tab.
39
38
40
39
## Launching a new empty Software AG installation
41
40
42
-
For development or testing purposes you can launch and empty Software AG managed installation.
41
+
For development or testing purposes you can launch an empty Software AG managed installation.
43
42
44
43
Run Command Central node container with a link to 'cc' container
45
44
@@ -50,34 +49,37 @@ docker run --name n1 -d -P --link cc softwareag/commandcentral:10.1.0.1-node
50
49
By default node container will auto register itself with Command Central using
51
50
container's internal id.
52
51
53
-
Your Command Central Web UI now shows this new node under Installations but
54
-
it is OFFLINE because of UnknownHostException.
55
-
This is because Command Central container does 'see' node container as they do not share the same network.
52
+
Command Central Web UI will show this new node under Installations but it will be OFFLINE (UnknownHostException) because Command Central container does not 'see' node container.
56
53
57
54
Connect both containers to the same network:
58
55
59
56
```bash
60
-
docker network create
61
-
docker network connect cc cc
62
-
docker network connect cc n1
57
+
docker network create ccnet
58
+
docker network connect ccnet cc
59
+
docker network connect ccnet n1
63
60
```
64
61
65
-
After a minute or the newly connected node change its status to green (ONLINE).
62
+
After a minute or so the managed node status will change to green (ONLINE).
66
63
67
-
## Using compose files for defining complex dev and test environments
64
+
## Using docker-compose files for dev and test environments
65
+
66
+
Run example init service from ```docker-compose.yml``` file:
68
67
69
68
```bash
70
69
docker-compose run --rm init
71
70
```
72
71
72
+
The init service will bring up Command Central container and two
73
+
test managed nodes.
74
+
73
75
When it's done running open [Command Central Web UI](https://0.0.0.0:8091)
74
76
75
-
Command Central will have two nodes:
77
+
Command Central will show two nodes:
76
78
77
79
* one auto-registered with container id as node alias
78
80
* second one registered with as 'test2'
79
81
80
-
After a minute or so they both will come online
82
+
After a minute or so they both will come online.
81
83
82
84
Install, patch, configure and use Software AG software on these
83
85
test nodes. Recycle them when no longer needed:
@@ -95,10 +97,11 @@ Software AG landscape.
95
97
96
98
Please see [Command Central](https://github.com/SoftwareAG/sagdevops-cc-server) project Docker secion for details.
97
99
98
-
## Building Docker images usign Command Central Builder
100
+
## Building Docker images using Command Central Builder
99
101
100
-
You can build custom images with Softweare AG software using
0 commit comments