From 99162ab850b780947d54b9b3f1505b6d8e800ca8 Mon Sep 17 00:00:00 2001 From: pcoello25 Date: Thu, 6 Oct 2016 08:33:33 +0200 Subject: [PATCH 1/3] [task] Fix rtd images master --- .../gui.md | 12 +- .../user_and_programmer_manual/using_gui.md | 8 +- .../using_hadoop_and_ecosystem.md | 220 ------------------ 3 files changed, 10 insertions(+), 230 deletions(-) diff --git a/doc/manuals/installation_and_administration_manual/gui.md b/doc/manuals/installation_and_administration_manual/gui.md index e6b02e5..9a53f19 100644 --- a/doc/manuals/installation_and_administration_manual/gui.md +++ b/doc/manuals/installation_and_administration_manual/gui.md @@ -176,23 +176,23 @@ Please observe the user management for accessing the GUI or any other FIWARE com Registration must be done one and only once. As an already registered user in the Identity Manager, login (this user will be the admin user). You should be able to see an applications panel, in addition to an organizations panel, in your home tab: -![](doc/images/register_cosmos_gui__apps_panel.png) +![](cosmos-gui/doc/images/register_cosmos_gui__apps_panel.png) Click in the register button of the applications panel and give a name, a description, a URL and a callback URL for the new application. For instance: -![](doc/images/register_cosmos_gui__data.png) +![](cosmos-gui/doc/images/register_cosmos_gui__data.png) Then choose an image for the application, this will be shown as an icon for future users: -![](doc/images/register_cosmos_gui__icon.png) +![](cosmos-gui/doc/images/register_cosmos_gui__icon.png) Finally, manage the roles for this application. If you do not expect to add more roles than the default ones, or you simply do not know about roles, skip this step and finish the user registration: -![](doc/images/register_cosmos_gui__roles.png) +![](cosmos-gui/doc/images/register_cosmos_gui__roles.png) cosmos-gui is now registered: -![](doc/images/register_cosmos_gui__result.png) +![](cosmos-gui/doc/images/register_cosmos_gui__result.png) An important result of the registration process are the OAuth2 credentials that can be inspected by clicking on the appropriate button. These credentials must be configured in cosmos-gui as shown later. @@ -267,7 +267,7 @@ Please observe the usage of `sudo`. This is because the GUI must be able to exec If everything goes well, you should be able to see in a web browser the login page (`http://:`): -![](doc/images/cosmos_gui__init.png) +![](cosmos-gui/doc/images/cosmos_gui__init.png) cosmos-gui typically listens in the TCP/443 port (TLS encryption), but you can change it by editing `conf/cosmos-gui.conf`. diff --git a/doc/manuals/user_and_programmer_manual/using_gui.md b/doc/manuals/user_and_programmer_manual/using_gui.md index ff53f2f..c9b0dae 100644 --- a/doc/manuals/user_and_programmer_manual/using_gui.md +++ b/doc/manuals/user_and_programmer_manual/using_gui.md @@ -9,11 +9,11 @@ Content: ##Login Once installed and run, you can visit `http://:` (adapt the port if you changed it). This page basically prompts the user to login. -![](doc/images/cosmos_gui__init.png) +![](cosmos-gui/doc/images/cosmos_gui__init.png) The login procedure delegates in FIWARE Identity Manager. This means cosmos-gui does not perform any propietary user management from the GUI point of view (as it will be seen, cosmos-gui performs a propietary user management for accessing the Hadoop cluster; that is, particularly, its purpose). Thus, once clicked the login button, we are redirected to `https://account.lab.fiware.org`: -![](doc/images/cosmos_gui__auth.png) +![](cosmos-gui/doc/images/cosmos_gui__auth.png) [Top](#top) @@ -36,7 +36,7 @@ Next coming versions of the GUI will allow the users to explore their HDFS space The only option for the time being is to access to the profile page (see next section). -![](doc/images/cosmos_gui__dashboard.png) +![](cosmos-gui/doc/images/cosmos_gui__dashboard.png) [Top](#top) @@ -45,6 +45,6 @@ The profile section shows the user account details and certain statistics, such This is useful in order to know the credentials the user has in the Cosmos platform. -![](doc/images/cosmos_gui__profile.png) +![](cosmos-gui/doc/images/cosmos_gui__profile.png) [Top](#top) diff --git a/doc/manuals/user_and_programmer_manual/using_hadoop_and_ecosystem.md b/doc/manuals/user_and_programmer_manual/using_hadoop_and_ecosystem.md index b9c1084..ebe73a7 100644 --- a/doc/manuals/user_and_programmer_manual/using_hadoop_and_ecosystem.md +++ b/doc/manuals/user_and_programmer_manual/using_hadoop_and_ecosystem.md @@ -23,11 +23,6 @@ Content:
* [Programming a custom Hive client](#section2.2) * [Java](#section2.2.1) * [Python](#section2.2.2) -* [Oozie](#section3) - * [Oozie CLI](#section3.1) - * [Oozie workflow](#section3.2) - * [Programming a custom Oozie client](#section3.3) - * [Java](#section3.3.1) ##MapReduce @@ -662,218 +657,3 @@ The following code implements a basic Hive client using Python: print i` [Top](#top) - -##Using Oozie - -Oozie is a workflow scheduler system for Apache Hadoop jobs. It allows designing Oozie Workflows, i.e. Directed Acyclical Graphs (DAGs) of actions, which in the end coordinate the execution of the jobs. - -An action can be a MapReduce job, a Pig application, a file system task, or a Java application. Flow control in the DAGs is performed by node -elements providing a certain logic based on the input of the preceding task in the graph (e.g. forks, joins, decision nodes), or when an event (time, whatever) triggers. encies have been met. - -An example of DAG is the following one: - -![Figure 1 - Example of Oozie DAG](oozie_dag.png "Figure 1 - Example of Oozie DAG") - -Oozie workflows definitions are written in hPDL (a XML Process Definition Language similar to JBOSS JBPM jPDL). Oozie workflows can be parameterized (using variables like \${inputDir} within the workflow definition). When submitting a workflow job values for the parameters must be provided. If properly parameterized (i.e. using different output directories) several identical workflow jobs can concurrently. - -Oozie can be used in three ways, command line, Java client API and API REST. - -[Top](#top) - -###Oozie CLI - -In order to use Oozie through commands, it is necessary to install the Oozie client in a remote machine. This client will be able to talk with the Oozie server already installed in the cluster (TCP/11000 port). This [official guidelines](http://oozie.apache.org/docs/4.0.0/DG_QuickStart.html#Client_Installation) will help you to install it. - -Once the client has been setup, you can schedule your jobs by following this other [guidelines](http://oozie.apache.org/docs/4.0.0/DG_Examples.html#Command_Line_Examples). Basically, you have to type a command like this one: - - $ oozie job -oozie http://:11000/oozie -config examples/apps/map-reduce/job.properties -run - -If everything goes well, a job identifier is printed. As can be seen, you must specify the Master Node IP address or hostname, and the path to the Oozie application you want to run (in the above command, we are using the examples given with the Oozie distribution). - -The oozie command can provide per job status information as well: - - $ oozie job -oozie http://:11000/oozie -info - Job ID : 0000014-140116081225611-oozie-oozi-W - ------------------------------------------------------------------------------------------------------------------------------------ - Workflow Name : map-reduce-wf - App Path : hdfs://:8020/user//examples/apps/map-reduce/workflow.xml - Status : RUNNING - Run : 0 - User : - Group : users - Created : 2014-01-16 16:53 - Started : 2014-01-16 16:53 - Last Modified : 2014-01-16 16:53 - Ended : - - - Actions - ------------------------------------------------------------------------------------------------------------------------------------ - ID Status Ext ID Ext Status Err Code - ------------------------------------------------------------------------------------------------------------------------------------ - 0000014-140116081225611-oozie-oozi-W@mr-node RUNNING job_201401151554_0032 RUNNING - - ------------------------------------------------------------------------------------------------------------------------------------` - -Oozie applications consists of a well-known structured directories containing: - -* **lib/**, a directory containing the MR job jar, needed libraries, etc. -* **workflow.xml**, the workflow definition written in hPDL. -* **job.properties**, the values for the parameters used in the workflow definition. - -The programming guide will provide guidelines about how to create your own Oozie applications. - -[Top](#top) - -###Oozie workflow - -Writing Oozie workflows can be a hard task, but in a few words it is necessary to generate a XML document as the one below, containing a list of flow control nodes (e.g. start, kill, end) and actions to be executed. Flow control nodes and actions may be parameterized in the -`job.properties` file. This file must be called `workflow.xml` and must be included in the application folder. - - - - - - ${jobTracker} - ${nameNode} - - - mapred.mapper.class - org.myorg.WordCount.Map - - - mapred.reducer.class - org.myorg.WordCount.Reduce - - - mapred.input.dir - ${inputDir} - - - mapred.output.dir - ${outputDir} - - - - - - - - Something went wrong: ${wf:errorCode('wordcount')} - - - - -All the detailed documentation can be found [here](http://archive.cloudera.com/cdh/3/oozie/WorkflowFunctionalSpec.html). - -Once a workflow is written, it is ready to be executed with the Oozie client as described in the *Using Oozie* section. Only if you a need a custom mechanism to run the workflows, the Java client API and the API REST are recommended (see next sections). - -[Top](#top) - -###Programming a custom Oozie client - -Oozie provides a Java API for custom Java clients development. There is a step-by-step example in this [official link](http://oozie.apache.org/docs/4.0.0/DG_Examples.html#Java_API_Example). - -Additionally, the [API REST](http://oozie.apache.org/docs/4.0.0/WebServicesAPI.html) for Oozie allows you for submitting and running workflows in a REST fashion. - -The programming section of this document will explain you how to create an application taking advantage both of the Oozie API and the Oozie REST API. - -[Top](#top) - -####Java - -Oozie provides a Java API for custom Java clients development. There is a step-by-step example in this [official link](http://oozie.apache.org/docs/4.0.0/DG_Examples.html#Java_API_Example) which is summarized here. - -Add the following lines to your Maven based pom.xml in order to solve the dependencies: - - - - cloudera - https://repository.cloudera.com/artifactory/cloudera-repos/ - - - - - ... - - com.yahoo.oozie - oozie-client - 2.3.2-cdh3u6 - - - -This is the minimum code: - - package com.mycompany.oozieclienttest; - - import java.util.logging.Level; - import java.util.logging.Logger; - import org.apache.oozie.client.OozieClient; - import org.apache.oozie.client.OozieClientException; - import org.apache.oozie.client.WorkflowJob; - import java.util.Properties; - - /** - * Oozie client test. - * - */ - public final class OozieClientTest { - - /** - * - */ - private OozieClientTest() { - } // OozieClientTest - - /** - * - * @param args - */ - public static void main(String[] args) { - // get a OozieClient for local Oozie - OozieClient client = new OozieClient("`[`http://130.206.80.46:11000/oozie/`](http://130.206.80.46:11000/oozie/)`"); - - // create a workflow job configuration and set the workflow application path - Properties conf = client.createConfiguration(); - conf.setProperty(OozieClient.APP_PATH, "hdfs://cosmosmaster-gi:8020/user/frb/examples/apps/map-reduce"); - - // setting workflow parameters - conf.setProperty("nameNode", "hdfs://cosmosmaster-gi:8020"); - conf.setProperty("jobTracker", "cosmosmaster-gi:8021"); - conf.setProperty("outputDir", "output-data"); - conf.setProperty("examplesRoot", "examples"); - conf.setProperty("queueName", "default"); - - // submit and start the workflow job - String jobId = null; - - try { - jobId = client.run(conf); - } catch (OozieClientException ex) { - Logger.getLogger(OozieClientTest.class.getName()).log(Level.SEVERE, null, ex); - } // try catch - - System.out.println("Workflow job submitted"); - - try { - // wait until the workflow job finishes printing the status every 10 seconds - while (client.getJobInfo(jobId).getStatus() == WorkflowJob.Status.RUNNING) { - System.out.println("Workflow job running ..."); - Thread.sleep(10 * 1000); - } // while - } catch (OozieClientException ex) { - Logger.getLogger(OozieClientTest.class.getName()).log(Level.SEVERE, null, ex); - } catch (java.lang.InterruptedException ex) { - Logger.getLogger(OozieClientTest.class.getName()).log(Level.SEVERE, null, ex); - } // try catch catch - - // print the final status o the workflow job - System.out.println("Workflow job completed ..."); - - try { - System.out.println(client.getJobInfo(jobId)); - } catch (OozieClientException ex) { - Logger.getLogger(OozieClientTest.class.getName()).log(Level.SEVERE, null, ex); - } // try catch - } // main - } // OozieClientTest - -[Top](#top) From c560be8ee3d1a6f80b11977e79180e06b2cf1dda Mon Sep 17 00:00:00 2001 From: pcoello25 Date: Thu, 6 Oct 2016 09:07:20 +0200 Subject: [PATCH 2/3] [task] Fix paths --- .../installation_and_administration_manual/gui.md | 12 ++++++------ doc/manuals/user_and_programmer_manual/using_gui.md | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/manuals/installation_and_administration_manual/gui.md b/doc/manuals/installation_and_administration_manual/gui.md index 9a53f19..18e20a6 100644 --- a/doc/manuals/installation_and_administration_manual/gui.md +++ b/doc/manuals/installation_and_administration_manual/gui.md @@ -176,23 +176,23 @@ Please observe the user management for accessing the GUI or any other FIWARE com Registration must be done one and only once. As an already registered user in the Identity Manager, login (this user will be the admin user). You should be able to see an applications panel, in addition to an organizations panel, in your home tab: -![](cosmos-gui/doc/images/register_cosmos_gui__apps_panel.png) +![](../../../cosmos-gui/doc/images/register_cosmos_gui__apps_panel.png) Click in the register button of the applications panel and give a name, a description, a URL and a callback URL for the new application. For instance: -![](cosmos-gui/doc/images/register_cosmos_gui__data.png) +![](../../../cosmos-gui/doc/images/register_cosmos_gui__data.png) Then choose an image for the application, this will be shown as an icon for future users: -![](cosmos-gui/doc/images/register_cosmos_gui__icon.png) +![](../../../cosmos-gui/doc/images/register_cosmos_gui__icon.png) Finally, manage the roles for this application. If you do not expect to add more roles than the default ones, or you simply do not know about roles, skip this step and finish the user registration: -![](cosmos-gui/doc/images/register_cosmos_gui__roles.png) +![](../../../cosmos-gui/doc/images/register_cosmos_gui__roles.png) cosmos-gui is now registered: -![](cosmos-gui/doc/images/register_cosmos_gui__result.png) +![](../../../cosmos-gui/doc/images/register_cosmos_gui__result.png) An important result of the registration process are the OAuth2 credentials that can be inspected by clicking on the appropriate button. These credentials must be configured in cosmos-gui as shown later. @@ -267,7 +267,7 @@ Please observe the usage of `sudo`. This is because the GUI must be able to exec If everything goes well, you should be able to see in a web browser the login page (`http://:`): -![](cosmos-gui/doc/images/cosmos_gui__init.png) +![](../../../cosmos-gui/doc/images/cosmos_gui__init.png) cosmos-gui typically listens in the TCP/443 port (TLS encryption), but you can change it by editing `conf/cosmos-gui.conf`. diff --git a/doc/manuals/user_and_programmer_manual/using_gui.md b/doc/manuals/user_and_programmer_manual/using_gui.md index c9b0dae..4e760bc 100644 --- a/doc/manuals/user_and_programmer_manual/using_gui.md +++ b/doc/manuals/user_and_programmer_manual/using_gui.md @@ -9,11 +9,11 @@ Content: ##Login Once installed and run, you can visit `http://:` (adapt the port if you changed it). This page basically prompts the user to login. -![](cosmos-gui/doc/images/cosmos_gui__init.png) +![](../../../cosmos-gui/doc/images/cosmos_gui__init.png) The login procedure delegates in FIWARE Identity Manager. This means cosmos-gui does not perform any propietary user management from the GUI point of view (as it will be seen, cosmos-gui performs a propietary user management for accessing the Hadoop cluster; that is, particularly, its purpose). Thus, once clicked the login button, we are redirected to `https://account.lab.fiware.org`: -![](cosmos-gui/doc/images/cosmos_gui__auth.png) +![](../../../cosmos-gui/doc/images/cosmos_gui__auth.png) [Top](#top) @@ -36,7 +36,7 @@ Next coming versions of the GUI will allow the users to explore their HDFS space The only option for the time being is to access to the profile page (see next section). -![](cosmos-gui/doc/images/cosmos_gui__dashboard.png) +![](../../../cosmos-gui/doc/images/cosmos_gui__dashboard.png) [Top](#top) @@ -45,6 +45,6 @@ The profile section shows the user account details and certain statistics, such This is useful in order to know the credentials the user has in the Cosmos platform. -![](cosmos-gui/doc/images/cosmos_gui__profile.png) +![](../../../cosmos-gui/doc/images/cosmos_gui__profile.png) [Top](#top) From 2470a0e6cd225d8f42d90514bd7887ebb4587e97 Mon Sep 17 00:00:00 2001 From: pcoello25 Date: Thu, 6 Oct 2016 09:34:18 +0200 Subject: [PATCH 3/3] [task] Fix paths and image locations --- .../big_data_installation_guide_figure_1.png | Bin .../big_data_installation_guide_figure_2.png | Bin .../big_data_installation_guide_figure_3.png | Bin .../doc => doc/manuals}/images/cosmos_gui__auth.png | Bin .../manuals}/images/cosmos_gui__change_password.png | Bin .../manuals}/images/cosmos_gui__dashboard.png | Bin .../doc => doc/manuals}/images/cosmos_gui__init.png | Bin .../manuals}/images/cosmos_gui__new_account.png | Bin .../manuals}/images/cosmos_gui__new_password.png | Bin .../manuals}/images/cosmos_gui__profile.png | Bin .../images/register_cosmos_gui__apps_panel.png | Bin .../manuals}/images/register_cosmos_gui__data.png | Bin .../manuals}/images/register_cosmos_gui__icon.png | Bin .../manuals}/images/register_cosmos_gui__result.png | Bin .../manuals}/images/register_cosmos_gui__roles.png | Bin .../installation_and_administration_manual/gui.md | 12 ++++++------ .../introduction.md | 3 +-- .../some_words_about_cosmos_and_ecosystem.md | 4 ++-- doc/manuals/user_and_programmer_manual/using_gui.md | 8 ++++---- 19 files changed, 13 insertions(+), 14 deletions(-) rename doc/manuals/{installation_and_administration_manual => images}/big_data_installation_guide_figure_1.png (100%) rename doc/manuals/{installation_and_administration_manual => images}/big_data_installation_guide_figure_2.png (100%) rename doc/manuals/{installation_and_administration_manual => images}/big_data_installation_guide_figure_3.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/cosmos_gui__auth.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/cosmos_gui__change_password.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/cosmos_gui__dashboard.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/cosmos_gui__init.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/cosmos_gui__new_account.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/cosmos_gui__new_password.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/cosmos_gui__profile.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/register_cosmos_gui__apps_panel.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/register_cosmos_gui__data.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/register_cosmos_gui__icon.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/register_cosmos_gui__result.png (100%) rename {cosmos-gui/doc => doc/manuals}/images/register_cosmos_gui__roles.png (100%) diff --git a/doc/manuals/installation_and_administration_manual/big_data_installation_guide_figure_1.png b/doc/manuals/images/big_data_installation_guide_figure_1.png similarity index 100% rename from doc/manuals/installation_and_administration_manual/big_data_installation_guide_figure_1.png rename to doc/manuals/images/big_data_installation_guide_figure_1.png diff --git a/doc/manuals/installation_and_administration_manual/big_data_installation_guide_figure_2.png b/doc/manuals/images/big_data_installation_guide_figure_2.png similarity index 100% rename from doc/manuals/installation_and_administration_manual/big_data_installation_guide_figure_2.png rename to doc/manuals/images/big_data_installation_guide_figure_2.png diff --git a/doc/manuals/installation_and_administration_manual/big_data_installation_guide_figure_3.png b/doc/manuals/images/big_data_installation_guide_figure_3.png similarity index 100% rename from doc/manuals/installation_and_administration_manual/big_data_installation_guide_figure_3.png rename to doc/manuals/images/big_data_installation_guide_figure_3.png diff --git a/cosmos-gui/doc/images/cosmos_gui__auth.png b/doc/manuals/images/cosmos_gui__auth.png similarity index 100% rename from cosmos-gui/doc/images/cosmos_gui__auth.png rename to doc/manuals/images/cosmos_gui__auth.png diff --git a/cosmos-gui/doc/images/cosmos_gui__change_password.png b/doc/manuals/images/cosmos_gui__change_password.png similarity index 100% rename from cosmos-gui/doc/images/cosmos_gui__change_password.png rename to doc/manuals/images/cosmos_gui__change_password.png diff --git a/cosmos-gui/doc/images/cosmos_gui__dashboard.png b/doc/manuals/images/cosmos_gui__dashboard.png similarity index 100% rename from cosmos-gui/doc/images/cosmos_gui__dashboard.png rename to doc/manuals/images/cosmos_gui__dashboard.png diff --git a/cosmos-gui/doc/images/cosmos_gui__init.png b/doc/manuals/images/cosmos_gui__init.png similarity index 100% rename from cosmos-gui/doc/images/cosmos_gui__init.png rename to doc/manuals/images/cosmos_gui__init.png diff --git a/cosmos-gui/doc/images/cosmos_gui__new_account.png b/doc/manuals/images/cosmos_gui__new_account.png similarity index 100% rename from cosmos-gui/doc/images/cosmos_gui__new_account.png rename to doc/manuals/images/cosmos_gui__new_account.png diff --git a/cosmos-gui/doc/images/cosmos_gui__new_password.png b/doc/manuals/images/cosmos_gui__new_password.png similarity index 100% rename from cosmos-gui/doc/images/cosmos_gui__new_password.png rename to doc/manuals/images/cosmos_gui__new_password.png diff --git a/cosmos-gui/doc/images/cosmos_gui__profile.png b/doc/manuals/images/cosmos_gui__profile.png similarity index 100% rename from cosmos-gui/doc/images/cosmos_gui__profile.png rename to doc/manuals/images/cosmos_gui__profile.png diff --git a/cosmos-gui/doc/images/register_cosmos_gui__apps_panel.png b/doc/manuals/images/register_cosmos_gui__apps_panel.png similarity index 100% rename from cosmos-gui/doc/images/register_cosmos_gui__apps_panel.png rename to doc/manuals/images/register_cosmos_gui__apps_panel.png diff --git a/cosmos-gui/doc/images/register_cosmos_gui__data.png b/doc/manuals/images/register_cosmos_gui__data.png similarity index 100% rename from cosmos-gui/doc/images/register_cosmos_gui__data.png rename to doc/manuals/images/register_cosmos_gui__data.png diff --git a/cosmos-gui/doc/images/register_cosmos_gui__icon.png b/doc/manuals/images/register_cosmos_gui__icon.png similarity index 100% rename from cosmos-gui/doc/images/register_cosmos_gui__icon.png rename to doc/manuals/images/register_cosmos_gui__icon.png diff --git a/cosmos-gui/doc/images/register_cosmos_gui__result.png b/doc/manuals/images/register_cosmos_gui__result.png similarity index 100% rename from cosmos-gui/doc/images/register_cosmos_gui__result.png rename to doc/manuals/images/register_cosmos_gui__result.png diff --git a/cosmos-gui/doc/images/register_cosmos_gui__roles.png b/doc/manuals/images/register_cosmos_gui__roles.png similarity index 100% rename from cosmos-gui/doc/images/register_cosmos_gui__roles.png rename to doc/manuals/images/register_cosmos_gui__roles.png diff --git a/doc/manuals/installation_and_administration_manual/gui.md b/doc/manuals/installation_and_administration_manual/gui.md index 18e20a6..e43d073 100644 --- a/doc/manuals/installation_and_administration_manual/gui.md +++ b/doc/manuals/installation_and_administration_manual/gui.md @@ -176,23 +176,23 @@ Please observe the user management for accessing the GUI or any other FIWARE com Registration must be done one and only once. As an already registered user in the Identity Manager, login (this user will be the admin user). You should be able to see an applications panel, in addition to an organizations panel, in your home tab: -![](../../../cosmos-gui/doc/images/register_cosmos_gui__apps_panel.png) +![](../images/register_cosmos_gui__apps_panel.png) Click in the register button of the applications panel and give a name, a description, a URL and a callback URL for the new application. For instance: -![](../../../cosmos-gui/doc/images/register_cosmos_gui__data.png) +![](../images/register_cosmos_gui__data.png) Then choose an image for the application, this will be shown as an icon for future users: -![](../../../cosmos-gui/doc/images/register_cosmos_gui__icon.png) +![](../images/register_cosmos_gui__icon.png) Finally, manage the roles for this application. If you do not expect to add more roles than the default ones, or you simply do not know about roles, skip this step and finish the user registration: -![](../../../cosmos-gui/doc/images/register_cosmos_gui__roles.png) +![](../images/register_cosmos_gui__roles.png) cosmos-gui is now registered: -![](../../../cosmos-gui/doc/images/register_cosmos_gui__result.png) +![](../images/register_cosmos_gui__result.png) An important result of the registration process are the OAuth2 credentials that can be inspected by clicking on the appropriate button. These credentials must be configured in cosmos-gui as shown later. @@ -267,7 +267,7 @@ Please observe the usage of `sudo`. This is because the GUI must be able to exec If everything goes well, you should be able to see in a web browser the login page (`http://:`): -![](../../../cosmos-gui/doc/images/cosmos_gui__init.png) +![](../images/cosmos_gui__init.png) cosmos-gui typically listens in the TCP/443 port (TLS encryption), but you can change it by editing `conf/cosmos-gui.conf`. diff --git a/doc/manuals/installation_and_administration_manual/introduction.md b/doc/manuals/installation_and_administration_manual/introduction.md index 1b0b976..743184c 100644 --- a/doc/manuals/installation_and_administration_manual/introduction.md +++ b/doc/manuals/installation_and_administration_manual/introduction.md @@ -20,7 +20,7 @@ If you don't relay on [FIWARE LAB](http://account.lab.fiware.org/) global instan If you still have doubts, we have built the flow diagram below in order to help you identifying which kind of Big Data user you are (if any): -![Figure 1 - Which kind of Big Data user am I?](./big_data_installation_guide_figure_1.png) +![Figure 1 - Which kind of Big Data user am I?](../images/big_data_installation_guide_figure_1.png) [Top](#top) @@ -57,4 +57,3 @@ There are several channels suited for reporting issues and asking for doubts in **NOTE**: Please try to avoid personally emailing the GE owners unless they ask for it. In fact, if you send a private email you will probably receive an automatic response enforcing you to use [stackoverflow.com](http://stackoverflow.com) or [ask.fiware.org](http://ask.fiware.org/questions/). This is because using the mentioned methods will create a public database of knowledge that can be useful for future users; private email is just private and cannot be shared. [Top](#top) - diff --git a/doc/manuals/installation_and_administration_manual/some_words_about_cosmos_and_ecosystem.md b/doc/manuals/installation_and_administration_manual/some_words_about_cosmos_and_ecosystem.md index 4bf13ac..ed2cf07 100644 --- a/doc/manuals/installation_and_administration_manual/some_words_about_cosmos_and_ecosystem.md +++ b/doc/manuals/installation_and_administration_manual/some_words_about_cosmos_and_ecosystem.md @@ -35,7 +35,7 @@ The ecosystem raises when Cosmos is completed/complemented with certain manageme * [Hadoop extensions](http://github.com/telefonicaid/fiware-tidoop/tree/master/tidoop-hadoop-ext) for using non HDFS data. * [Wilma PEP Proxy](http://github.com/ging/fi-ware-pep-proxy) together with [OAuth2 Tokens Generator](http://github.com/telefonicaid/fiware-cosmos/tree/develop/cosmos-auth) if wanting to implement OAuth2-based authentication and authorization in your REST APIs. -![Figure 2 - Big Data architecture reminder](big_data_installation_guide_figure_2.png "Figure 2 - Big Data architecture reminder") +![Figure 2 - Big Data architecture reminder](../images/big_data_installation_guide_figure_2.png "Figure 2 - Big Data architecture reminder") [Top](#top) @@ -45,7 +45,7 @@ Since the above solution may require a very large infrastructure (for instance, Indeed, this is the version currently deployed in FIWARE Lab. -![Figure 3 - Light-version Big Data architecture](big_data_installation_guide_figure_3.png "Figure 3 - Light-version Big Data architecture") +![Figure 3 - Light-version Big Data architecture](../images/big_data_installation_guide_figure_3.png "Figure 3 - Light-version Big Data architecture") ##What is mandatory and optional diff --git a/doc/manuals/user_and_programmer_manual/using_gui.md b/doc/manuals/user_and_programmer_manual/using_gui.md index 4e760bc..60618fb 100644 --- a/doc/manuals/user_and_programmer_manual/using_gui.md +++ b/doc/manuals/user_and_programmer_manual/using_gui.md @@ -9,11 +9,11 @@ Content: ##Login Once installed and run, you can visit `http://:` (adapt the port if you changed it). This page basically prompts the user to login. -![](../../../cosmos-gui/doc/images/cosmos_gui__init.png) +![](../images/cosmos_gui__init.png) The login procedure delegates in FIWARE Identity Manager. This means cosmos-gui does not perform any propietary user management from the GUI point of view (as it will be seen, cosmos-gui performs a propietary user management for accessing the Hadoop cluster; that is, particularly, its purpose). Thus, once clicked the login button, we are redirected to `https://account.lab.fiware.org`: -![](../../../cosmos-gui/doc/images/cosmos_gui__auth.png) +![](../images/cosmos_gui__auth.png) [Top](#top) @@ -36,7 +36,7 @@ Next coming versions of the GUI will allow the users to explore their HDFS space The only option for the time being is to access to the profile page (see next section). -![](../../../cosmos-gui/doc/images/cosmos_gui__dashboard.png) +![](../images/cosmos_gui__dashboard.png) [Top](#top) @@ -45,6 +45,6 @@ The profile section shows the user account details and certain statistics, such This is useful in order to know the credentials the user has in the Cosmos platform. -![](../../../cosmos-gui/doc/images/cosmos_gui__profile.png) +![](../images/cosmos_gui__profile.png) [Top](#top)