fiware

FIWARE IDM installation error

孤者浪人 提交于 2019-12-02 11:06:28
问题 I tried to install Fiware IDM in Ubuntu 12.04 from scratch (just only Ubuntu 12.04 was installed, no any more packages). I have followed the guide https://github.com/ging/fi-ware-idm/wiki/Installation-guide Installation finished OK, but when I try to start fi-lab home page, http://localhost:8000, I've got the following error: DeprecationWarning: The oslo namespace package is deprecated. Please use oslo_config instead. DeprecationWarning: The oslo namespace package is deprecated. Please use

how to compile cygnus 1.1.0 from sources and update cygnus 0.13?

只愿长相守 提交于 2019-12-02 09:58:10
问题 I follow the guide doing this steps: git clone https://github.com/telefonicaid/fiware-cygnus.git cd fiware-cygnus/cygnus-common mvn clean compile exec:exec assembly:single cp target/cygnus-common-1.1.0-jar-with-dependencies.jar /usr/cygnus/plugins.d/cygnus/libext mvn install:install-file -Dfile=/usr/cygnus/plugins.d/cygnus/libext/cygnus-common-1.1.0-jar-with-dependencies.jar -DgroupId=com.telefonica.iot -DartifactId=cygnus-common -Dversion=1.1.0 -Dpackaging=jar -DgeneratePom=false cp target

FIWARE Cygnus -> cartodb sinks.NGSISink: Persistence error, 400 Bad request

送分小仙女□ 提交于 2019-12-02 08:53:11
问题 I'm trying to connect cygnus (1.4.0_SNAPSHOT) to cartodb. I run it locally, and I use a script to send a notification to cygnus. The script runs Ok, but cygnus says: ERROR sinks.NGSISink: Persistence error (The query 'INSERT INTO jcarneroatos.x002fpeoplelocation (recvtime,fiwareservicepath,entityid,entitytype,the_geom) VALUES ('2016-10-31T19:04:00.994Z','/peoplelocation','Person:1','Person',ST_SetSRID(ST_MakePoint({"coordinates":[-4.423032856,36.721290055]), 4326))' could not be executed.

My Hive client stopped working with Cosmos instance

自闭症网瘾萝莉.ら 提交于 2019-12-02 07:46:38
问题 I have a Hive client (written in Java) that worked just fine with the Global Instance of Cosmos at FIWARE Lab. However, it is not working anymore, it seems the client cannot connect (it times out). Has anything changed on the server-side? 回答1: This is because the Global Instance of Cosmos at FIWARE Lab has been upgraded and now HiveServer2 is being run on the server side of Hive. Thus, everything in your code is still valid except for the following: Load org.apache.hive.jdbc.HiveDriver

Error with Fiware-Cygnus installation via yum

耗尽温柔 提交于 2019-12-02 07:24:38
i am trying to install the Fireware Cygnus via yum yum install cygnus-ngsi But in the middle i got some erros. Transaction Check Error: file /usr/cygnus/init.d/cygnus from install of cygnus-common-1.2.0-0.gbd4790e.x86_64 conflicts with file from package cygnus-0.13.0-0.g0c6765f.x86_64 -...... i checked the /usr directory but there is nothing with /cygnus/init.d and so on... It is possible that there have been something before but who knows. I also tried to clean yum repo but the error still exists. Does anyone have an idea ? Try the following command in order to remove all Cygnus stuff: sudo

Orion Context Broker HTTPS for subscribers

喜夏-厌秋 提交于 2019-12-02 06:17:48
问题 Very simply question: Does the Orion Context Broker support SSL for subscribers: Ex.: Can the callback URL for subscriptions be https://mysimpleexample.com/notify I've tried this (using a trusted certificate!), and this does not seem to work for me. That being said, I've not run the Orion Context Broker using the -https option. However, looking at the manual, this option seems to be for using SSL on the context broker http server, and have nothing to do with client subscriptions. Edit: I did

Oauth2 in Wirecloud

岁酱吖の 提交于 2019-12-02 06:08:06
问题 Which is the best way to implement OAuth2 authorization in an operator? We have secured our backend API with PEP proxy and we need a valid token. Does wirecloud provide any mean to access it once the user is logged in. Something like: MashupPlatform.context.getOAuthToken() We try to avoid hardcoding user credentials in the logic of the operator. 回答1: Yeah, Although, you cannot read the OAuth2 token from widgets/operators, you can use the WireCloud's proxy and configure it to inject the OAuth2

Cygnus startup error: ClassNotFoundException

最后都变了- 提交于 2019-12-02 05:59:24
问题 My environment is VM with CentOS 6.6 I followed the instruction in https://github.com/telefonicaid/fiware-cygnus/blob/master/doc/quick_start_guide.md to install Cygnus. java-1.6.0-openjdk-devel was also installed and the JAVA_HOME set. Installation went fine and it installed package cygnus.x86_64 0:0.8.2-0.g7353160 To test Cygnus I created the agent_test.conf and notification.sh files as instructed. When I start Cygnus, it outputs following stuff: [root@localhost ~]# /usr/cygnus/bin/cygnus

ECONNRESET when opening a large number of connection in small time period

时间秒杀一切 提交于 2019-12-02 05:27:10
I have situation where I want to create large number of entities on orion. I am using docker version of Orion and mongo with this docker-compose. version: "3" services: mongo: image: mongo:3.4 volumes: - /data/docker-mongo/db:/data/db - /data/docker-mongo/log/mongodb.log:/var/log/mongodb/mongod.log command: --nojournal orion: image: fiware/orion volumes: - /data/docker-mongo/log/contextBroker.log:/tmp/contextBroker.log links: - mongo ports: - "1026:1026" command: -dbhost mongo Now problems happens when I want to upload 2000 entities (opening new connection for each, I know it can be done

how to compile cygnus 1.1.0 from sources and update cygnus 0.13?

落爺英雄遲暮 提交于 2019-12-02 05:18:37
I follow the guide doing this steps: git clone https://github.com/telefonicaid/fiware-cygnus.git cd fiware-cygnus/cygnus-common mvn clean compile exec:exec assembly:single cp target/cygnus-common-1.1.0-jar-with-dependencies.jar /usr/cygnus/plugins.d/cygnus/libext mvn install:install-file -Dfile=/usr/cygnus/plugins.d/cygnus/libext/cygnus-common-1.1.0-jar-with-dependencies.jar -DgroupId=com.telefonica.iot -DartifactId=cygnus-common -Dversion=1.1.0 -Dpackaging=jar -DgeneratePom=false cp target/classes/cygnus-flume-ng /usr/cygnus/bin/cygnus-flume-ng cd ../cygnus-ngsi mvn clean compile exec:exec