Loading...

PHP-FPM Installation and Setup

  Web server PHP should not run under the same uid/gid (user/group) as the web server (“apache”, “www-data”, “nginx”, etc.). This problem is common when running Apache with mod_php, or [ … ]

ClamAV

Overview ClamAV is an open source antivirus engine for detecting trojans, viruses, malware & other malicious threats Installation RHEL / Cent ### Requires EPEL  yum install clamav clamav-update -y   [ … ]

YUM Commands

1) How to display a list of updated software and security fix yum list updates 2) How to find out whether updates exist for packages that are already installed on [ … ]

Python commands for DevOps Phase 1

1. File Operations  Read a file: python with open(‘file.txt’, ‘r’) as file: content = file.read() print(content)  Write to a file: python with open(‘output.txt’, ‘w’) as file: file.write(‘Hello, DevOps!’) [ … ]

Ansible Project

LAMP Stack Setup and Web Application Deployment with Ansible 1. Playbook to Install and Configure Docker yaml — – name: Install and Configure Docker hosts: all become: yes tasks: – [ … ]