Commit 84ec7ce 1 parent 33c74e6 commit 84ec7ce Copy full SHA for 84ec7ce
File tree 3 files changed +16
-9
lines changed
simulation-system/libs/csle-common/src/csle_common/constants
3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change 50
50
"cluster_config" : {
51
51
"cluster_nodes" : [
52
52
{
53
- "ip" : " 127.0.0.1 " ,
53
+ "ip" : " 172.31.212.92 " ,
54
54
"leader" : true ,
55
- "cpus" : 24 ,
56
- "gpus" : 0 ,
57
- "RAM" : 192
55
+ "cpus" : 96 ,
56
+ "gpus" : 4 ,
57
+ "RAM" : 755
58
+ },
59
+ {
60
+ "ip" : " 172.31.212.91" ,
61
+ "leader" : false ,
62
+ "cpus" : 16 ,
63
+ "gpus" : 2 ,
64
+ "RAM" : 126
58
65
}
59
66
]
60
67
},
Original file line number Diff line number Diff line change @@ -228,15 +228,15 @@ The simulation system consists of a set of Python libraries and a set of configu
228
228
To install the simulation system, the Python libraries need to be installed and
229
229
the configuration files need to be inserted into the metastore.
230
230
231
- If you do not have Python >3.9 in your base environment, start with installing Python 3.9 by running the commands:
231
+ If you do not have Python >3.9 in your base environment, start with installing Python 3.11 by running the commands:
232
232
233
233
``` bash
234
- conda create -n py39 python=3.9
235
- conda activate py39 # alternatively, "source activate py39" for old versions of conda
234
+ conda create -n py311 python=3.11
235
+ conda activate py311 # alternatively, "source activate py39" for old versions of conda
236
236
```
237
237
238
238
<p class =" captionFig " >
239
- Listing 24: Command to install Python 3.9 using Anaconda.
239
+ Listing 24: Command to install Python 3.11 using Anaconda.
240
240
</p >
241
241
242
242
The simulation system includes 17 Python libraries:
Original file line number Diff line number Diff line change @@ -1618,7 +1618,7 @@ class METADATA_STORE:
1618
1618
DBNAME = "csle"
1619
1619
USER = "csle"
1620
1620
PASSWORD = "csle"
1621
- HOST = "127.0.0.1 "
1621
+ HOST = "172.31.212.92 "
1622
1622
TRACES_PROPERTY = "traces"
1623
1623
DB_NAME_PROPERTY = "dbname"
1624
1624
PW_PROPERTY = "password"
You can’t perform that action at this time.
0 commit comments