diff options
author | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-09-26 10:04:10 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-11-14 14:38:52 +0530 |
commit | 39f345954434553d10e0cea114e15e0521ec9471 (patch) | |
tree | 652c0dae69f8238c41f903d9697160e3b3ed2960 /deployment/http | |
parent | 8e14f39a1c41a2b5bf793877926b312e4b6102d4 (diff) |
Migrate onap-cli-schema into open-cli-schema
Issue-Id: CLI-66
Change-Id: I719719194bc5f21f4316380e606ce1a58f0f046c
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'deployment/http')
-rw-r--r-- | deployment/http/lighttpd/lighttpd.conf | 2 | ||||
-rw-r--r-- | deployment/http/web/index.html | 63 | ||||
-rw-r--r-- | deployment/http/web/occ.html | 2 |
3 files changed, 55 insertions, 12 deletions
diff --git a/deployment/http/lighttpd/lighttpd.conf b/deployment/http/lighttpd/lighttpd.conf index 8f88a912..03765bf8 100644 --- a/deployment/http/lighttpd/lighttpd.conf +++ b/deployment/http/lighttpd/lighttpd.conf @@ -1,4 +1,4 @@ -server.document-root = "/var/www-data/servers/onap-cli/" +server.document-root = "/var/www-data/servers/open-cli/" server.username = "www-data" server.groupname = "www-data" server.port = 80 diff --git a/deployment/http/web/index.html b/deployment/http/web/index.html index f722b657..a8059671 100644 --- a/deployment/http/web/index.html +++ b/deployment/http/web/index.html @@ -1,12 +1,55 @@ -<!DOCTYPE html><html><head><link rel="icon" href="./onap-cli.png"> -<meta charset="utf-8"><title>ONAP CLI</title><style></style> -<script> -function redirectToConsole(){ - window.location.href="http://"+ window.location.hostname + ":9090"; -} -</script> -</head> - -<body onload="showSlides()" style="background-color: white;color: black"> +<!DOCTYPE html><html><head><link rel="icon" href="./open-cli.png"> +<meta charset="utf-8"><title>ONAP CLI</title><style></style></head><body id="preview"> +<h1><a id="ONAP_Commandline_interface_CLI_0"></a>ONAP Command-line interface (CLI)</h1> +<p style="color:blue"><strong>One Command to command whole Onap !!</strong></p> +<p>Provides unified commands to operate ONAP from Linux console and Web console.</p> + +<h2><a id="Download_42"></a>To download</h2> +<p style="color:red">Please download ONAP CLI <a href="./onap-cli.zip">here</a></p> + +<h3><a id="Download_42"></a>To install</h3> +<p>Please follow the instructions given below for installing ONAP CLI.</p> +<ol> +<li>Un-zip the above download file into <b>/opt/onap/cli folder</b></li> +<li>Run the following commands: +<br>export ONAP_CLI_HOME=$CLI_INSTALL_DIR +<br>export CLI_PRODUCT_VERSION=onap-1.1 +<br> +<br>cd $CLI_INSTALL_DIR +<br> +<br>if [ ! -d ./data ]; then mkdir ./data; fi +<br>if [ ! -d ./onap-cli-schema ]; then mkdir ./onap-cli-schema; fi +<br> +<br>chmod +x ./bin/onap.sh +<br> +<br>#Make onap available in path +<br>ln ./bin/onap.sh $CLI_BIN +<br> +<br>#Print the version +<br>onap -v</li> +</ol> + +<h2><a id="Console_42"></a>Web Command console</h2> +<p style="color:blue">To open Console, Click <img src="./onap-cli.png" alt="Web Command console" style="width:30px;height:22px;" onclick="redirectToConsole();"> </p> + +<h2><a id="To_Run_a_command_12"></a>To Run a command</h2> + +<p>Configure the following environment variables, before using it in Linux console:</p> +<ol> +<li><strong>HOST_URL</strong> - Onap Micro service bus(MSB) URL or a service URL</li> +<li><strong>HOST_USERNAME</strong> - Onap user name</li> +<li><strong>HOST_PASSWORD</strong> - Onap user password</li> +</ol> + +<p>Type <strong>onap <command></strong> from Linux console.</p> + +<h2><a id="To_Run_in_Interactive_mode_16"></a>To Run in Interactive mode</h2> +<p>Type <strong>onap</strong> from linux console</p> + +<h2><a id="More_details_42"></a>More details</h2> +<p><a href="https://wiki.onap.org">https://wiki.onap.org</a></p> + +<h2><a id="Download_42"></a>To download</h2> +<p style="color:red">Please download ONAP CLI <a href="./open-cli.zip">here</a></p> </body></html> diff --git a/deployment/http/web/occ.html b/deployment/http/web/occ.html index de2daee5..feb94b97 100644 --- a/deployment/http/web/occ.html +++ b/deployment/http/web/occ.html @@ -2,7 +2,7 @@ <html> <head> <title>OCC</title> - <link rel="icon" type="image/png" href="./onap-cli.png"> + <link rel="icon" type="image/png" href="./open-cli.png"> <link rel="stylesheet" href="./css/index.css" /> <link rel="stylesheet" href="./css/xterm.css" /> <link rel="stylesheet" href="./css/xterm_customize.css" /> |