Skip to content

Commit

Permalink
fix typos in run scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Limmen committed May 9, 2024
1 parent 99fc848 commit eca5694
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions docs/_docs/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -848,8 +848,9 @@ npm run build
Listing 78: Commands to install the web application of the CSLE management system.
</p>

| Note: when you run the command `npm install` you may need to add the flag `--legacy-peer-deps`. Further, if you have an old operating system you may need to run the command `export NODE_OPTIONS=--openssl-legacy-provider` before running `npm run build` |
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
Note: when you run the command `npm install` you may need to add the flag `--legacy-peer-deps`.
Further, if you have an old operating system you may need to
run the command `export NODE_OPTIONS=--openssl-legacy-provider` before running `npm run build`

Next, install and start `pgadmin` **on the leader** by running the following commands:
```bash
Expand Down
4 changes: 2 additions & 2 deletions management-system/csle_mgmt_webapp.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

cd csle_monitor; npm run build
cd csle-mgmt-webapp; npm run build

cd csle_monitor; python server/server.py &
cd csle-mgmt-webapp; python server/server.py &
2 changes: 1 addition & 1 deletion management-system/run_c_advisor.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

docker run -dt --volume=/:/rootfs:ro --volume=/var/run:/var/run:ro --volume=/sys:/sys:ro --volume=/var/lib/docker/:/var/lib/docker:ro --volume=/dev/disk/:/dev/disk:ro --publish=8080:8080 --name=cadvisor google/cadvisor:latest
docker run -dt --volume=/:/rootfs:ro --volume=/var/run:/var/run:ro --volume=/sys:/sys:ro --volume=/var/lib/docker/:/var/lib/docker:ro --volume=/dev/disk/:/dev/disk:ro --publish=8080:8080 --name=cadvisor gcr.io/cadvisor/cadvisor

0 comments on commit eca5694

Please sign in to comment.