techessay
techessay
  • Видео 136
  • Просмотров 204 666
Live !! Netflix App Deployment With DevSecOps Practices| A Real-world DevSecOps Project for Resume
Live !! Netflix App Deployment With DevSecOps Practices| A Real world DevSecOps Project for Resume-
Github Url-
github.com/saurabhsinghaniyas/NetflixDevSecOps.git
Tools and Technolgy Covered-
Platform =Azure/AWS/On Premise
Ubuntu
Github
Jenkins
SonarQube
Trivy
Node-Exporter
Docker
Docker-Hub
Graphana
Prometheus
etc
Просмотров: 556

Видео

Practical Limitation of ifconfig command solve it by ip command| Difference between ifconfig and ip
Просмотров 3810 месяцев назад
A PRACTICAL APPROCH TO KNOW DIFFRENCE BETWEEN THE "ip" AND "ifconfig" AND why use IP instead of IFCONFIG ifconfig sucks On Linux, ifconfig is an archaic network interface configuration command. The implementation commonly encountered, "net-tools", has a number of problems which make it more and more unsuitable. The list of replacements is below. 1. Does not support non-labeled secondary address...
Deploying modern web app inside docker container by using NGINX, s reverse proxy and load balancer
Просмотров 31810 месяцев назад
A Real World DevOps Project- Deploying RreactJS/NodeJS and Django APP inside docker container by using nginx reverse proxy and load balancer sticky session My Github Link for Reactdjango App- github.com/saurabhsinghaniyas/reactdjango.git Our Agenda of Today Videos will be- 1 Install And configure Azure VM with Ubuntu OS Image 2 Install nginx. 3 Install and configure docker. 4 Clone or Pull the ...
How to add an user in Linux without using USERADD/ADDUSER command
Просмотров 96Год назад
Follow these steps to create a user without using useradd command in Red Hat Linux. Step 1 Add an entry of user details in /etc/passwd The field details are as shown below username:password:UID:GID:Comments:Home_Directory:Login Shell # vi /etc/passwd user:x:501:501:test user:/home/user:/bin/bash Step 2 You will have to create a group with same name. So add a new entry in /etc/group # vi /etc/gr...
How to troubleshoot RHEL9 Linux errors faced during the boot process without any Data loss
Просмотров 109Год назад
Troubleshoot Several RHEL9 Linux Boot Process errors - We are going to Solve these Boot Errors 1. Not able to find kernel/vmlinuz file. Rhel8/9 You can use - Rescue Mode i-By using second kernel ii).By using the CD/USb drive 2. Not able to initialize/load initramfs kernel panic error. #dracut command although we can follow the same steps as kernel recovery file because installing the kernel fil...
Linux complete Storage management (Understand LVM concept Create PV,VG,LV, filesystems etc)
Просмотров 65Год назад
Agenda of this video is- Understand the Concept of Complete Storage Management in Linux ie After Watching this Video You are Fluently ⦁ Able to Attaching Disk to VM. ⦁ Able to Create the Primary Partitions either using fdisk/parted . ⦁ Able to Create the logical/extended Partitions. ⦁ Able to Create the Vgs ⦁ Able to create the Lvs ⦁ Able to Create the File systems ex. XFS,EXT1/2/3/4 etc either...
Linux basic file permission Complete tutorial
Просмотров 34Год назад
How do I manage permissions in RHEL9(Linux ? 1. Basic Permission (chmod) 2. Advance Permission (setfacl,getfacl) 3. Special Permission (umask,Sticky bit(SUID,SGID)) 1.Basic Permission- Chmod - Changes file/directory Command execution Permission Chown and chgrp- Changes user/group ownership of specified file/dir The change mode or chmod command sets permissions. The syntax is straight-forward: c...
RHEL9 Complete job scheduling by using crontab and at command
Просмотров 29Год назад
Agenda of this video- Understand Job Scheduling in Linux crontab and at Need of Job Scheduling- 1. We have to take daily Backup of server 2. We have to monitor our server (ram,process,disk etc) 3. We want to excute some commande at specific time etc What is crontab & how to administrate the crontab What Crontab do- Automate/Schedule your Linux system tasks. The cron daemon (crond) is a system-m...
Understanding RHEL9 SELinux and working with default targeted mode theory and practical
Просмотров 69Год назад
What is SELinux? Overview Security-Enhanced Linux (SELinux) is a security architecture for Linux systems that allows administrators to have more control over who can access the system. It was originally developed by the United States National Security Agency (NSA) as a series of patches to the Linux kernel using Linux Security Modules (LSM). SELinux was released to the open source community in ...
Working with Linux basic file permission by using chmod,chown,chgrp command Permissions PART-1
Просмотров 15Год назад
How do I manage permissions in RHEL9(Linux ? 1. Basic Permission chmod 2. Advance Permission ACL (setfacl,getfacl) , chattr/lsattr 3. Special Permission (umask,Sticky bit,(SUID,SGID)) 1.Basic Permission- Chmod - Changes file/directory Command execution Permission Chown and chgrp- Changes user/group ownership of specified file/dir The change mode or chmod command sets permissions. The syntax is ...
RHEL 9 working with advance permissions Complete Access Control List tutorial Permissions PART-2
Просмотров 37Год назад
Advance Permission ACL (setfacl,getfacl) , chattr/lsattr- ACLs allow us to apply a more specific set of permissions to a file or directory without (necessarily) changing the base ownership and permissions. They let us "tack on" access for other users or groups. setfacl [option] [action/specification] file getfacl file/directory_name Types of ACL- 1.User Based ACL 2.Group Based ACL Priority Rule...
RHEL9 working with Linux Special Permissions LIKE SUID,SGID, Sticky bit Permissions PART-3
Просмотров 30Год назад
Linux Special permissions: (SUID, SGID, and sticky bit)- Special Permission Numeric Value Symbolic value Sticky Bit 1 o t SGID 2 g s SUID 4 u s Syntax- #chmod 7777 /sample #chmod 777 /sample #chmod 0777 /sample user s (pecial) SUID Super User ID Commonly noted as SUID, the special permission for the user access level has a single function: A file with SUID always executes as the user who owns t...
RHEL9 Complete Network Management Part-1
Просмотров 54Год назад
RHEL9 Complete Network Management Part-1 Our Agenda - Understand basic concept of IPV4 How to set an Manual static IPv4 using #nmcli#nmtui#Filemetod rhel9 #ifconfig How to set DHCP IPv4 #nmcli#nmtui#Filemetod#ifconfig How to set Hostname hostnamectl, uses of /etc/hosts, /etc/resolv.conf Basic required Networking Command for Linux Admin ip,netstat,traceroute,nslookup,route,curl,wget,tcpdump etc ...
RHEL9 complete archival and compression using tar command
Просмотров 29Год назад
tar -The Linux ‘tar’ stands for tape archive, which is used to create Archive and extract the Archive files. tar command in Linux is one of the important commands which provides archiving and compression functionality in Linux. We can use the Linux tar command to create compressed or uncompressed Archive files and also maintain and modify them. Archive - An Archive file is a file that is compos...
RHEL 9 Changing default/current session target setting to graphical.target/multi-user.target
Просмотров 56Год назад
RHEL 9 Changing default/current session target setting to graphical.target/multi-user.target
Complete Installation and Configuration of NFS Client/Server and autofs share in RHEL9 VMs
Просмотров 20Год назад
Complete Installation and Configuration of NFS Client/Server and autofs share in RHEL9 VMs
RHEl-9 Complete podman project to host and run Apache server as systemd services
Просмотров 100Год назад
RHEl-9 Complete podman project to host and run Apache server as systemd services
Master the RHEL9 basic essential commands
Просмотров 21Год назад
Master the RHEL9 basic essential commands
Complete Installation and Configuration of SAMBA server and client on Windows 11 and RHEL9
Просмотров 248Год назад
Complete Installation and Configuration of SAMBA server and client on Windows 11 and RHEL9
Working with Linux default file & Directory Permissions with umask command | Linux Permissions part4
Просмотров 17Год назад
Working with Linux default file & Directory Permissions with umask command | Linux Permissions part4
RHCSA v9 real practical exam questions Solved Live & non edited to aware with errors
Просмотров 98Год назад
RHCSA v9 real practical exam questions Solved Live & non edited to aware with errors
What is sudoers file and how to use it to give sudo permission to any group,user|visudo command uses
Просмотров 20Год назад
What is sudoers file and how to use it to give sudo permission to any group,user|visudo command uses
Master vi/vim editor for Creating and editing text files from the command line in deatail
Просмотров 47Год назад
Master vi/vim editor for Creating and editing text files from the command line in deatail
How to setup ssh password-less authentication using PuttyGen and Putty
Просмотров 150Год назад
How to setup ssh password-less authentication using PuttyGen and Putty
Understand complete linux basic file system Hierarchy
Просмотров 58Год назад
Understand complete linux basic file system Hierarchy
Complete Concept of Linux inode , hard and soft links and create hard and soft links with use cases
Просмотров 52Год назад
Complete Concept of Linux inode , hard and soft links and create hard and soft links with use cases
Understanding linux basic bash shell expansions and pattern matching
Просмотров 61Год назад
Understanding linux basic bash shell expansions and pattern matching
Latest RHCSAv9 Ex-200 Exam Questions Complete Solution | RHCSAV9 Real Exam Questions
Просмотров 249Год назад
Latest RHCSAv9 Ex-200 Exam Questions Complete Solution | RHCSAV9 Real Exam Questions
RHEL 9 Complete process management by using ps and top command Complete theory and practical
Просмотров 22Год назад
RHEL 9 Complete process management by using ps and top command Complete theory and practical
VMWare pro and Red Hat Enterprise Linux 9 step by step Installation process On Windows 11
Просмотров 360Год назад
VMWare pro and Red Hat Enterprise Linux 9 step by step Installation process On Windows 11