-
ls Linux command
The ls command is used in Unix/Linux operating systems. ls use to list the files […]
-
What is Jenkins?
Jenkins is an open-source automation server that is widely used for continuous integration (CI) and […]
-
How to check and install db2 license
Step to check and install db2 licenses Check Existing Licenses To check the existing licenses […]
-
How to install Jenkins in Docker
Pull the docker images by given below command. PS C:\Users> docker pull jenkins/jenkins:lts-jdk11lts-jdk11: Pulling from […]
-
SQL0803N SQLSTATE=23505
Let’s assume we have a table called customers with a unique constraint on the email […]
-
sytstemctl script for DB2 restart after server reboot
Steps to create systemctl startup script. vim /etc/systemd/system/db2.service [Unit]Description=IBM Db2 Database After=network.target [Service]ExecStart=/opt/ibm/db2/V11.5/bin/db2startUser=db2inst1Group=db2grp1Restart=always [Install]WantedBy=multi-user.target Reload […]
-
How to copy file using sftp command in RHEL9
use sftp command to upload the file and download the file $ sftp john@example.comConnected to […]
-
Automatic Restart DB2 shells script
Cronjob script to start DB2 #!/bin/bash #Check Db2 statusdb2status=$(db2pd -dbptnmem | grep -i “db2”) if […]
-
How to configure proxy in jenkins file
Sample script to use the proxy in jenkins file. pipeline {agent any environment { // […]