From amaestrini at create-net.org Tue May 5 11:30:39 2015 From: amaestrini at create-net.org (Andrea Maestrini) Date: Tue, 5 May 2015 11:30:39 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Italy Hub] problems with blueprint deployment in Trento region Message-ID: Dear FIWARE coach, we forward you a support request received from a CreatiFI applicant we are not able to solve. Please let us know if you need direct contact with the submitter. Thanks. **************************************** Hi guys, still facing troubles with blueprints :( This time the error seems to be with CEP: Success: Blueprint Instance test040515 status. Description: Create environment test040515 Status: ERROR Error: Error installing a product. Description:com.telefonica.euro_iaas.paasmanager.exception.ProductInstallatorException: Error installing product cep-3.2.0 Error invokg SDC to Install Productcep-3.2.0 3.2.0 SDCException. com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node test040515-sbiribuda-1-007000 is not registered in ChefServer: com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node test040515-sbiribuda-1-007000 is not registered in ChefServer. com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node test040515-sbiribuda-1-007000 is not registered in ChefServer Any idea? thanks d. **************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From amaestrini at create-net.org Tue May 5 14:00:54 2015 From: amaestrini at create-net.org (Andrea Maestrini) Date: Tue, 5 May 2015 14:00:54 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Benelux Hub] Cannot terminate instance, unable to associate floating ip in Gent In-Reply-To: References: Message-ID: Dear FIWARE coach, the CreatiFI winner issue persists after the community account submission. Please let us know if you need direct contact with the submitter. Thanks. On Wed, Apr 29, 2015 at 8:37 AM, Andrea Maestrini wrote: > Dear FIWARE coach, > we forward you a support request received from a CreatiFI applicant we are > not able to solve. > Please let us know if you need direct contact with the submitter. > Thanks. > > ********************************** > > Dear, > > if I follow the instructions correctly and attempt to create a private > subnet using 192.168.12.0/24, you will notice you can not create a > subnet. (see screenshot1) > > I did attempt to create a subnet using another ip range 10.10.10.0/24. > This subnet was indeed created correctly. > > I attempted to launch a new instance with this new network, however some > of my instances are not being terminated properly. This results in the > quota of 3 instances blocking the creation of new instances. I have now 2 > instances which are terminating and only 1 instance left which I can use to > test. > > I eventually managed to get a new instance running on the network I > created. I attempted to associate the floating IP with this instance. This > still failed. (see screenshot2) > > As a result, by now I cannot: > - Remove unusable instances (which are in Terminated state). Terminating > these instances gives me the message they are terminated, but they still > use up my quota. > - Create subnetworks according to the guide. Subnetworks can be created > using different IP ranges (but how can I know the right range?). > - Attach public floating IPs to instances which run on any network (either > the default network which is available, or the network I created). > > Please let me know if there are other undocumented steps to be taken. > > Moreover I have an instance which is being terminated for about 3-4 weeks > now. > > When attempting to send a new request to the instance, the following error > pops up: {"conflictingRequest": {"message": "Cannot 'reboot' while instance > is in task_state deleting", "code": 409}} > > When re-terminating the instance, I get a successful message, but the > instance does not terminate (see screeshot3). > Can you help me? I need to create a working instance > > ********************************** > -- ==================================================================== *Andrea Maestrini, ing.* CREATE-NET FraME, Future Media Solutions Area Research Engineer Via alla Cascata 56C ? 38123 Povo, Trento - Italy e-mail: andrea.maestrini at create-net.org Phone: (+39) 0461 312424 Fax: (+39) 0461 421157 www.create-net.org ==================================================================== The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited according to the Italian Law 196/2003 of the Legislature. If you received this in error, please contact the sender and delete the material from any computer. =========================================================== -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Thu May 7 11:13:27 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Thu, 7 May 2015 11:13:27 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #247: A volume is stuck in "detaching" state Message-ID: Hi, A user has a volume in the Spain2 region he cannot delete. Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Thu May 7 11:26:07 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Thu, 7 May 2015 11:26:07 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #246: A couple of bugs in the POI Data Provider GE Message-ID: Hi, A user found (and fixed) some bugs on the POI Data Provider GE. Here it is his report: " Hi. We are using a custom data field in our POI data. Based on the POI Data Provider documentation it should support adding custom fields to the data in addition to the ?fw_core? field. However the POI Data Provider would not accept JSON data that had other than the predefined ?fw_xxx? fields. The code in add_poi.php gets a list of supported components by calling get_supported_components() from db.php which has a hardcoded list of supported component names. We have fixed that by modifying the PHP code in our own instance ourselves. The change was made to db.php as follows: function get_supported_components() { // Markus Kauppinen: Added "mipsoft_landmarker" $components = array("fw_core", "fw_contact", "fw_xml3d", "fw_media", "fw_time", "fw_sensor", "fw_marker", "fw_relationships", "mipsoft_landmarker"); return $components; } Also handling the timestamps when updating data could be better documented. It?s quite confusing. It?s not instantly clear should we include a new timestamp in the JSON data that we send via HTTP POST or will the receiving PHP code assign a new one. We now know that the PHP code inserts a new timestamp to the fw_core data. But it does not insert it to the custom data. However when updating it checks both timestamps (in update_poi.php) and if they do not match then that (custom) data is not updated. The PHP code even doesn?t allow a zero timestamp value so it must a valid value. So it doesn?t set the custom data timestamp but still expects a valid one when updating data. This is a clear error. It should either set the custom data timestamp or allow a zero timestamp when updating the data. We have now ourselves modified the PHP code to insert the custom data timestamp as well in add_poi.php as follows: $mongodb = connectMongoDB($db_opts['mongo_db_name']); foreach($request_array as $comp_name => $comp_data) { if ($comp_name == 'fw_core') continue; if (in_array($comp_name, $supported_components)) { $comp_data["_id"] = $uuid; // Markus Kauppinen: $comp_data["last_update"]["timestamp"] = $timestamp; $collection = $mongodb->$comp_name; $collection->insert($comp_data); } } " Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Thu May 7 11:33:31 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Thu, 7 May 2015 11:33:31 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #245: VM Waterford error when launching new Instance with VirtualCharacters-3.3.3 Message-ID: Hi, A user cannot launch a VirtualCharacters-3.3.3 instance on the Waterford region. Thanks in advance -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Thu May 7 12:02:35 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Thu, 7 May 2015 12:02:35 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #244: VM Waterford Blueprint error when cloning Virtual Characters Message-ID: Hi, A user cannot clone a blueprint for the virtualcharacters 3.3.3 template on the Waterford region. Here there are two screenshots with the problem. Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot from 2015-04-23 12_43_36.png Type: image/png Size: 166917 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot from 2015-04-23 12_43_53.png Type: image/png Size: 158927 bytes Desc: not available URL: From xavier.carol at i2cat.net Thu May 7 12:21:02 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Thu, 7 May 2015 12:21:02 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #240 Error instantiating a blueprint containing a Apache server and/or a MySQL server. Message-ID: Hi, A user is in trouble trying to instantiate a blueprint containing Apache and MySQL in the Zurich region. This is the error that he gets: Error: Error installing a product. Description:com.telefonica.euro_iaas.paasmanager.exception.ProductInstallatorException: Error installing product apache2-4.0 Error invokg SDC to Install Productapache2-4.0 4.0 SDCException. com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node webserver-apache-1-011268 is not registered in ChefServer: com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node webserver-apache-1-011268 is not registered in ChefServer. com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node webserver-apache-1-011268 is not registered in ChefServer Thanks in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Wed May 13 09:45:55 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Wed, 13 May 2015 09:45:55 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #278: No SSH connection with VM by terminal Message-ID: Hi, A user running a VM in the Spain node cannot access the VM by SSH. She apparently configured keypairs and floating IP properly, but when she tries to connect by SSH the connection seems to get freeze. She provided screen shots that contains sensible information, so they will be sent by email. Thanks in advance. Kr, Xavier Carol. -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Thu May 14 09:51:01 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Thu, 14 May 2015 09:51:01 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #275 - Lab download snapshot Message-ID: Hi, A user want to download snapshots from the Zurich node. Detailed information will be provided by email. Thanks in advance. Kr, Xavier Carol. -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Mon May 18 16:53:08 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Mon, 18 May 2015 16:53:08 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Helsinki Hub] General Support #282: Can't authenticate tenant to use Object Storage (anymore) Message-ID: Hi, A user is having problems with Object Storage authorization. Here it is his report: "I already successfully used Object Storage earlier but after the recent changes (new IdM deployment, having my account upgraded to a community account) it no longer works. Referring to the 3 step authentication as described in the documentation(*) the 1. and 2. step work okay but the 3. step fails. (* https://forge.fiware.org/plugins/mediawiki/wiki/fiware/index.php/Object_Storage_-_User_and_Programmers_Guide#Authentication ) In other words I am able to get the "initial token" using my e-mail and password (step 1) and am able to get the detailed tenant list with the initial token (step 2) but can't authorize any of the tenants to use the Object Storage (step 3). Below is a log of the requests and responses with my password, the initial token and the numerical tenants hidden: 1. Authentication to get initial token (no tenant yet) URL: http://cloud.lab.fi-ware.org:4730/v2.0/tokens RequestProperties: {Content-type=application/json, Accept-Charset=UTF-8} Sending JSON object: {"auth":{"passwordCredentials":{"username":" markus.kauppinen at outlook.com","password":""}}} Waiting for response... Response code: 200 Response message: OK Response body: { "access": { "token": { "issued_at": "2015-05-15T12:04:30.310587", "expires": "2015-05-16T12:04:30Z", "id": "", "audit_ids": [ "SY_MmKFfTLeVF4MLsLXAtg" ] }, "serviceCatalog": [], "user": { "username": "markus.kauppinen at outlook.com", "roles_links": [], "id": "markus-kauppinen", "roles": [], "name": "markus.kauppinen at outlook.com" }, "metadata": { "is_admin": 0, "roles": [] } } } 2. Use initial token to get tenant URL: http://cloud.lab.fi-ware.org:4730/v2.0/tenants RequestProperties: {Accept-Charset=UTF-8, X-Auth-Token=} Waiting for response... Response code: 200 Response message: OK Response body: { "tenants_links": [], "tenants": [ { "website": "", "img_small": "OrganizationAvatar/small/", "name": "blindsquare-landmarkers", "img_original": "OrganizationAvatar/original/", "description": "This organization is intended to be used in the cloud environment. As long as you are a trial or community user this organization will be authorized as purchaser in the Cloud Application.", "enabled": true, "id": "", "img_medium": "OrganizationAvatar/medium/" }, { "website": "", "city": "", "name": "OLD__testOrganization", "enabled": true, "email": "", "id": "", "description": "Blah" }, { "description": "", "enabled": true, "id": "0000000000000000markus-kauppinen", "is_default": true, "name": "markus.kauppinen at outlook.com" } ] } Using organization: blindsquare-landmarkers and tenant: 3. Authenticate tenant to get token for Object Storage URL: http://cloud.lab.fi-ware.org:4730/v2.0/tokens RequestProperties: {Content-type=application/json, Accept-Charset=UTF-8} Sending JSON object: {"auth":{"passwordCredentials":{"username":" markus.kauppinen at outlook.com ","password":""},"tenantName":""}} Waiting for response... Response code: 401 Response message: Unauthorized Response body: {"error": {"message": "The request you have made requires authentication.", "code": 401, "title": "Unauthorized"}} Earlier I used Object Storage with a manually created organization which is currently named "OLD__testOrganization". It still shows up in the tenant list. Has the authentication process changed somehow or is there a problem with the current state of my user account?" Thanks in advance. Xavier Carol. -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Mon May 18 16:59:11 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Mon, 18 May 2015 16:59:11 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Helsinki Hub] General Support #282: Can't authenticate tenant to use Object Storage (anymore) In-Reply-To: References: Message-ID: The user is operating in the Spain node. Kr, Xavier Carol. 2015-05-18 16:53 GMT+02:00 Xavier Carol Rossell : > Hi, > > A user is having problems with Object Storage authorization. Here it is > his report: > > "I already successfully used Object Storage earlier but after the recent > changes (new IdM deployment, having my account upgraded to a community > account) it no longer works. > > Referring to the 3 step authentication as described in the > documentation(*) the 1. and 2. step work okay but the 3. step fails. > > (* > https://forge.fiware.org/plugins/mediawiki/wiki/fiware/index.php/Object_Storage_-_User_and_Programmers_Guide#Authentication > ) > > In other words I am able to get the "initial token" using my e-mail and > password (step 1) and am able to get the detailed tenant list with the > initial token (step 2) but can't authorize any of the tenants to use the > Object Storage (step 3). > > Below is a log of the requests and responses with my password, the initial > token and the numerical tenants hidden: > > 1. Authentication to get initial token (no tenant yet) > URL: http://cloud.lab.fi-ware.org:4730/v2.0/tokens > RequestProperties: {Content-type=application/json, Accept-Charset=UTF-8} > Sending JSON object: {"auth":{"passwordCredentials":{"username":" > markus.kauppinen at outlook.com","password":""}}} > Waiting for response... > Response code: 200 > Response message: OK > Response body: > { > "access": { > "token": { > "issued_at": "2015-05-15T12:04:30.310587", > "expires": "2015-05-16T12:04:30Z", > "id": "", > "audit_ids": [ > "SY_MmKFfTLeVF4MLsLXAtg" > ] > }, > "serviceCatalog": [], > "user": { > "username": "markus.kauppinen at outlook.com", > "roles_links": [], > "id": "markus-kauppinen", > "roles": [], > "name": "markus.kauppinen at outlook.com" > }, > "metadata": { > "is_admin": 0, > "roles": [] > } > } > } > > 2. Use initial token to get tenant > URL: http://cloud.lab.fi-ware.org:4730/v2.0/tenants > RequestProperties: {Accept-Charset=UTF-8, X-Auth-Token=} > Waiting for response... > Response code: 200 > Response message: OK > Response body: > { > "tenants_links": [], > "tenants": [ > { > "website": "", > "img_small": > "OrganizationAvatar/small/", > "name": "blindsquare-landmarkers", > "img_original": > "OrganizationAvatar/original/", > "description": "This organization is intended to be used in > the cloud environment. As long as you are a trial or community user this > organization will be authorized as purchaser in the Cloud Application.", > "enabled": true, > "id": "", > "img_medium": > "OrganizationAvatar/medium/" > }, > { > "website": "", > "city": "", > "name": "OLD__testOrganization", > "enabled": true, > "email": "", > "id": "", > "description": "Blah" > }, > { > "description": "", > "enabled": true, > "id": "0000000000000000markus-kauppinen", > "is_default": true, > "name": "markus.kauppinen at outlook.com" > } > ] > } > > Using organization: blindsquare-landmarkers and tenant: > > > 3. Authenticate tenant to get token for Object Storage > URL: http://cloud.lab.fi-ware.org:4730/v2.0/tokens > RequestProperties: {Content-type=application/json, Accept-Charset=UTF-8} > Sending JSON object: {"auth":{"passwordCredentials":{"username":" > markus.kauppinen at outlook.com > ","password":""},"tenantName":""}} > Waiting for response... > Response code: 401 > Response message: Unauthorized > Response body: {"error": {"message": "The request you have made requires > authentication.", "code": 401, "title": "Unauthorized"}} > Earlier I used Object Storage with a manually created organization which > is currently named "OLD__testOrganization". It still shows up in the tenant > list. > > Has the authentication process changed somehow or is there a problem with > the current state of my user account?" > > Thanks in advance. > Xavier Carol. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Tue May 19 10:12:04 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Tue, 19 May 2015 10:12:04 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Helsinki Hub] General Support #276 Cosmos Oozie API REST not available, again Message-ID: Hello, A user reports that Cosmos access returns timeout. He is working in the Spain node. $curl cosmos.lab.fi-ware.org:11000 curl: (7) Failed to connect to cosmos.lab.fi-ware.org port 11000: Connection timed out I also tried from my side and got the same result: $ curl cosmos.lab.fi-ware.org:11000 curl: (28) Connection timed out after 300283 milliseconds Thanks in advance. Kr, Xavier Carol. -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Wed May 20 11:49:25 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Wed, 20 May 2015 11:49:25 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #284: Identity Management (KeyRock) Webinar Message-ID: Hello, The KeyRock webinar link (https://edu.fiware.org/mod/url/view.php?id=329) available at the Fiware courses (http://edu.fiware.org/course/view.php?id=79) is broken. Could you please fix it? Thanks in advance. Kr,Xavier Carol. -------------- next part -------------- An HTML attachment was scrubbed... URL: From aalonsog at dit.upm.es Thu May 21 08:58:06 2015 From: aalonsog at dit.upm.es (=?utf-8?Q?=C3=81lvaro_Alonso?=) Date: Thu, 21 May 2015 08:58:06 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #284: Identity Management (KeyRock) Webinar In-Reply-To: References: Message-ID: Hi, thanks, it?s fixed. BR -- ?lvaro > El 20 May 2015, a las 11:49, Xavier Carol Rossell escribi?: > > Hello, > > The KeyRock webinar link (https://edu.fiware.org/mod/url/view.php?id=329 ) available at the Fiware courses (http://edu.fiware.org/course/view.php?id=79 ) is broken. > > Could you please fix it? > > Thanks in advance. > Kr,Xavier Carol. -------------- next part -------------- An HTML attachment was scrubbed... URL: From xavier.carol at i2cat.net Mon May 25 09:24:42 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Mon, 25 May 2015 09:24:42 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #240 Error instantiating a blueprint containing a Apache server and/or a MySQL server. In-Reply-To: References: Message-ID: Hi, As requested, here it comes a better explanation from the user about this issue. I create a new blueprint using a base OS (I tried this both with centos and ubuntu). Then I add the services I want to the blueprint (initially I tried adding an Apache and a MySQL server). Creating the blueprint went fine. Then when I try running the blueprint, I always get the errors as the ones I copied on the first post. I tried several combinations, using centos and ubuntu, and trying only Apache or only MySQL, but always got the same errors. The only thing I can instantiate without errors is an empty virtual machine. Thanks in adavnce. XC. 2015-05-07 12:21 GMT+02:00 Xavier Carol Rossell : > Hi, > > A user is in trouble trying to instantiate a blueprint containing Apache > and MySQL in the Zurich region. > > This is the error that he gets: > > Error: Error installing a product. > Description:com.telefonica.euro_iaas.paasmanager.exception.ProductInstallatorException: > Error installing product apache2-4.0 Error invokg SDC to Install > Productapache2-4.0 4.0 SDCException. > com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: > com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node > webserver-apache-1-011268 is not registered in ChefServer: > com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: > com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node > webserver-apache-1-011268 is not registered in ChefServer. > com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: > com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node > webserver-apache-1-011268 is not registered in ChefServer > > Thanks in advance. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From amaestrini at create-net.org Mon May 25 15:33:48 2015 From: amaestrini at create-net.org (Andrea Maestrini) Date: Mon, 25 May 2015 15:33:48 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Italy Hub] Network is unreachable in Trento node Message-ID: Dear FIWARE coach, we forward you a support request received from a CreatiFI applicant we are not able to solve. Please let us know if you need direct contact with the submitter. Thanks. ************************* Hi our network is unreachable. our IP is: 193.205.211.153 ssh -i keypair.pem root at 193.205.211.153 ssh: connect to host 193.205.211.153 port 22: Operation timed out ************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From amaestrini at create-net.org Mon May 25 16:37:20 2015 From: amaestrini at create-net.org (Andrea Maestrini) Date: Mon, 25 May 2015 16:37:20 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Italy Hub] problem with Spain2 node Message-ID: Dear FIWARE coach, we forward you a support request received from a CreatiFI applicant we are not able to solve. Please let us know if you need direct contact with the submitter. Thanks. ********************************* Dear, as far as I know, the upgrade process of my community account has been completed and it has been assigned to Spain2 region. Unfortunately I still have problems on the creation of a router; the error message says: {"NeutronError": {"message": "Quota exceeded for resources: ['router']", "type": "OverQuota", "detail": ""}} Walter ********************************* -------------- next part -------------- An HTML attachment was scrubbed... URL: From amaestrini at create-net.org Mon May 25 16:47:00 2015 From: amaestrini at create-net.org (Andrea Maestrini) Date: Mon, 25 May 2015 16:47:00 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Italy Hub]Cygnus connector and user-agent filtered by "orion.." content (Publish/Subscribe Context Broker - Orion Context Broker GE) Message-ID: Dear FIWARE coach, we forward you a support request received from a CreatiFI applicant we are not able to solve. Please let us know if you need direct contact with the submitter. Thanks. ****************************** Dear, I guess this ticket should be addressed to Cygnus Connector GE developers. I am testing the "subscription-notification" mechanism of NGSI and I noticed that Cygnus Connector accepts only notifications that have User-Agent http header set to "orion/x.y.z". This forces all NGSI-like sources to be only instances of Orion Context Broker. I am using Data Handling EspR4FastData GE and it is compliant with the NGSI "subscription-notification"; i.e. I can create a subscription and indicate the address of the Cygnus connector as the end point for the notification. The problem is that Data Handling sends the notification using a standard "mozilla/5.0" user-agent that is refused by Cygnus, see trace below: *2015-05-25 08:37:40,437 (1535676062 at qtp-62688637-20) [INFO - es.tid.fiware.fiwareconnectors.cygnus.handlers.OrionRestHandler.getEvents(OrionRestHandler.java:153)] Starting transaction (1432538977-399-0000000053)2015-05-25 08:37:40,437 (1535676062 at qtp-62688637-20) [WARN - es.tid.fiware.fiwareconnectors.cygnus.handlers.OrionRestHandler.getEvents(OrionRestHandler.java:183)] Bad HTTP notification (mozilla/5.0 user agent not supported)2015-05-25 08:37:40,437 (1535676062 at qtp-62688637-20) [WARN - org.apache.flume.source.http.HTTPSource$FlumeHTTPServlet.doPost(HTTPSource.java:186)] Received bad request from client.* My question is: is there a way to configure Cygnus to accept a non-Orion user-agent? ****************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From leandro.guillen at imdea.org Wed May 27 12:02:39 2015 From: leandro.guillen at imdea.org (Leandro Guillen) Date: Wed, 27 May 2015 12:02:39 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Barcelona Hub] General Support #240 Error instantiating a blueprint containing a Apache server and/or a MySQL server. In-Reply-To: References: Message-ID: <3110069.Jtn0C4zpEn@carbon> Hi, This is the response we've got so far. Regards, Leandro henar Henar Mu?oz added a comment - 2 days ago Hi Last week, I was having a look and I detect there was a low speed to download files (17K/s). Today, I am having problems to access to the VM ssh root at 160.85.2.63 ssh: connect to host 160.85.2.63 port 22: Connection refused I think it is a problem in the infrastructure. Regards, Henar ZHAW Node Helpdesk Zurich Node Helpdesk added a comment - 3 hours ago Download speed rates have been fixed and now is possible to instantiate a blueprint. See attached screenshot. Best, Bruno. On Monday, May 25, 2015 09:24:42 AM Xavier Carol Rossell wrote: > Hi, > > As requested, here it comes a better explanation from the user about this > issue. > > I create a new blueprint using a base OS (I tried this both with centos and > ubuntu). Then I add the services I want to the blueprint (initially I tried > adding an Apache and a MySQL server). Creating the blueprint went fine. > Then when I try running the blueprint, I always get the errors as the ones > I copied on the first post. I tried several combinations, using centos and > ubuntu, and trying only Apache or only MySQL, but always got the same > errors. The only thing I can instantiate without errors is an empty virtual > machine. > > Thanks in adavnce. > XC. > > 2015-05-07 12:21 GMT+02:00 Xavier Carol Rossell : > > Hi, > > > > A user is in trouble trying to instantiate a blueprint containing Apache > > and MySQL in the Zurich region. > > > > This is the error that he gets: > > > > Error: Error installing a product. > > Description:com.telefonica.euro_iaas.paasmanager.exception.ProductInstalla > > torException: Error installing product apache2-4.0 Error invokg SDC to > > Install > > Productapache2-4.0 4.0 SDCException. > > com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: > > com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node > > webserver-apache-1-011268 is not registered in ChefServer: > > com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: > > com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node > > webserver-apache-1-011268 is not registered in ChefServer. > > com.telefonica.euro_iaas.sdc.exception.SdcRuntimeException: > > com.telefonica.euro_iaas.sdc.exception.CanNotCallChefException: Node > > webserver-apache-1-011268 is not registered in ChefServer > > > > Thanks in advance. From amaestrini at create-net.org Wed May 27 16:56:32 2015 From: amaestrini at create-net.org (Andrea Maestrini) Date: Wed, 27 May 2015 16:56:32 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Italy Hub] Network is unreachable in Trento node In-Reply-To: References: Message-ID: An update from the applicant: ************************* Sorry.... still in timeout. I have already set ssh in security group... i used ssh connection until 2 weeks ago. It is not only a problem of ssh connection... but the website is unreachable too. just try my tomcat installation at http://193.205.211.153:8080 ************************* On Mon, May 25, 2015 at 3:33 PM, Andrea Maestrini wrote: > Dear FIWARE coach, > we forward you a support request received from a CreatiFI applicant we are > not able to solve. > Please let us know if you need direct contact with the submitter. > Thanks. > > ************************* > > Hi > > our network is unreachable. > > our IP is: 193.205.211.153 > > ssh -i keypair.pem root at 193.205.211.153 > > ssh: connect to host 193.205.211.153 port 22: Operation timed out > > > ************************** > -- ==================================================================== *Andrea Maestrini, ing.* CREATE-NET FraME, Future Media Solutions Area Research Engineer Via alla Cascata 56C ? 38123 Povo, Trento - Italy e-mail: andrea.maestrini at create-net.org Phone: (+39) 0461 312424 Fax: (+39) 0461 421157 www.create-net.org ==================================================================== The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited according to the Italian Law 196/2003 of the Legislature. If you received this in error, please contact the sender and delete the material from any computer. =========================================================== -------------- next part -------------- An HTML attachment was scrubbed... URL: From amaestrini at create-net.org Thu May 28 14:58:17 2015 From: amaestrini at create-net.org (Andrea Maestrini) Date: Thu, 28 May 2015 14:58:17 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Italy Hub] Data Handling EspR4FastData GE: headers in REST calls Message-ID: Dear FIWARE coach, we forward you a support request received from a CreatiFI applicant we are not able to solve. Please let us know if you need direct contact with the submitter. Thanks. ********************************** Dear, an issue to redirect to the developers of Data Handling EspR4FastData GE. I am currently using Data Handling GE as an NGSI source for Orion Context Broker; in other words, I set an Orion instance as an event sink. All works fine and Orion get notified about any update of my entities. But for my project I need several NGSI sources and all should notify every update to the same Orion instance. Orion can handle this scenario using the multitenant mode. Data coming from various tenants can be saved on different mySQL databases. The mechanism used to instruct Orion to separate the data streams coming from different tenants requires to add two specific headers: "fiware-service"e and "fiware-servicepath" to each updateContext REST call. To my understanding, Data Handling Ge seems to ignore any header added to a request, unless I am wrong. So I cannot leverage the multitenant capability of Orion. There are planned developments to include headers management? PS: see my question/answer on stackoverflow for further details: http://stackoverflow.com/questions/30485150/subscription-to-cygnus-in-case-of-orion-context-broker-multitenant-not-working/ ********************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From amaestrini at create-net.org Thu May 28 15:01:24 2015 From: amaestrini at create-net.org (Andrea Maestrini) Date: Thu, 28 May 2015 15:01:24 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Italy Hub] kurento-recorder-screen does not replay recorded screencast anymore Message-ID: Dear FIWARE coach, we forward you a support request received from a CreatiFI applicant we are not able to solve. Please let us know if you need direct contact with the submitter. Thanks. ****************************************** I am trying to record a screencast and replaying it afterwards. It is possible to record them and play them back through VLC or the browser. But when creating an app with Kurento JS libraries the recording cannot be replayed! I am pretty sure this was working before in my prototype! I also tried the kurento-recorder-screen tutorial, and I have the same problem, file is recorded but cannot be played back. I already checked on 2 of my servers with the same result. This is the tutorial I am talking about on Github: https://github.com/Kurento/kurento-tutorial-js/tree/release-5.1/kurento-recorder-screen See attachment for my server log containing the following error: 2015-05-23 22:43:01.911845 3779 [2825481024] error vp8enc gstvp8enc.c:1902 gst_vp8_enc_drain() encode returned 1 error Link below you can also find the recorded file, which can be played back by vlc, firefox through plain http request - but not with the tutorial itself... https://dl.dropboxusercontent.com/u/10859794/jantje2.webm *I already made 2 posts about this on Kurento Google Forum but no reply yet:* https://groups.google.com/forum/#!topic/kurento/7hJgPHBnDYk https://groups.google.com/forum/#!topic/kurento/nNePLd_J544 *I think it is something for the Kurento owner to look into.* ****************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: media-server.log Type: application/octet-stream Size: 38316 bytes Desc: not available URL: From xavier.carol at i2cat.net Fri May 29 09:44:01 2015 From: xavier.carol at i2cat.net (Xavier Carol Rossell) Date: Fri, 29 May 2015 09:44:01 +0200 Subject: [Fiware-creatifi-coaching] [CreatiFI Helsinki Hub] General Support #297: How do I move a snapshot to another region? Message-ID: Hi, A user wants to move a snapshot from one region to another. Private data will be reported by email. Thanks in advance. Kr, Xavier Carol. -------------- next part -------------- An HTML attachment was scrubbed... URL: