Devops interview questions for experienced:
DevOps Interview Questions for 5 Years Experienced (Practical + Real-Time) For 5 years experience, companies mostly expect: Linux Administration AWS / Cloud Docker Kubernetes Terraform Jenkins CI/CD Monitoring Troubleshooting Production Support Automation Security Basics 1. Linux Interview Questions Q1. How do you check CPU and memory usage? top htop free -m vmstat sar Q2. How do you check disk usage? df -h du -sh * lsblk Q3. How do you find top memory consuming process? ps -aux --sort=-%mem | head top Q4. How do you check open ports? netstat -tulnp ss -tulnp lsof -i Q5. How do you troubleshoot server down issue? Practical Steps ping server-ip ssh user@server top df -h free -m journalctl -xe systemctl status nginx 2. AWS Interview Questions Q6. How do you check EC2 server status? aws ec2 describe-instances Q7. How do you copy file to S3? aws s3 cp file.txt s3://bucket-name/ Q8. How do you sync folders to S3? aws s3 sync /data s3://backup-bucket Q9. How do you troubleshoot Load Balancer...