appstore-1panel/apps/sonarqube/9.9.6-community/scripts/init.sh

10 lines
271 B
Bash
Raw Normal View History

2024-04-23 16:26:15 +08:00
#!/bin/bash
if [ -f "/etc/sysctl.conf" ]; then
grep -qxF 'vm.max_map_count=262144' /etc/sysctl.conf || echo 'vm.max_map_count=262144' >> /etc/sysctl.conf
sysctl -p /etc/sysctl.conf >/dev/null
else
sysctl -w vm.max_map_count=262144
fi
chown -R 1000:1000 data