Skip to content

Commit c8e2047

Browse files
Pogrebnyak, SergeiPogrebnyak, Sergei
authored andcommitted
Minor cleanup
1 parent e96249c commit c8e2047

File tree

1 file changed

+25
-22
lines changed

1 file changed

+25
-22
lines changed

README.md

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,31 @@ Run ```docker port cc``` command to find out its published port
1414
8091/tcp -> 0.0.0.0:32769
1515
```
1616

17-
This will start up an empty Command Central with the HTTPS port exposed.
17+
This will start an empty Command Central with the HTTPS port exposed.
1818
Open published port in the browser, for example https://0.0.0.0:32769/
19-
to see Command Central login page
19+
to see Command Central login page.
2020

21-
Default login credentials are Administrator/manage.
21+
Login with default credentials as Administrator/manage.
2222

2323
NOTE it will take up to a minute for the server to start accepting HTTP requests.
2424

2525
## Registering an existing Software AG installation
2626

2727
You can connect any 9.x or 10.x Software AG installation that has a running Software AG Platform Manager (SPM).
2828

29-
Simply point to SPM host:port by running:
29+
Simply point to running SPM host:port:
3030

3131
```bash
32-
docker exec cc sagcc add landscape nodes alias=mynode1 url=http://IP:8092 -e 200
32+
docker exec cc sagcc add landscape nodes alias=mynode1 url=http://IP:8092 -e OK
3333
```
3434

35-
If this is succesfull the output will be ```200 OK```
35+
Succesfull registration will report ```200 OK```
3636

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.
3938

4039
## Launching a new empty Software AG installation
4140

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.
4342

4443
Run Command Central node container with a link to 'cc' container
4544

@@ -50,34 +49,37 @@ docker run --name n1 -d -P --link cc softwareag/commandcentral:10.1.0.1-node
5049
By default node container will auto register itself with Command Central using
5150
container's internal id.
5251

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.
5653

5754
Connect both containers to the same network:
5855

5956
```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
6360
```
6461

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).
6663

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:
6867

6968
```bash
7069
docker-compose run --rm init
7170
```
7271

72+
The init service will bring up Command Central container and two
73+
test managed nodes.
74+
7375
When it's done running open [Command Central Web UI](https://0.0.0.0:8091)
7476

75-
Command Central will have two nodes:
77+
Command Central will show two nodes:
7678

7779
* one auto-registered with container id as node alias
7880
* second one registered with as 'test2'
7981

80-
After a minute or so they both will come online
82+
After a minute or so they both will come online.
8183

8284
Install, patch, configure and use Software AG software on these
8385
test nodes. Recycle them when no longer needed:
@@ -95,10 +97,11 @@ Software AG landscape.
9597

9698
Please see [Command Central](https://github.com/SoftwareAG/sagdevops-cc-server) project Docker secion for details.
9799

98-
## Building Docker images usign Command Central Builder
100+
## Building Docker images using Command Central Builder
99101

100-
You can build custom images with Softweare AG software using
101-
```softwareag/commandcentral:10.1.0.1-builder``` image.
102+
You can build custom images with Software AG software using
103+
```softwareag/commandcentral:10.1.0.1-builder``` image and
104+
Command Central templates.
102105

103106
Please see [Command Central Docker builder]() project.
104107

0 commit comments

Comments
 (0)