وب سایت تخصصی شرکت فرین
دسته بندی دوره ها

Automate Linux in Cloud with Ansible in 100+ examples

سرفصل های دوره

Learn Ansible with some real-life examples of how to use the most common modules and Ansible Playbook


1 - Introduction
  • 1 - Introduction
  • 2 - Ansible AdHoc command ansible command
  • 3 - Ansible terminology What is an Ansible Playbook

  • 2 - Install Ansible
  • 4 - Ansible terminology ansible vs ansiblecore packages
  • 5 - How to install Ansible in RedHat Enterprise Linux 8
  • 6 - How to install Ansible in Amazon Linux 2 AWS EC2
  • 7 - How to install Ansible in Ubuntu 2004 LTS
  • 8 - How to install Ansible in Ubuntu 2110
  • 9 - How to install Ansible in Fedora 35
  • 10 - How to install Ansible in CentOS 8
  • 11 - How to install Ansible in CentOS Stream 8
  • 12 - How to install Ansible in Debian 11
  • 13 - How to install Ansible in OpenSUSE Leap 15
  • 14 - How to install Ansible in Rocky Linux 8
  • 15 - How to install Ansible in ArchLinux 20211201
  • 16 - How to install Ansible in Gentoo Linux
  • 17 - How to install Ansible in CentOS 9 Stream
  • 18 - How to install Ansible in AlmaLinux 8
  • 19 - How to install Ansible in SUSE Linux Enterprise Server SLES 15 SP3
  • 20 - How to install Ansible in Fedora 36 Ansible install
  • 21 - How to install Ansible in Ubuntu 2204 LTS Jammy Jellyfish Ansible Install
  • 22 - How to install Ansible in RedHat Enterprise Linux RHEL 91
  • 23 - How to install Ansible in Fedora 37 Ansible install
  • 24 - How to install Ansible in Fedora 38 Ansible install
  • 25 - How to install Ansible in Fedora 39 Ansible install

  • 3 - Ansible Playbook code for Linux
  • 26 - Test host availability Ansible module ping
  • 27 - Print a textvariable during execution Ansible module debug
  • 28 - Ansible modules command vs shell
  • 29 - Edit single line text Ansible module lineinfile
  • 30 - Edit multiline text Ansible module blockinfile
  • 31 - Pause execution Ansible module pause
  • 32 - Reboot remote hosts Ansible module reboot
  • 33 - Checkout git repository via HTTPS Ansible module git
  • 34 - Checkout git repository via SSH Ansible module git
  • 35 - Copy files to remote hosts Local to Remote Ansible module copy
  • 36 - Copy files from remote hosts Remote to Local Ansible module fetch
  • 37 - Start and enable services on boot on remote hosts Ansible module servicefacts
  • 38 - Restart services on remote hosts Ansible module service
  • 39 - Stop and disable services on boot on remote hosts Ansible module service
  • 40 - Apply a file template Ansible module template
  • 41 - Loop in file template Ansible module template Generate hosts file
  • 42 - Schedule a Cron Job task in Linux Ansible module cron
  • 43 - Submit a GET request to a REST API endpoint Interact with web services uri
  • 43 - list-users.zip
  • 44 - Token Based Authentication in REST API Interact with webservice Ansible uri
  • 45 - Set the SELinux Policy States and Modes on Linux Ansible module selinux
  • 45 - policy-modes.zip
  • 46 - Enable or Disable Permissive Domain in SELinux policy on Linux Ansible module
  • 47 - Vulnerability Scanner Log4Shell Remote Code Execution Log4j CVE202144228
  • 48 - Read an environment variable Ansible lookup plugin env
  • 49 - Backup With Rsync Local to Remote Ansible module synchronize
  • 50 - Three options to Safely Limit Ansible Playbooks Execution to a Single Machine
  • 51 - How to Run Only One Task in Ansible Playbook Ansible tags statement
  • 52 - Filter A List By Its Attributes Ansible selectattr filter

  • 4 - Ansible code to interact with Linux filesystem
  • 53 - Create an empty file Ansible module file
  • 54 - Create a text file Ansible module copy
  • 55 - Check if a file exists Ansible module stat
  • 56 - Create a directory Ansible module file
  • 57 - Check if a directory exists Ansible module stat
  • 58 - Rename file or directory Ansible module copy and file
  • 59 - Change file permission Ansible module file
  • 60 - Add Execute Permission 755 Linux file Ansible module file
  • 61 - Delete file or directory Ansible module file
  • 62 - Create a symbolic link also symlink or soft link in Linux Ansible module file
  • 63 - Create a hard link in Linux Ansible module file
  • 64 - Download a file Ansible module geturl
  • 65 - Extract an archive Ansible module unarchive
  • 66 - Mount a Windows share in Linux SMBCIFS Ansible module mount
  • 67 - Mount an NFS share in Linux Ansible module mount
  • 68 - Concatenate multiple files in a specific order Ansible module template and YAM
  • 69 - How to Delete Only Files Inside a Directory Ansible module find
  • 70 - Create ISO image from Files and Folders Ansible module isocreate
  • 70 - create-iso.zip

  • 5 - Ansible code for user management on Linux systems
  • 71 - Create a user account Ansible module user
  • 72 - Remove user account Ansible module user
  • 73 - Change user password Ansible module user
  • 74 - Disable user account Ansible module user
  • 75 - Enable user account Ansible module user
  • 76 - User password expiration Ansible module user
  • 77 - Create a group in Linux Ansible module group
  • 78 - Delete a group Ansible module group
  • 79 - Add a User to a Second Group on Linux Ansible module user
  • 80 - Change the User Primary Group on Linux Ansible module user

  • 6 - Ansible Playbook code for RedHatlike systems
  • 81 - Register a system with Red Hat SubscriptionManager Ansible module redhatsubs
  • 82 - Install a package in RedHat like systems Ansible module yum
  • 83 - Rolling Update RedHat like systems Ansible module yum
  • 84 - Open firewall ports in RedHat like systems Ansible module firewalld
  • 85 - Install Google Chrome in RedHatlike systems Ansible module rpmkey yumrepos
  • 86 - Install Microsoft Edge in RedHatlike systems Ansible module rpmkey yumrepo
  • 87 - NFS Server Export an NFS Share in RedHatlike systemssix Ansible modules
  • 88 - Deploy a web server apache httpd on RedHatlike systems Ansible modules yum c
  • 89 - Deploy a proxy server squid on RedHatlike systems Ansible modules yum templa

  • 7 - Ansible Playbook code for Debianlike systems
  • 90 - Install a package in Debian like systems Ansible module apt
  • 91 - Rolling Update Debianlike systems Ansible module apt
  • 92 - Open firewall ports in Debian like systems Ansible module ufw
  • 93 - Install Google Chrome in Debianlike systems Ansible module aptkey aptrepos
  • 94 - Install Microsoft Edge in Debianlike systems Ansible module aptkey aptrepo
  • 95 - Deploy Apache Web Server in a Docker Container for Debianlike systems Ansible

  • 8 - Ansible Troubleshooting of the most common errors
  • 96 - Ansible troubleshooting indentation error
  • 97 - Ansible troubleshooting privilege escalation error
  • 98 - Ansible troubleshooting connection failed
  • 99 - Ansible troubleshooting missing module parameter
  • 100 - Ansible troubleshooting Syntax Error
  • 101 - Ansible troubleshooting not a valid attribute for a Play error
  • 102 - Ansible troubleshooting fatal template error while templating string
  • 103 - Ansible troubleshooting missing sudo password and incorrect sudo password
  • 104 - Ansible troubleshooting undefined variable
  • 105 - Ansible troubleshooting invalid argument
  • 106 - Ansible troubleshooting This command has to be run under the root user
  • 107 - Ansible troubleshooting Failed to connect to the host via ssh host localhost p

  • 9 - Thank you
  • 108 - Thank you
  • 139,000 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    افزودن به سبد خرید
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    مدرس:
    شناسه: 34747
    حجم: 6131 مگابایت
    مدت زمان: 972 دقیقه
    تاریخ انتشار: ۱۱ اردیبهشت ۱۴۰۳
    دسته بندی محصول
    طراحی سایت و خدمات سئو

    139,000 تومان
    افزودن به سبد خرید