mirror of
https://github.com/vacp2p/wakurtosis.git
synced 2026-01-10 07:18:02 -05:00
18 lines
467 B
Bash
Executable File
18 lines
467 B
Bash
Executable File
#!/bin/sh
|
|
|
|
kurtosis engine stop
|
|
|
|
ulimit -n $(ulimit -n -H)
|
|
ulimit -u $(ulimit -u -H)
|
|
|
|
sudo sysctl -w net.ipv4.neigh.default.gc_thresh1=16384
|
|
sudo sysctl -w net.ipv4.neigh.default.gc_thresh2=28672
|
|
sudo sysctl -w net.ipv4.neigh.default.gc_thresh3=32768
|
|
sudo sysctl fs.inotify.max_user_instances=1048576
|
|
sudo sysctl -w vm.max_map_count=262144
|
|
|
|
sudo docker container rm -f $(docker container ls -aq)
|
|
sudo docker volume rm -f $(docker volume ls -q)
|
|
|
|
kurtosis engine start
|