Skip to content

Commit bc833e8

Browse files
mramendividya-iyengar
authored andcommitted
Bxmsdoc 2107 master (#11)
* Fixing links that should not be links * QE verification change
1 parent e91d4ec commit bc833e8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/product-assembly_packaging-deploying/src/main/asciidoc/kieserver-configure-central-proc.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ Save the file in a known location, for example, `/opt/maven/settings.xml` .
5959
+
6060
** *org.kie.server.controller.pwd*: password for the account.
6161
+
62-
** *org.kie.server.controller*: the URL for connecting to the API of the {CENTRAL}. Normally, it is http://centralhost:centralport/decision-central/rest/controller , where _centralhost_ and _centralport_ are the host name and port for the {CENTRAL}. If the {CENTRAL} is deployed on OpenShift, remove `decision-central/` from the URL.
62+
** *org.kie.server.controller*: the URL for connecting to the API of the {CENTRAL}. Normally, it is `\http://<centralhost>:<centralport>/decision-central/rest/controller` , where _<centralhost>_ and _<centralport>_ are the host name and port for the {CENTRAL}. If the {CENTRAL} is deployed on OpenShift, remove `decision-central/` from the URL.
6363
+
64-
** *org.kie.server.location*: the URL for connecting to the API of the {KIE_SERVER}. Normally, it is http://serverhost:serverport/kie-server/services/rest/server , where _serverhost_ and _serverport_ are the host name and port for the {KIE_SERVER}.
64+
** *org.kie.server.location*: the URL for connecting to the API of the {KIE_SERVER}. Normally, it is `\http://<serverhost>:<serverport>/kie-server/services/rest/server` , where _<serverhost>_ and _<serverport>_ are the host name and port for the {KIE_SERVER}.
6565
+
6666
** *org.kie.server.id*: the name of a server template. If this server template does not exist on the {CENTRAL}, it is created automatically when the {KIE_SERVER} connects to the {CENTRAL}.
6767
+

docs/product-assembly_packaging-deploying/src/main/asciidoc/kieserver-configure-runservice-proc.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ If you have configured a {KIE_SERVER} to use a Maven repository, you can use an
3131
[subs="verbatim,macros"]
3232
+
3333
----
34-
$ curl --user <username>:<password> -H "Content-Type: application/json" -X PUT -d '{"container-id" : "<containerID>","release-id" : {"group-id" : "<groupID>","artifact-id" : "<artifactID>","version" : "<version>"}}' http://<serverhost>:<serverport>/kie-server/services/rest/server/containers/<containerID>
34+
$ curl --user "<username>:<password>" -H "Content-Type: application/json" -X PUT -d '{"container-id" : "<containerID>","release-id" : {"group-id" : "<groupID>","artifact-id" : "<artifactID>","version" : "<version>"}}' http://<serverhost>:<serverport>/kie-server/services/rest/server/containers/<containerID>
3535
----
3636
+
3737
where:
@@ -52,7 +52,7 @@ For example:
5252
+
5353
[subs="verbatim,macros"]
5454
----
55-
curl --user rhdmAdmin:password@1 -H "Content-Type: application/json" -X PUT -d '{"container-id" : "kie1","release-id" : {"group-id" : "org.kie.server.testing","artifact-id" : "container-crud-tests1","version" : "2.1.0.GA"}}' http://localhost:39043/kie-server/services/rest/server/containers/kie1
55+
curl --user "rhdmAdmin:password@1" -H "Content-Type: application/json" -X PUT -d '{"container-id" : "kie1","release-id" : {"group-id" : "org.kie.server.testing","artifact-id" : "container-crud-tests1","version" : "2.1.0.GA"}}' http://localhost:39043/kie-server/services/rest/server/containers/kie1
5656
----
5757

5858
== Stopping and removing a service from the {KIE_SERVER}
@@ -64,7 +64,7 @@ You can use an API call to stop and remove a service from the {KIE_SERVER}. You
6464
[subs="verbatim,macros"]
6565
+
6666
----
67-
$ curl --user <username>:<password> -X DELETE http://<serverhost>:<serverport>/kie-server/services/rest/server/containers/<containerID>
67+
$ curl --user "<username>:<password>" -X DELETE http://<serverhost>:<serverport>/kie-server/services/rest/server/containers/<containerID>
6868
----
6969
+
7070
where:
@@ -83,5 +83,5 @@ For example:
8383
+
8484
[subs="verbatim,macros"]
8585
----
86-
curl --user rhdmAdmin:password@1 -X DELETE http://localhost:39043/kie-server/services/rest/server/containers/kie1
86+
curl --user "rhdmAdmin:password@1" -X DELETE http://localhost:39043/kie-server/services/rest/server/containers/kie1
8787
----

0 commit comments

Comments
 (0)