Fixed Issue #127 : Redirection issue and a typo in monitoring script (#128)

* fix redirection issue by adding https://

* add missing '#' in monitoring script
pull/130/head
Bhavya Tyagi 3 years ago committed by GitHub
parent 9251e0720c
commit b29706e85e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -177,7 +177,7 @@ This limit is too low and hence most of the processes attached to mem_group shou
The process is OOM killed as expected. You can confirm the same with dmesg logs (mm_fault_error).
If you want to try out a more in-depth exercise on cgroups, check out [this tutorial from Geeks for Geeks](geeksforgeeks.org/linux-virtualization-resource-throttling-using-cgroups/).
If you want to try out a more in-depth exercise on cgroups, check out [this tutorial from Geeks for Geeks](https://geeksforgeeks.org/linux-virtualization-resource-throttling-using-cgroups/).
Lets come back to containers again. Containers share the same kernel as the underlying host operating system and provide an isolated environment of the application within. Cgroups help in managing resources used by processes within a container and namespaces help isolate network stack, pids, users, group ids and mount points in a container from another container running on the same host.

@ -158,7 +158,7 @@ We usually come up with tasks that are mostly repetitive, looping helps us to co
| until | until \[ expression \] <br><br>do <br><br>    \[ until\_block\_to_execute \]<br><br>done |
```
!/bin/bash
#!/bin/bash
#Script to monitor the server
hosts=`cat host_list`

Loading…
Cancel
Save