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
You can start new Command Central server by running the container:
24
23
25
24
```bash
26
-
docker run --name cc -d -p 8091 --network ccnetwork store/softwareag/commandcentral:10.1-server
25
+
docker run --name cc -d -p 8091 --network ccnetwork store/softwareag/commandcentral:10.2-server
27
26
```
28
27
29
28
Run ```docker port cc```command to find out its published port
@@ -33,7 +32,15 @@ Run ```docker port cc``` command to find out its published port
33
32
```
34
33
35
34
This will start an empty Command Central with the HTTPS port exposed.
36
-
Open published port in the browser, for example https://0.0.0.0:32769/
35
+
36
+
To check the Command Central container logs run ```docker logs cc```.
37
+
The output should look similiar to this:
38
+
39
+
```bash
40
+
2018/04/17 23:00:42 INFO # Command Central version: 10.2.0.0001-0195
41
+
```
42
+
43
+
Open published port in the browser, for example https://0.0.0.0:32769/
37
44
to see Command Central login page.
38
45
39
46
Login with default credentials as Administrator/manage.
@@ -61,66 +68,66 @@ For development or testing purposes you can launch an empty Software AG managed
61
68
Run Command Central node container on the 'ccnetwork' network:
62
69
63
70
```bash
64
-
docker run --name n1 -d -P --network ccnetwork store/softwareag/commandcentral:10.1-node
71
+
docker run --name n102 -d -P --network ccnetwork store/softwareag/commandcentral:10.2-node
65
72
```
66
73
67
74
By default node container will auto register itself with Command Central using
68
75
container's internal id.
69
76
70
77
After a minute or so the managed node status will change to green (ONLINE).
71
78
79
+
NOTE that you can add launch and register older versions of Softwarte AG managed installation
80
+
for which a corresponding docker image is available. For example
81
+
82
+
```bash
83
+
docker run --name n101 -d -P --network ccnetwork store/softwareag/commandcentral:10.1-node
84
+
```
85
+
72
86
## Create custom Command Central image
73
87
74
-
You tune up certain aspects of Command Central by modifying its configuration files and creating a custom image with the changes.
88
+
You can tune up certain aspects of Command Central by modifying its configuration files and creating a custom image with the changes.
75
89
76
-
For example, you can optimize your local template development or CI process by instructing Command Central to skip restart of runtimes at the end of composite template application.
90
+
For example, you can optimize Command Central for template development or CI process by instructing Command Central to skip restart
91
+
of runtimes at the end of composite template application, register repositories and license files:
77
92
78
93
```dockerfile
79
-
FROM store/softwareag/commandcentral:10.1-server
94
+
FROM store/softwareag/commandcentral:10.2-server
80
95
# skip runtimes restart
81
96
RUN echo com.softwareag.platform.management.client.template.composite.skip.restart.runtimes=true>>$SAG_HOME/profiles/CCE/configuration/config.ini
82
97
```
83
98
84
99
Build the image and run the container:
85
100
86
101
```bash
87
-
docker build -t my/ccserver:10.1.
88
-
docker run --name cc -d -p 8091 --network ccnetwork my/ccserver:10.1
102
+
docker build -t my/ccserver:10.2 .
103
+
docker run --name mycc -d -p 8091 --network ccnetwork my/ccserver:10.2
0 commit comments