On deploying application using Jenkins build pileline refer the following video:
Once we have our application tested and working fine than we need them to be deployed to multiple environments like stage than followed by production to get our application and running as soon as possible.
First we need to create a Artifacts for our code.
Go to Post-build Actions and select Archive the artifacts.

Add entry as **/*.war to create war file in job's home directory.

Save and Build the job to create artifacts.
If you see the Console output now you will get the output saying Archiving artifacts finished with Success.

And see the Status of your build where you will get the war file created in job home directory.

Now we need tomcat to be installed and running in our environment to make it all work. Download tomcat from following link.
Give the executable permission to executable files in bin folder.
As I'm running Jenkins on port 8080 so will be running the Tomcat on port 8081 so that there is no conflicts of ports. To do that edit the line no 69 in server.xml file in conf directory with port no 8081.
Create a Admin user to run our application by editing the tomcat-user.xml file in conf directory and add similar type of code with username and password as per your need.
Now start the Tomcat service to see if all is running fine.
Go to your browser and enter the IP address of your system followed by the port which you have defined for your Tomcat server which is in my case 8081.

Now we need to copy our Artifact in tomcat server so that it can be run and in order to do so we need to install Copy Artifact plugin in Jenkins.
Go to Manage Jenkins than Plugin Manager than Available and search Copy Artifact and install it.

Followed by Deploy to container plugin.

Now Lets create new job which will deploy our war file in tomcat so we can execute it.
I'm creating with name stage-test1, Go to Build and add the project whose war file we want to deploy in my case its git-test1 which I used to test in previous Tutorial. Enter **/*.war to copy all war files from build. Now add Post-build Actions in which we will define our Tomcat credentials and files which need to be passed.

Now we need to define in our original job(git-test1) in which the war file was created to execute tomcat related job(stage-test1) after successful creation on war file.
Go to Configure than Post-build Actions define here files to be copied which are war files here and Project to build name which is stage-test1.

Now Go to Jenkins and Build your initial job which is git-test1 in my case.

You will the second job added in build queue and executed.

You will in the output console of stage-test1 that our war file has been successfully deployed.

Now go to your tomcat server followed by /webapp to see your application running fine.

In the similar way you can add steps to deploy application to your production server as well.
To go to previous Jenkins next tutorial please click following link.
Hope this is being informative for you so please like, share or subscribe to my blog and YouTube Channel.
Once we have our application tested and working fine than we need them to be deployed to multiple environments like stage than followed by production to get our application and running as soon as possible.
First we need to create a Artifacts for our code.
Go to Post-build Actions and select Archive the artifacts.
Add entry as **/*.war to create war file in job's home directory.
Save and Build the job to create artifacts.
If you see the Console output now you will get the output saying Archiving artifacts finished with Success.
And see the Status of your build where you will get the war file created in job home directory.
Now we need tomcat to be installed and running in our environment to make it all work. Download tomcat from following link.
[root@ip-10-0-1-84 ec2-user]# wget http://apache.mirrors.pair.com/tomcat/tomcat-8/v8.5.15/bin/apache-tomcat-8.5.15.zip
--2017-06-27 05:19:09-- http://apache.mirrors.pair.com/tomcat/tomcat-8/v8.5.15/bin/apache-tomcat-8.5.15.zip
Resolving apache.mirrors.pair.com (apache.mirrors.pair.com)... 216.92.2.131
Connecting to apache.mirrors.pair.com (apache.mirrors.pair.com)|216.92.2.131|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 9966102 (9.5M) [application/zip]
Saving to: ‘apache-tomcat-8.5.15.zip’
apache-tomcat-8.5.15.zip 100%[==================================================================================>] 9.50M 1009KB/s in 15s
2017-06-27 05:19:25 (656 KB/s) - ‘apache-tomcat-8.5.15.zip’ saved [9966102/9966102]
[root@ip-10-0-1-84 ec2-user]# unzip apache-tomcat-8.5.15.zip
[root@ip-10-0-1-84 ec2-user]# cd apache-tomcat-8.5.15
[root@ip-10-0-1-84 apache-tomcat-8.5.15]# ls
bin conf lib LICENSE logs NOTICE RELEASE-NOTES RUNNING.txt temp webapps work
Give the executable permission to executable files in bin folder.
[root@ip-10-0-1-84 bin]# chmod +x *.sh
[root@ip-10-0-1-84 bin]# ls
bootstrap.jar catalina-tasks.xml configtest.bat digest.bat setclasspath.sh startup.bat tomcat-native.tar.gz version.bat
catalina.bat commons-daemon.jar configtest.sh digest.sh shutdown.bat startup.sh tool-wrapper.bat version.sh
catalina.sh commons-daemon-native.tar.gz daemon.sh setclasspath.bat shutdown.sh tomcat-juli.jar tool-wrapper.sh
As I'm running Jenkins on port 8080 so will be running the Tomcat on port 8081 so that there is no conflicts of ports. To do that edit the line no 69 in server.xml file in conf directory with port no 8081.
69 <Connector port="8081" protocol="HTTP/1.1"
Create a Admin user to run our application by editing the tomcat-user.xml file in conf directory and add similar type of code with username and password as per your need.
<role rolename="manager-script"/>
<role rolename="admin-gui"/>
<user username="tomcat" password="password" roles="manager-script,admin-gui"/>
</tomcat-users>
Now start the Tomcat service to see if all is running fine.
[root@ip-10-0-1-84 conf]# ../bin/startup.sh
Using CATALINA_BASE: /home/ec2-user/apache-tomcat-8.5.15
Using CATALINA_HOME: /home/ec2-user/apache-tomcat-8.5.15
Using CATALINA_TMPDIR: /home/ec2-user/apache-tomcat-8.5.15/temp
Using JRE_HOME: /usr/lib/jvm/java
Using CLASSPATH: /home/ec2-user/apache-tomcat-8.5.15/bin/bootstrap.jar:/home/ec2-user/apache-tomcat-8.5.15/bin/tomcat-juli.jar
Tomcat started.
Go to your browser and enter the IP address of your system followed by the port which you have defined for your Tomcat server which is in my case 8081.
Now we need to copy our Artifact in tomcat server so that it can be run and in order to do so we need to install Copy Artifact plugin in Jenkins.
Go to Manage Jenkins than Plugin Manager than Available and search Copy Artifact and install it.
Followed by Deploy to container plugin.
Now Lets create new job which will deploy our war file in tomcat so we can execute it.
I'm creating with name stage-test1, Go to Build and add the project whose war file we want to deploy in my case its git-test1 which I used to test in previous Tutorial. Enter **/*.war to copy all war files from build. Now add Post-build Actions in which we will define our Tomcat credentials and files which need to be passed.
Now we need to define in our original job(git-test1) in which the war file was created to execute tomcat related job(stage-test1) after successful creation on war file.
Go to Configure than Post-build Actions define here files to be copied which are war files here and Project to build name which is stage-test1.
Now Go to Jenkins and Build your initial job which is git-test1 in my case.
You will the second job added in build queue and executed.
You will in the output console of stage-test1 that our war file has been successfully deployed.
Now go to your tomcat server followed by /webapp to see your application running fine.
In the similar way you can add steps to deploy application to your production server as well.
To go to previous Jenkins next tutorial please click following link.
Hope this is being informative for you so please like, share or subscribe to my blog and YouTube Channel.