Details
-
Type: extRequest
-
Status: Closed
-
Priority: Major
-
Resolution: Done
-
Fix Version/s: 2021
-
Component/s: FIWARE-TECH-HELP
-
Labels:None
-
Sender Email:
-
HD-Chapter:Data
-
HD-Enabler:Orion
Description
hey ,
Im manasa , Telecommunications student
i have created a fiware account and as well using my fiware lab instances
and learned how to access the instance
For creating a project with using sensors to send data to cloud instance in
Fiware lab , i have been trying so hard by using API keys . i have also
tried to use tourguide application and fiware figway tools .
i have stuck at how to create a IDAS Service and also use a context broker
and link them to Fiware instances.
Every documentation i found starts from using a context broker and
registering a device but i would like to know all the prerequisities like
Creating an iot service at first point , getting a IDAS HOST point and a
context broker service to create a entire platform and the backend services
for a simple iot project .
I hope that the above information is understandable and a solution can be
provided
thanking you.
U.Manasa
__________________________________________________________________________________________
You can get more information about our cookies and privacy policies on the following links:
- http://forge.fiware.org/plugins/mediawiki/wiki/fiware/index.php/FIWARE_Privacy_Policy
- http://forge.fiware.org/plugins/mediawiki/wiki/fiware/index.php/Cookies_Policy_FIWARE
Fiware-lab-help mailing list
Fiware-lab-help@lists.fiware.org
https://lists.fiware.org/listinfo/fiware-lab-help
[Created via e-mail received from: Ummadi Manasa <ummadi.manasa@gmail.com>]
Activity
Field | Original Value | New Value |
---|---|---|
Component/s | FIWARE-LAB-HELP [ 10279 ] |
Assignee | Jose Manuel Cantera [ jmcantera ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | Answered [ 10104 ] |
Resolution | Done [ 10000 ] | |
Status | Answered [ 10104 ] | Closed [ 6 ] |
HD-Enabler | Orion [ 10875 ] | |
HD-Chapter | Data [ 10838 ] |
Component/s | FIWARE-TECH-HELP [ 10278 ] | |
Component/s | FIWARE-LAB-HELP [ 10279 ] |
Fix Version/s | 2021 [ 12600 ] |
Transition | Time In Source Status | Execution Times | Last Executer | Last Execution Date | |||||
---|---|---|---|---|---|---|---|---|---|
|
4d 21h 28m | 1 | Jose Manuel Cantera | 04/Apr/17 10:37 AM | |||||
|
7d 21h 47m | 1 | Jose Manuel Cantera | 12/Apr/17 8:24 AM | |||||
|
5d 2h 24m | 1 | Jose Manuel Cantera | 17/Apr/17 10:48 AM |
Hi,
You need basically to instantiate three different components:
A/ MongoDB
B/ An IoT Agent. I would recommend you instantiate the IoT Agent UL
C/ A Context Broker
My recommendation is that you use docker for testing this locally, namely:
A:
docker run --name mongo_showcases -v $HOME/data/mongo:/data/db -d -h mongo -p 27017:27017 mongo:3.2
B:
docker run -d --link orion_showcases --link mongo_showcases -p 4041:4041 -p 7896:7896 -h iota --name iota_ul fiware/iotagent-ul
C:
docker run --name orion_showcases -d -p 1026:1026 --link mongo_showcases -h orion fiware/orion:latest -dbhost mongo
Then you can create a new configuration and register devices by following the steps detailed in the Tour Guide:
http://fiwaretourguide.readthedocs.io/en/latest/connection-to-the-internet-of-things/how-to-read-measures-captured-from-iot-devices/
Basically, you need to create a new service, register a new device and finally post data to the corresponding UL 2.0 end point (port 7896).