vendredi 28 juin 2019
AWS Athena : Partition
Par Arnaud Charlier, vendredi 28 juin 2019 à 11:46 :: Linux et Debian
Quick Tips AWS athena
vendredi 28 juin 2019
Par Arnaud Charlier, vendredi 28 juin 2019 à 11:46 :: Linux et Debian
jeudi 20 juin 2019
Par Arnaud Charlier, jeudi 20 juin 2019 à 12:44 :: Linux et Debian
sudo su {user}
#all limit
ulimit -a
#Ulimite -hard:
ulimit -Hn
#Ulimite -Soft:
ulimit -Sn
List open file per process or per user
lsof -p {pid}| wc -l
lsof -u {youruser} |wc -l
List Network connection per state
netstat -an|awk '/tcp/ {print $6}'|sort|uniq -c
List php-fpm process running
ps aux | grep php-fpm | wc -l
sudo vi /etc/security/limits.conf * soft nofile 65000 //for all user user soft nofile 5000 // for a specific user