HOWTO_RUN.txt
1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
*******************************
Here is how you can RUN pyros
*******************************
-------------------------------------------
(A) Command-line running (no web interface):
-------------------------------------------
(1) Running pyros interactively:
$ [python] ./pyros.py shell
(2) Launching an agent:
$ [python] ./pyros.py start <agent-name>
=> Ex: to start the env-monitoring agent:
$ [python] ./pyros.py start monitoring
=> Ex: to start agentA:
$ [python] ./pyros.py start agentA
(3) Launching many agents:
$ [python] ./pyros.py start <agent1-name>,<agent2-name>,.
=> Ex: start agentA and agentB
$ [python] ./pyros.py start agentA,agentB
=> You could also start ALL agents at once:
$ [python] ./pyros.py start all
-------------------------------------------
(B) Running with the website
-------------------------------------------
(1) Start only the webserver (for pyros website)
$ [python] ./pyros.py start webserver
Then, connect to http://localhost:8000
You can also connect to the admin interface: http://localhost:8000/admin
(Login as 'pyros' with the password 'DjangoPyros')
(2) Now, you can start some (or all) agents to have the website come to life !
See section (A) just above