-
how to copy the file with source and destination using shells script
Steps to copy the file from source and destination comparison Create the script with backup.sh […]
-
shells script to take db2 online backup
Open vi/vim editor and give db2backup.sh #!/bin/bash #Set variables for the scriptDB_NAME=mydatabase (Database Name)BACKUP_DIR=/path/to/backup/directory (Backup […]
-
How to force close all connections in DB2
FORCE APPLICATIONS ALL will forcefully terminate all connections, regardless of whether they are actively executing […]
-
How to Restriction git push in GitHub without JIRA ID
Set up a pre-push hook: In your local Git repository, navigate to the .git/hooks directory. […]
-
How to start HA DR on DB2 database
$db2 deactivate db RTCDB20000I The DEACTIVATE DATABASE command completed successfully $db2 STOP HADR ON DB […]
-
How to deploy one and more .bar file using shells script
Steps to deploy more than one.bar file #!/bin/bash #Update with your .bar file names, comma-separated […]
-
How to install nginx in docker using docker file
Steps create docker file vim dockerfile #Use a base imageFROM nginx:latest #Set the working directoryWORKDIR […]
-
What is MLOps?
MLOps, short for “Machine Learning Operations,” is a practice that combines machine learning (ML) and […]
-
Release management in DevOps
Release management in DevOps refers to the process and practices involved in planning, scheduling, coordinating, […]