- 74
- 16 457
The SysAdm
India
เข้าร่วมเมื่อ 11 มิ.ย. 2014
🌐 Welcome to The SysAdm - Your Ultimate Linux Guide! 🌐
Are you ready to embark on a journey into the world of Linux and open-source technology? You've come to the right place!
🖥️ Our Mission:
At SysAdm, we're dedicated to demystifying Linux and empowering enthusiasts, beginners, and tech aficionados alike. Our mission is to provide you with clear, concise, and engaging tutorials that cover a wide range of Linux topics and related technologies.
🤝 Join Our Community:
We're not just a channel; we're a community of Linux enthusiasts who love to share knowledge, answer questions, and grow together. Join us in our journey towards Linux mastery!
🔔 Don't forget to hit that subscribe button and ring the notification bell so you never miss a tutorial. Whether you're a hobbyist, a developer, or an IT professional, there's always something new to learn in the world of Linux.
Let's explore the limitless possibilities of Linux together! 💡🐧
#linuxbasics #linuxadministration #devops
Are you ready to embark on a journey into the world of Linux and open-source technology? You've come to the right place!
🖥️ Our Mission:
At SysAdm, we're dedicated to demystifying Linux and empowering enthusiasts, beginners, and tech aficionados alike. Our mission is to provide you with clear, concise, and engaging tutorials that cover a wide range of Linux topics and related technologies.
🤝 Join Our Community:
We're not just a channel; we're a community of Linux enthusiasts who love to share knowledge, answer questions, and grow together. Join us in our journey towards Linux mastery!
🔔 Don't forget to hit that subscribe button and ring the notification bell so you never miss a tutorial. Whether you're a hobbyist, a developer, or an IT professional, there's always something new to learn in the world of Linux.
Let's explore the limitless possibilities of Linux together! 💡🐧
#linuxbasics #linuxadministration #devops
Full DevOps Project With Code Analysis | CD Pipeline| Auto Trigger Pipeline | Part - 6
#CICDPipeline #jenkins #docker #maven #OWASPDependencyCheck #sonarqube #devopstutorial #JenkinsPlugins #codesecurity #continuousintegration #continuousdelivery #devsecops #codingtutorial #linux #git #dockerfile #devops #jenkins #dockerfile #ci_cd #github #dockerhub #automation #devopspipeline #clouddeployment #ubuntu
Learn to build a powerful *CI/CD pipeline* using *Jenkins*, *Docker*, and *Maven* for seamless code integration and delivery. In this tutorial, we’ll walk you through setting up a CI/CD pipeline from scratch, covering *code compilation and build automation with Maven, security vulnerability scanning with OWASP Dependency Check*, and *code quality analysis using SonarQube*. We also explore essential *Jenkins plugins* that will streamline automation, reporting, and security in your CI/CD process.
In this comprehensive DevOps tutorial, we walk you through the process of setting up a complete *CI/CD pipeline* to deploy applications on a *docker* container using tools like *Jenkins* , *Maven* , *Docker* , *GitHub* , *DockerHub* , *SonarQube* , *OWASP*. Whether you're new to DevOps or want to enhance your skills, this guide will cover all essential aspects of modern DevOps automation.
Pre-requisites : *Github, Linux, Jenkins, Docker, DockerHub Account*
Server Requirement : 1 EC2 Instance
-----------------------------------------------------------------------------
A) 1 t2.xlarge EC2 Instance for *Jenkins* , *Docker* , *SonarQube*
*For Jenkins Installation on Ubuntu*
----------------------------------------------------------
www.jenkins.io/doc/book/installing/linux/#debianubuntu
*For Dockerhub Account Creation*
--------------------------------------------------------
docs.docker.com/accounts/create-account/#:~:text=You%20can%20create%20a%20free,Docker%20products%2C%20including%20Docker%20Hub.
*Github Code*
-----------------------------------
github.com/UjjalKrRoy/online-shopping.git
*For SonarQube Installation on Ubuntu using docker*
----------------------------------------------------------
docker run -d -p 9000:9000 sonarqube:lts-community
*CD-Pipeline Script*
*====================================================*
pipeline {
agent any
stages {
stage('Docker Deploy to Container') {
steps {
script {
withDockerRegistry(credentialsId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', toolName: 'docker') {
sh "docker run -d --name shopping-cart -p 8070:8070 ujjalroy/shopping:latest"
}
}
}
}
}
}
*====================================================*
📌 *In this video, What you'll learn:*
Configuring Jenkins with Docker for efficient CI/CD
Using Maven to compile and build code for a complete automation pipeline
Setting up OWASP Dependency Check to detect vulnerabilities in project dependencies
Integrating SonarQube for robust code analysis and quality checks
Leveraging key Jenkins plugins for enhanced CI/CD pipeline performance and functionality
Best practices for secure, scalable CI/CD in DevOps environments
This video is ideal for DevOps engineers, software developers, and tech enthusiasts aiming to master CI/CD pipelines with Jenkins, Docker, and Maven. Subscribe for more in-depth DevOps tutorials, and don’t forget to hit the bell 🔔 for updates!
By the end of this video, you’ll be able to set up an automated DevOps pipeline with code analysing that manages application deployment on docker container using *Jenkins, Maven, Docker, SonarQube, OWASP and GitHub.* Perfect for DevOps engineers, developers, and system administrators!
Don’t forget to *like*, *share*, and *subscribe* for more DevOps tutorials!
▬▬▬▬▬▬ *Configuring DevOps CI/CD Pipeline* ▬▬▬▬▬▬
► th-cam.com/play/PL9reO5hiB7qrXPINuk71AA-WjSH5-SsjF.html
▬▬▬▬▬▬ *Configuring Kubernetes Cluster* ▬▬▬▬▬▬
► th-cam.com/video/qU73Lw2-X5g/w-d-xo.html
▬▬▬▬▬▬ *Connect with me* ▬▬▬▬▬▬
LINKEDIN
► t.ly/Zb17d
WHATSAPP CHANNEL
► whatsapp.com/channel/0029Va8A1q63AzNRJrfYq81c
Learn to build a powerful *CI/CD pipeline* using *Jenkins*, *Docker*, and *Maven* for seamless code integration and delivery. In this tutorial, we’ll walk you through setting up a CI/CD pipeline from scratch, covering *code compilation and build automation with Maven, security vulnerability scanning with OWASP Dependency Check*, and *code quality analysis using SonarQube*. We also explore essential *Jenkins plugins* that will streamline automation, reporting, and security in your CI/CD process.
In this comprehensive DevOps tutorial, we walk you through the process of setting up a complete *CI/CD pipeline* to deploy applications on a *docker* container using tools like *Jenkins* , *Maven* , *Docker* , *GitHub* , *DockerHub* , *SonarQube* , *OWASP*. Whether you're new to DevOps or want to enhance your skills, this guide will cover all essential aspects of modern DevOps automation.
Pre-requisites : *Github, Linux, Jenkins, Docker, DockerHub Account*
Server Requirement : 1 EC2 Instance
-----------------------------------------------------------------------------
A) 1 t2.xlarge EC2 Instance for *Jenkins* , *Docker* , *SonarQube*
*For Jenkins Installation on Ubuntu*
----------------------------------------------------------
www.jenkins.io/doc/book/installing/linux/#debianubuntu
*For Dockerhub Account Creation*
--------------------------------------------------------
docs.docker.com/accounts/create-account/#:~:text=You%20can%20create%20a%20free,Docker%20products%2C%20including%20Docker%20Hub.
*Github Code*
-----------------------------------
github.com/UjjalKrRoy/online-shopping.git
*For SonarQube Installation on Ubuntu using docker*
----------------------------------------------------------
docker run -d -p 9000:9000 sonarqube:lts-community
*CD-Pipeline Script*
*====================================================*
pipeline {
agent any
stages {
stage('Docker Deploy to Container') {
steps {
script {
withDockerRegistry(credentialsId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx', toolName: 'docker') {
sh "docker run -d --name shopping-cart -p 8070:8070 ujjalroy/shopping:latest"
}
}
}
}
}
}
*====================================================*
📌 *In this video, What you'll learn:*
Configuring Jenkins with Docker for efficient CI/CD
Using Maven to compile and build code for a complete automation pipeline
Setting up OWASP Dependency Check to detect vulnerabilities in project dependencies
Integrating SonarQube for robust code analysis and quality checks
Leveraging key Jenkins plugins for enhanced CI/CD pipeline performance and functionality
Best practices for secure, scalable CI/CD in DevOps environments
This video is ideal for DevOps engineers, software developers, and tech enthusiasts aiming to master CI/CD pipelines with Jenkins, Docker, and Maven. Subscribe for more in-depth DevOps tutorials, and don’t forget to hit the bell 🔔 for updates!
By the end of this video, you’ll be able to set up an automated DevOps pipeline with code analysing that manages application deployment on docker container using *Jenkins, Maven, Docker, SonarQube, OWASP and GitHub.* Perfect for DevOps engineers, developers, and system administrators!
Don’t forget to *like*, *share*, and *subscribe* for more DevOps tutorials!
▬▬▬▬▬▬ *Configuring DevOps CI/CD Pipeline* ▬▬▬▬▬▬
► th-cam.com/play/PL9reO5hiB7qrXPINuk71AA-WjSH5-SsjF.html
▬▬▬▬▬▬ *Configuring Kubernetes Cluster* ▬▬▬▬▬▬
► th-cam.com/video/qU73Lw2-X5g/w-d-xo.html
▬▬▬▬▬▬ *Connect with me* ▬▬▬▬▬▬
► t.ly/Zb17d
WHATSAPP CHANNEL
► whatsapp.com/channel/0029Va8A1q63AzNRJrfYq81c
มุมมอง: 43
วีดีโอ
Full DevOps Project With Code Analysis | CI Pipeline | Groovy Script, Pipeline Syntax | Part - 5
มุมมอง 109วันที่ผ่านมา
#CICDPipeline #jenkins #docker #maven #OWASPDependencyCheck #sonarqube #devopstutorial #JenkinsPlugins #codesecurity #continuousintegration #continuousdelivery #devsecops #codingtutorial #linux #git #dockerfile #devops #jenkins #dockerfile #ci_cd #github #dockerhub #automation #devopspipeline #clouddeployment #ubuntu Learn to build a powerful *CI/CD pipeline* using *Jenkins*, *Docker*, and *Mav...
Full DevOps Project With Code Analysis | Jenkins | Install Plugins & Configure Tools | Part - 4
มุมมอง 60วันที่ผ่านมา
#CICDPipeline #jenkins #docker #maven #OWASPDependencyCheck #sonarqube #devopstutorial #JenkinsPlugins #codesecurity #continuousintegration #continuousdelivery #devsecops #codingtutorial #linux #git #dockerfile #devops #jenkins #dockerfile #ci_cd #github #dockerhub #automation #devopspipeline #clouddeployment #ubuntu Learn to build a powerful *CI/CD pipeline* using *Jenkins*, *Docker*, and *Mav...
Full DevOps Project With Code Analysis | Sonarqube Installation | SonarQube Configuration | Part - 3
มุมมอง 20วันที่ผ่านมา
#CICDPipeline #jenkins #docker #maven #OWASPDependencyCheck #sonarqube #devopstutorial #JenkinsPlugins #codesecurity #continuousintegration #continuousdelivery #devsecops #codingtutorial #linux #git #dockerfile #devops #jenkins #dockerfile #ci_cd #github #dockerhub #automation #devopspipeline #clouddeployment #ubuntu Learn to build a powerful *CI/CD pipeline* using *Jenkins*, *Docker*, and *Mav...
Full DevOps Project With Code Analysis | AWS EC2 | Jenkins & Docker Installation | Part - 2
มุมมอง 277วันที่ผ่านมา
#CICDPipeline #jenkins #docker #maven #OWASPDependencyCheck #sonarqube #devopstutorial #JenkinsPlugins #codesecurity #continuousintegration #continuousdelivery #devsecops #codingtutorial #linux #git #dockerfile #devops #jenkins #dockerfile #ci_cd #github #dockerhub #automation #devopspipeline #clouddeployment #ubuntu Learn to build a powerful *CI/CD pipeline* using *Jenkins*, *Docker*, and *Mav...
Full DevOps Project With Code Analysis | Deploying Container with Jenkins CI/CD | Intro | Part - 1
มุมมอง 155วันที่ผ่านมา
#CICDPipeline #jenkins #docker #maven #OWASPDependencyCheck #sonarqube #devopstutorial #JenkinsPlugins #codesecurity #continuousintegration #continuousdelivery #devsecops #codingtutorial #linux #git #dockerfile #devops #jenkins #dockerfile #ci_cd #github #dockerhub #automation #devopspipeline #clouddeployment #ubuntu Learn to build a powerful *CI/CD pipeline* using *Jenkins*, *Docker*, and *Mav...
MS SQL Tutorial in Bengali | Cascading ReferentialIntegrity Constraints - Part-5
มุมมอง 5วันที่ผ่านมา
Understanding *Cascading Referential Integrity Constraints* is essential for database management and ensuring data accuracy. In this video, we’ll dive into what cascading referential integrity constraints are, why they’re critical in relational databases, and how they enforce data consistency by automating changes across linked tables. We’ll explore the different types of cascading actions, inc...
SSH Configuration Tutorial: PPK File, PasswordLogin, Password-lessAuth (Linux & Windows), RootAccess
มุมมอง 169หลายเดือนก่อน
#SSHConfiguration #PasswordlessAuthentication #PPKFile #LinuxSSH #WindowsSSH #RootLogin #SSHKeypair #securelogin #devopstutorialsforbeginners #SysadminTips #SSHTutorial #LinuxToWindows #SSHAuthentication #serversecurity #techtutorial Learn how to configure SSH with this comprehensive tutorial! We'll cover everything from creating your own .ppk file and logging in with a password instead of a ke...
MS SQL Tutorial in Bengali | Altering an existing column to add a default constraint - Part-4
มุมมอง 7หลายเดือนก่อน
In this tutorial, you will learn how to *alter an existing column* in a Microsoft SQL Server (MS SQL) database to add a *default constraint*. A default constraint is useful when you want to ensure that a column always has a default value if no value is provided during the insertion of data. #mssql #sqlserver #databasemanagementsystems #DefaultConstraint #sqltutorial #tsql #AlterTable #sqlserver...
MS SQL Tutorial in Bengali | Enforcing primary key & foreign key constraints - Part-3
มุมมอง 16หลายเดือนก่อน
#mssqlserver #database #mssql #createdatabase #tutorial #howto #searching #sql #sqlserver #sqlforbeginners #sqltraining In this tutorial, you'll learn how to *create tables* in *Microsoft SQL Server (MS SQL)* and enforce *primary key* and *foreign key* constraints to ensure data integrity. Whether you're a beginner in SQL or looking to enhance your database design skills, this step-by-step guid...
Complete Real-World DevOps Project | Deploy using K8S from Ansible | Replicaset & Pod | Part - 7
มุมมอง 168หลายเดือนก่อน
#linux #k8s #git #dockerfile #DevOps #Kubernetes #Jenkins #Docker #Ansible #CI_CD #GitHub #DockerHub #Webhooks #ReplicaSet #NodePort #Automation #DevOpsPipeline #Dockerfile #CloudDeployment #K8s #Ubuntu In this comprehensive DevOps tutorial, we walk you through the process of setting up a complete *CI/CD pipeline* to deploy applications on a *Kubernetes* cluster using tools like *Jenkins* , *An...
Complete Real-World DevOps Project | Push image to Dockerhub | Jenkins withCredentials | Part - 6
มุมมอง 135หลายเดือนก่อน
#linux #k8s #git #dockerfile #DevOps #Kubernetes #Jenkins #Docker #Ansible #CI_CD #GitHub #DockerHub #Webhooks #ReplicaSet #NodePort #Automation #DevOpsPipeline #Dockerfile #CloudDeployment #K8s #Ubuntu In this comprehensive DevOps tutorial, we walk you through the process of setting up a complete *CI/CD pipeline* to deploy applications on a *Kubernetes* cluster using tools like *Jenkins* , *An...
Complete Real-World DevOps Project | Build docker image from Dockerfile| Docker tag image | Part - 4
มุมมอง 109หลายเดือนก่อน
#linux #k8s #git #dockerfile #DevOps #Kubernetes #Jenkins #Docker #Ansible #CI_CD #GitHub #DockerHub #Webhooks #ReplicaSet #NodePort #Automation #DevOpsPipeline #Dockerfile #CloudDeployment #K8s #Ubuntu In this comprehensive DevOps tutorial, we walk you through the process of setting up a complete *CI/CD pipeline* to deploy applications on a *Kubernetes* cluster using tools like *Jenkins* , *An...
Complete Real-World DevOps Project |Passwordless auth & transfer file| Trigger job Jenkins| Part - 4
มุมมอง 376หลายเดือนก่อน
Complete Real-World DevOps Project |Passwordless auth & transfer file| Trigger job Jenkins| Part - 4
Complete Real-World DevOps Project | Dockerfile | Auto trigger using webhook from github | Part - 3
มุมมอง 482หลายเดือนก่อน
Complete Real-World DevOps Project | Dockerfile | Auto trigger using webhook from github | Part - 3
Complete Real-World DevOps Project | Setup Server | Configure Jenkins, Ansible, Docker | Part - 2
มุมมอง 1.3Kหลายเดือนก่อน
Complete Real-World DevOps Project | Setup Server | Configure Jenkins, Ansible, Docker | Part - 2
Complete Real-World DevOps Project | Deploying on K8S with Jenkins CI/CD | Introduction | Part - 1
มุมมอง 1.7Kหลายเดือนก่อน
Complete Real-World DevOps Project | Deploying on K8S with Jenkins CI/CD | Introduction | Part - 1
MS SQL Tutorial in Bengali | সহজ বাংলায় শিখুন MS SQL Server - Part-2
มุมมอง 342 หลายเดือนก่อน
MS SQL Tutorial in Bengali | সহজ বাংলায় শিখুন MS SQL Server - Part-2
Kubernetes Best Practices: Deploy NGINX Pod & NodePort Service on AWS EC2 (Step-by-Step)
มุมมอง 2882 หลายเดือนก่อน
Kubernetes Best Practices: Deploy NGINX Pod & NodePort Service on AWS EC2 (Step-by-Step)
Step-by-Step Guide: Configuring a Kubernetes Cluster on AWS EC2
มุมมอง 4033 หลายเดือนก่อน
Step-by-Step Guide: Configuring a Kubernetes Cluster on AWS EC2
DevOps on AWS: Part 9 | Maven Integration | Building a Foundation for Cloud Success
มุมมอง 334 หลายเดือนก่อน
DevOps on AWS: Part 9 | Maven Integration | Building a Foundation for Cloud Success
DevOps on AWS: Part 8 | Git Amend, Revert & GitHub Repo | Building a Foundation for Cloud Success
มุมมอง 245 หลายเดือนก่อน
DevOps on AWS: Part 8 | Git Amend, Revert & GitHub Repo | Building a Foundation for Cloud Success
DevOps on AWS: Part 7 | Git Merge vs. Rebase Demystified | Building a Foundation for Cloud Success
มุมมอง 226 หลายเดือนก่อน
DevOps on AWS: Part 7 | Git Merge vs. Rebase Demystified | Building a Foundation for Cloud Success
DevOps on AWS: Part 6 | Exploring Git Branches | Building a Foundation for Cloud Success
มุมมอง 256 หลายเดือนก่อน
DevOps on AWS: Part 6 | Exploring Git Branches | Building a Foundation for Cloud Success
Next-Gen Azure DevOps: Accelerate Infrastructure Management through Git Automation
มุมมอง 177 หลายเดือนก่อน
Next-Gen Azure DevOps: Accelerate Infrastructure Management through Git Automation
DevOps on AWS: Part 5 | vi editor & Git Configuration | Building a Foundation for Cloud Success
มุมมอง 637 หลายเดือนก่อน
DevOps on AWS: Part 5 | vi editor & Git Configuration | Building a Foundation for Cloud Success
DevOps on AWS: Part 4 | Basic Linux Commands | Building a Foundation for Cloud Success
มุมมอง 967 หลายเดือนก่อน
DevOps on AWS: Part 4 | Basic Linux Commands | Building a Foundation for Cloud Success
DevOps on AWS: Part 3 | Basic Linux Commands | Building a Foundation for Cloud Success
มุมมอง 408 หลายเดือนก่อน
DevOps on AWS: Part 3 | Basic Linux Commands | Building a Foundation for Cloud Success
DevOps on AWS: Part 2 | EC2 & Git Bash | Building a Foundation for Cloud Success
มุมมอง 448 หลายเดือนก่อน
DevOps on AWS: Part 2 | EC2 & Git Bash | Building a Foundation for Cloud Success
DevOps on AWS: Part 1 | Introduction | Building a Foundation for Cloud Success
มุมมอง 1868 หลายเดือนก่อน
DevOps on AWS: Part 1 | Introduction | Building a Foundation for Cloud Success
Always out number in front of the video, I can barely see which video is which number from the title
Thank you for the feedback, I will keep it in mind for future videos!
Excellent tutorial
Nice
Hai bro
dear explain more about what you perform it is a bit confusing while you switch servers and your video is not too much good quality and upload your videos again in sequence very good project you have selected but there is some mistake hope you will keep in mind while create next projects any way all the best keep it up :)
Sure, I will try to mitigate the issues in the next videos. I've reset the sequence, hope it is now showing properly. Thank you so much, dear!!
@@TheSysAdminOfficial yes now it is perfect after this video i watch the videos but not do the practical because i am stuck in connections from one server to another server. can you please help me to resolve it so i can complete the project from my end brother i just sent you request on linkedIn please accept it and clear my doubt if possible?
@@AkashSingh-cp4hr Kindly try to switch to the jenkins user in the Jenkins server then from the home directory of the Jenkins user try to configure passwordless authentication & let me know if you are stuck in any step.
May i know the name of the projects....??
It's an example of a real project.
Great work sir , big thank you , pls make more videos 🙏❤🎉
Sure 👍
You're doing a good job. Keep going! I'm rooting for you.
Thank you! Always happy to help.
thank you for sharing, is this going to be live session or recorded one?
This is recorded session
brother please keep a playlist for your all days till now so it is easy to play one by one
Sure bro! I will try to arrange it for the better outcome.
best
Thank you 😊
Great one! Keep doing👌
Thanks ✌️
Hello! Thanks for the video, very well explained. I cant find the text file with the instruction you use. Any chance you could share it?
Hi! Always happy to help, and also thank you for the update. I had written the steps in a notepad to record the video, actually I took it from the Kubernetes official websites. If I share the exact documents then it might create a confusion with somebody if they follow the documents line by line because the version of kubernetes changed time by time then they might not update the version, thus if you kindly follow the website to get the updated version then it will be more fruitful. Inspite of these if you require the notepad then please let me know I will again prepare it with the updated version and will share with you. Thank you 😊
Can you explain using official kubernetics documentation, Step by step so it will be easy to understand and easy to remember. Because each time we cannot search for a configuration file.
There is a Kubernetes documentation url already mentioned in the description, please go through it & please let me know if there is any further update required.
Thank you sir
Happy to help 😊
Please provide more tutorials for cacti, because I'm very interested in these cacti
very usefull
Glad to hear that
Keep uploading more videos on devops. Thanks a lot in advance
I will try my best
আশা করি পুরো কোর্সটি শেষ করবেন।
obossoi chesta korbo ses korar.
আসসালামু আলাইকুম স্যার। আশা করি ফুল কোর্সটা শেষ করবেন। আমি বাংলাদেশ থেকে দেখছি।
Asha kori puro course ses korte parbo.
ফুল কোর্সটি শেষ করবেন।আমি বাংলাদেশ থেকে দেখছি।
আশা করি পুরো কোর্সটি শেষ করবেন।
Thank you brother. How to contact your any social account?
Thank you for your interest! I prefer to keep my social accounts private at the moment. However, I appreciate your understanding and support. Feel free to engage with me here on TH-cam!
often cache limits 512M but error message.zabbix server is not running the information displayed may not be current
You may go through the document once, might help you with this. www.zabbix.com/documentation/2.0/en/manual/installation
all setup ok but zabbix server is not running. the information displayed may not be current message showing
Check the logs, it will show you why the service is not running. It's quite often due cache limits. Also check the conf file where need to add the DB creds for access. Thank you!
please share how to add weathermap or new weathermap on this version
I'm sorry to say that, this is out of my scope, thank you for your co-operation.
For full video : th-cam.com/video/9yRCoh-YAd4/w-d-xo.html
*Promo SM* ❤️
Great sir.. akta video te puro jinis ta cover koren bole concept ta clear holo aj.. Thank you so much sir ❤.. arokom full course video aro chai sir.
Obossoi chesta korbo apnar onurodh puron korar.😊 Also glad to hear it helps to resolve your query.
This is very useful for me, please share more knowledge videos on linux platform.😊
Thanks, will do!
Ki dinkaal porlo😢😢
kirokom dinkal seta jodi ektu bolen tahole valo hoy. Dhonnobaad!!
th-cam.com/video/mokhcPw06pA/w-d-xo.html
th-cam.com/video/bsUKo-NgYeE/w-d-xo.html
th-cam.com/video/WJrqLNUWogA/w-d-xo.htmlsi=_Beoo8gih07blODl
thanks Boss Amar request er video der Jonno ❤❤❤❤❤
ISP sector er Jono khob opokare tool
Thanks for this informative vids Good Job Done 👌
It's my pleasure that it is helpful. 😊
please video make cacti server with weather map
Please do follow my channel, will upload the video soon.
th-cam.com/video/SLJSYBYwNAY/w-d-xo.html
Awesome Could you please share english vedios on complete devops vedios
I appreciate your feedback and for visiting my channel. I have not yet given this much thought on this subject yet. I'll be sure to implement your advice in the future.
Good job
Thanks
Dear Vaiya, your video is very helpful to me, Please upload more server-related basic to advanced and production grad videos.
Sure, I will try my best.
Please provide more tutorial on docker, thank you in advance
Noted
Thank you!! This video helped to install the LAMP stack successfully.
Glad it helped
Good one for the ansible configuration at initial stage.
Thanks
Perfect tutorial of successful LAMP stack installation
Thanks buddy
Thank you for this one, it's another useful tool for me to manage & store the password in a secure way..
You're welcome!
This is very helpful... Great work..
Glad to hear that
Please keep it up
Thank you very much
This one helped me to configure the zabbix using very easy steps..
Thanks
Useful for the basic learning of RHEL, thank you so much!!
You're very welcome!
Surprised to see a Bangla video about RHEL. Keep it up <3
Will try to create more.
Where is the part 1. Link please?
Part 1 - th-cam.com/video/-zIR2yol8LU/w-d-xo.html Part 2 - th-cam.com/video/R2uNccsrbYo/w-d-xo.html Part 3 - th-cam.com/video/BL-wB6kcOro/w-d-xo.html Part 4 - th-cam.com/video/_6PwEpxMTd4/w-d-xo.html