mercredi 27 janvier 2021
Is Serverless with Lambda, the “silver bullet”?
Par Arnaud Charlier, mercredi 27 janvier 2021 à 11:00 :: AWS
mercredi 27 janvier 2021
Par Arnaud Charlier, mercredi 27 janvier 2021 à 11:00 :: AWS
lundi 11 janvier 2021
Par Arnaud Charlier, lundi 11 janvier 2021 à 18:37 :: Un peu de tout
=SUBTOTAL(109;G2:G2054)https://www.excelcse.com/excel-subtotal-function/
jeudi 2 juillet 2020
Par Arnaud Charlier, jeudi 2 juillet 2020 à 16:43 :: Linux et Debian
du -sh /*
control-rRun task in Background
nohup command
lundi 18 mai 2020
Par Arnaud Charlier, lundi 18 mai 2020 à 18:19 :: Linux et Debian
mercredi 5 février 2020
Par Arnaud Charlier, mercredi 5 février 2020 à 14:21 :: Linux et Debian
jeudi 11 juillet 2019
Par Arnaud Charlier, jeudi 11 juillet 2019 à 01:13 :: Linux et Debian
mardi 2 juillet 2019
Par Arnaud Charlier, mardi 2 juillet 2019 à 12:19 :: Linux et Debian
Par Arnaud Charlier, mardi 2 juillet 2019 à 10:20 :: Linux et Debian
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 -SnList open file per process or per user
lsof -p {pid}| wc -l lsof -u {youruser} |wc -lList Network connection per state
netstat -an|awk '/tcp/ {print $6}'|sort|uniq -cList 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
mercredi 10 avril 2019
Par Arnaud Charlier, mercredi 10 avril 2019 à 22:57 :: Linux et Debian
In order to use the ssh-key in Bastion and leap-frog to protected server
Make sure the ssh agent is runningeval `ssh-agent -s`then add your key
ssh-add -k your-key.pem ssh-add -LThen use the ssh agent
ssh -A ec2-user@your-iphttps://www.daveeddy.com/2017/10/18/persistent-sshagent-on-bash-on-ubuntu-on-windows/ https://medium.com/@crishantha/handing-bastion-hosts-on-aws-via-ssh-agent-forwarding-f1d2d4e8622a
mercredi 20 février 2019
Par Arnaud Charlier, mercredi 20 février 2019 à 19:00 :: AWS
vendredi 1 février 2019
Par Arnaud Charlier, vendredi 1 février 2019 à 13:07 :: Linux et Debian
dd if=/dev/xvdf of=/dev/xvdg bs=4096just monitor progress this way.
watch -n5 'sudo kill -USR1 $(pgrep ^dd)'Some more fancy progress tools : https://www.cyberciti.biz/faq/linux-unix-dd-command-show-progress-while-coping/
vendredi 18 janvier 2019
Par Arnaud Charlier, vendredi 18 janvier 2019 à 12:02 :: Linux et Debian
For Amazon Linux 2 or the Amazon Linux AMI, the user name is ec2-user. For a Centos AMI, the user name is centos. For a Debian AMI, the user name is admin or root. For a Fedora AMI, the user name is ec2-user or fedora.For a RHEL AMI, the user name is ec2-user or root. For a SUSE AMI, the user name is ec2-user or root. For an Ubuntu AMI, the user name is ubuntu. Otherwise, if ec2-user and root don't work, check with the AMI provider.
vendredi 11 janvier 2019
Par Arnaud Charlier, vendredi 11 janvier 2019 à 13:32 :: AWS