diff --git a/Docker/DockerHub.MD b/Docker/DockerHub.MD new file mode 100644 index 0000000..500f6a9 --- /dev/null +++ b/Docker/DockerHub.MD @@ -0,0 +1,43 @@ +## What is Docker Hub Registry + +Docker Hub is a cloud-based registry service which allows you to link to code repositories, build your images and test them, stores manually pushed images, and links to Docker Cloud so you can deploy images to your hosts. It provides a centralized resource for container image discovery, distribution and change management, user and team collaboration, and workflow automation throughout the development pipeline. + +##### Ref URL : https://docs.docker.com/docker-hub/ + +1. Create a docker hub account in https://hub.docker.com/ + +1. Pull a docker image + + ```sh + docker pull ubuntu + ``` + +1. pull a docker image with the old version + + ```sh + docker pull ubuntu:16.04 + ``` + +1. create a custom tag to the docker image + ```sh + docker tag ubuntu:latest valaxy/ubuntu:demo + ``` + +1. login to your docker hub registry + ```sh + docker login + docker push valaxy/ubuntu:demo + ``` + +### testing + +1. Remove all images in docker server + ```sh + docker image rm -f + ``` + +1. Pull your custom image from your docker account + ```sh + docker pull valaxy/ubuntu:demo + ``` + diff --git a/Docker/Docker_Commands.MD b/Docker/Docker_Commands.MD new file mode 100644 index 0000000..b5d3be8 --- /dev/null +++ b/Docker/Docker_Commands.MD @@ -0,0 +1,67 @@ + +1. how to search a docker image in hub.docker.com +```sh +docker search httpd +``` +2. Download a docker image from hub.docker.com +```sh +docker image pull : +``` + +3. List out docker images from your local system +```sh +docker image ls +``` + +4. Create/run/start a docker container from image +```sh +docker run -d --name : + +d - run your container in back ground (detached) +``` + +5. Expose your application to host server +```sh +docker run -d -p : --name : + +docker run -d --name httpd_server -p 8080:80 httpd:2.2 +``` + +6. List out running containers +```sh +docker ps +``` + +7. List out all docker container (running, stpooed, terminated, etc...) +```sh +docker ps -a +``` + +8. run a OS based container which interactive mode (nothing but login to container after it is up and running) + +```sh +docker run -i -t --name centos_server centos:latest +i - interactive +t - Terminal +``` + +9. Stop a container +```sh +docker stop +``` + +10. Start a container which is in stopped or exit state + +```sh +docker start +``` +11. Remove a container + +```sh +docker rm +``` + +12. login to a docker container +```sh +docker exec -it /bin/bash +``` diff --git a/Docker/Docker_Installation_Steps.MD b/Docker/Docker_Installation_Steps.MD new file mode 100644 index 0000000..1bc1de3 --- /dev/null +++ b/Docker/Docker_Installation_Steps.MD @@ -0,0 +1,72 @@ +# Installing Docker on Amazon Linux server + +### Pre-requisites +1. Amazon Linux EC2 Instance + +## Installation Steps + +1. Install docker and start docker services + ```sh + yum install docker -y + docker --version + + # start docker services + service docker start + service docker status + ``` +1. Create a user called dockeradmin + ```sh + useradd dockeradmin + passwd dockeradmin + ``` +1. add a user to docker group to manage docker + ``` + usermod -aG docker dockeradmin + ``` +### Validation test +1. Create a tomcat docker container by pulling a docker image from the public docker registry + ```sh + docker run -d --name test-tomcat-server -p 8090:8080 tomcat:latest + ``` + +## Docker Installation on CentOS server +##### Referance URL : https://docs.docker.com/install/linux/docker-ce/centos/#install-using-the-repository +### Pre-requisites + +Please follow below steps to install docker CE on CentoOS server instance. For RedHat only Docker EE available + +1. Install the required packages. + + ```sh + sudo yum install -y yum-utils \ + device-mapper-persistent-data \ + lvm2 + ``` + +1. Use the following command to set up the stable repository. + + ```sh + sudo yum-config-manager \ + --add-repo \ + https://download.docker.com/linux/centos/docker-ce.repo + ``` + +### INSTALLING DOCKER CE + +1. Install the latest version of Docker CE. + ```sh + sudo yum install docker-ce + ``` + + Note: If prompted to accept the GPG key, verify that the fingerprint matches +060A 61C5 1B55 8A7F 742B 77AA C52F EB6B 621E 9F35, and if so, accept it. + +1. Start Docker. + ```sh + sudo systemctl start docker + ``` + +1. Verify that docker is installed correctly by running the hello-world image. + ```sh + sudo docker run hello-world + ``` diff --git a/Docker/install_apache_dockerfile.txt b/Docker/install_apache_dockerfile.txt new file mode 100644 index 0000000..74d0e49 --- /dev/null +++ b/Docker/install_apache_dockerfile.txt @@ -0,0 +1,23 @@ +FROM ubuntu:12.04 + +MAINTAINER Landmark Technologies + +LABEL version="1.1.0" \ + app_name="Training registration application" \ + release_date="9-Sep-2018" +RUN apt-get update && apt-get install -y apache2 && apt-get clean + +ENV APACHE_RUN_USER www-data +ENV APACHE_RUN_GROUP www-data +ENV APACHE_LOG_DIR /var/log/apache2 + +EXPOSE 80 + +COPY index.html /var/www/html +CMD ["/usr/sbin/apache2", "-D", "FOREGROUND"] + + + + + + diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c911182 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM tomcat:9.0.37-jdk8 +# removing bug from the applications. +# fixing vulnerability issues +# Dummy text to test # +COPY target/*.war /usr/local/tomcat/webapps/maven-web-app.war diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..9cdaa8f --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,43 @@ +//Jenkins pipeline script +//Groovy script +node +{ +def mavenHome = tool name: 'maven3.6.3' +stage('1. CodeClone') +{ +git credentialsId: 'Github_credentials', url: 'https://github.com/myLandmakTechnology/maven-web-app.git' +} +stage('2. Build') +{ +sh "${mavenHome}/bin/mvn package" +} + +stage('3. CodeQuality') +{ +//sh "${mavenHome}/bin/mvn sonar:sonar" +} +stage('4.UploadNexus') +{ +//sh "${mavenHome}/bin/mvn deploy" +} +stage('5. Approval') +{ +echo "Approved. Ready for deployment" +} +stage('6. DeployTomcat') +{ +//deploy adapters: [tomcat9(credentialsId: 'Tomcat-Credentials', path: '', url: 'http://54.163.156.108:8888/')], contextPath: null, war: 'target/*war' +} +stage('7. Notification') +{ +//emailextrecipients([developers()]) +} +} + +// +/* +the +this +they +*/ + diff --git a/Jenkinsfile1 b/Jenkinsfile1 new file mode 100644 index 0000000..63d218c --- /dev/null +++ b/Jenkinsfile1 @@ -0,0 +1,52 @@ +node + { + + def mavenHome = tool name: "maven3.6.2" + + echo "GitHub BranhName ${env.BRANCH_NAME}" + echo "Jenkins Job Number ${env.BUILD_NUMBER}" + echo "Jenkins Node Name ${env.NODE_NAME}" + + echo "Jenkins Home ${env.JENKINS_HOME}" + echo "Jenkins URL ${env.JENKINS_URL}" + echo "JOB Name ${env.JOB_NAME}" + + properties([[$class: 'JiraProjectProperty'], buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '2', daysToKeepStr: '', numToKeepStr: '2')), pipelineTriggers([pollSCM('* * * * *')])]) + + stage("CheckOutCodeGit") + { + git url: 'https://github.com/LandmakTechnology/maven-web-app' + } + + stage("Build") + { + sh "${mavenHome}/bin/mvn clean package" + } + + /* + stage("ExecuteSonarQubeReport") + { + sh "${mavenHome}/bin/mvn sonar:sonar" + } + + stage("UploadArtifactsintoNexus") + { + sh "${mavenHome}/bin/mvn deploy" + } + + stage("DeployAppTomcat") + { + sshagent(['423b5b58-c0a3-42aa-af6e-f0affe1bad0c']) { + sh "scp -o StrictHostKeyChecking=no target/maven-web-application.war ec2-user@15.206.91.239:/opt/apache-tomcat-9.0.34/webapps/" + } + } + + stage('EmailNotification') + { + mail bcc: 'mylandmarktech@gmail.com', body: '''Build is over + Thanks, + Landmark Technologies, + +14372152483.''', cc: 'mylandmarktech@gmail.com', from: '', replyTo: '', subject: 'Build is over!!', to: 'mylandmarktech@gmail.com' + } + */ + } diff --git a/Jenkinsfile2 b/Jenkinsfile2 new file mode 100644 index 0000000..f96515d --- /dev/null +++ b/Jenkinsfile2 @@ -0,0 +1,38 @@ +node +{ +def mavenHome = tool name: "maven3.6.3" + + stage("1. git clone") + { + git credentialsId: 'gitCredentials', url: 'https://github.com/LandmakTechnology/maven-web-app.git' + } + + stage("2. Build") + { + sh "${mavenHome}/bin/mvn clean package" + + // bat mvn clean package - for winows OS + } + stage('3. Sonar') + { + //sh "${mavenHome}/bin/mvn sonar:sonar" + } + stage('4. Nexus') + { + //sh "${mavenHome}/bin/mvn deploy" + } + stage('5. Deploy') + { + deploy adapters: [tomcat9(credentialsId: 'Tomcat-Credentials', path: '', url: 'http://54.163.156.108:8888/')], contextPath: null, war: 'target/*war' + } + + stage('6. Email Notification') + { + +emailext body: '''Hi + +Build Status +Landmark Technology ++ 1 437 215 2483''', recipientProviders: [developers()], subject: 'Build status', to: 'legah2000@gmail.com' + } + } diff --git a/ansible-setup b/ansible-setup new file mode 100644 index 0000000..6ae2444 --- /dev/null +++ b/ansible-setup @@ -0,0 +1,88 @@ +# Ansible Installation + +Ansible is an open-source automation platform. It is very, very simple to set up and yet powerful. +Ansible can help you with configuration management, application deployment, task automation. + +### Pre-requisites + +1. An AWS EC2 instance (on Control node) + +### Installation steps: +#### on Amazon EC2 instance + +1. Install python and python-pip + ```sh + yum install python + yum install python-pip + ``` +1. Install ansible using pip check for version + ```sh + pip install ansible + ansible --version + ``` + +1. Create a user called ansadmin (on Control node and Managed host) + ```sh + useradd ansible + passwd ansible + ``` +1. Below command grant sudo access to ansadmin user. But we strongly recommended using "visudo" command + if you are aware vi or nano editor. (on Control node and Managed host) + ```sh + #echo "ansible ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers + echo "ansible ALL=(ALL) NOPASSWD:ALL" | sudo tee /etc/sudoers.d/ansible + ``` + +1. Log in as a ansadmin user on master and generate ssh key (on Control node) + ```sh + sudo su - ansible + ssh-keygen + ``` +1. Copy keys onto all ansible managed hosts (on Control node) + ```sh + ssh-copy-id ansadmin@ + ``` + +1. Ansible server used to create images and store on docker registry. + Hence install docker, start docker services and add ansadmin to the docker group. + ```sh + yum install docker + + # start docker services + service docker start + service docker start + + # add user to docker group + usermod -aG docker ansible + + ``` +1. Create a directory /etc/ansible and create an inventory file called "hosts" add control node and managed hosts IP addresses to it. + +### Validation test + ```sh + sudo mkdir /etc/ansible + sudo chown -R ansible:ansible /etc/ansible + vi /etc/ansible/ansible.cfg # default ansible_config file + host_key_checking = False + ``` +### Create Ansible Hosts file +``` sh +localhost +[ubuntu] +172.31.20.135 ansible_user=ubuntu ansible_ssh_private_key_file=~/docker_key.pem +[dbServers] +#54.166.255.168 +54.166.255.168 ansible_user=admin ansible_ssh_private_key_file=~/.ssh/id_rsa +#[webServers] +#172.31.85.223 +#172.31.37.112 ansible_user=admin ansible_password=land +# 172.31.85.223 ansible_user=ec2-user ansible_ssh_private_key_file=~/aws.pem +172.31.85.223 ansible_user=admin ansible_ssh_private_key_file=~/key.pem + +[appServers] +172.31.22.155 ansible_user=ec2-user ansible_ssh_private_key_file=~/docker_key.pem + +1. Run ansible command as ansadmin user it should be successful (Master) + ```sh + ansible all -m ping + ``` diff --git a/bts.java b/bts.java new file mode 100644 index 0000000..a701a56 --- /dev/null +++ b/bts.java @@ -0,0 +1,2 @@ +# Back to school 2021 +# ebay European clients \ No newline at end of file diff --git a/docker-installation b/docker-installation new file mode 100644 index 0000000..609948f --- /dev/null +++ b/docker-installation @@ -0,0 +1,94 @@ +# Installing Docker on ubuntu server + +sudo apt update -y +sudo apt install docker.io -y +sudo systemctl start docker + +# Check docker is installed or not + docker info + +# You will get permison denied error as regular user dosn't have permisions to execute docker commands.Add user to docker group. + +sudo usermod -aG docker $USER + +sudo usermod -aG docker ubuntu + +# Exit From Current SSH Terminal & SSH(Login) again .Then execute +docker ps + +# Installing Docker on Amazon Linux server + +### Pre-requisites +1. Amazon Linux EC2 Instance + +## Installation Steps + +1. Install docker and start docker services + ```sh + yum install docker -y + docker --version + + # start docker services + service docker start + service docker status + ``` +1. Create a user called dockeradmin + ```sh + useradd dockeradmin + passwd dockeradmin + ``` +1. add a user to docker group to manage docker + ``` + usermod -aG docker dockeradmin + ``` +### Validation test +1. Create a tomcat docker container by pulling a docker image from the public docker registry + ```sh + docker run -d --name test-tomcat-server -p 8090:8080 tomcat:latest + ``` + +## Docker Installation on CentOS server +##### Referance URL : https://docs.docker.com/install/linux/docker-ce/centos/#install-using-the-repository +### Pre-requisites + +Please follow below steps to install docker CE on CentoOS server instance. For RedHat only Docker EE available + +1. Install the required packages. + + ```sh + sudo yum install -y yum-utils \ + device-mapper-persistent-data \ + lvm2 + ``` + +1. Use the following command to set up the stable repository. + + ```sh + sudo yum-config-manager \ + --add-repo \ + https://download.docker.com/linux/centos/docker-ce.repo + ``` + +### INSTALLING DOCKER CE + +1. Install the latest version of Docker CE. + ```sh + sudo yum install docker-ce + ``` + + Note: If prompted to accept the GPG key, verify that the fingerprint matches +060A 61C5 1B55 8A7F 742B 77AA C52F EB6B 621E 9F35, and if so, accept it. + +1. Start Docker. + ```sh + sudo systemctl start docker + ``` + +1. Verify that docker is installed correctly by running the hello-world image. + ```sh + sudo docker run hello-world + ``` + +#Install Docker in Linux (Works for most of linux flavors). +```sh +sudo curl -fsSL get.docker.com | /bin/bash diff --git a/pom.xml b/pom.xml index 3eec9f6..345add2 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.mt maven-web-application war - 0.0.1-SNAPSHOT + 0.0.1 maven-web-application @@ -20,7 +20,10 @@ 5.1.2.RELEASE 4.11 1.2.17 - http:3.236.71.186:9000/ + + + http://172.31.92.148:9000/ + admin admin UTF-8 @@ -93,22 +96,23 @@ + nexus Landmark Technologies Releases Nexus Repository - http://18.232.38.118/repository/amazon-release/ + http://3.86.42.182:2022/repository/Boa-release/ nexus Landmark Technologies Snapshot Nexus Repository - http://18.232.38.118/repository/amazon-snapshot/ + http://3.86.42.182:2022/repository/Boa-snapshot/ - maven-web-app + myapps diff --git a/src/main/webapp/images/LT.JPG b/src/main/webapp/images/LT.JPG new file mode 100644 index 0000000..325a881 Binary files /dev/null and b/src/main/webapp/images/LT.JPG differ diff --git a/src/main/webapp/images/logo.png b/src/main/webapp/images/logo.png new file mode 100644 index 0000000..fd3e413 Binary files /dev/null and b/src/main/webapp/images/logo.png differ diff --git a/src/main/webapp/images/lttechlogo.png b/src/main/webapp/images/lttechlogo.png new file mode 100644 index 0000000..4837bec Binary files /dev/null and b/src/main/webapp/images/lttechlogo.png differ diff --git a/src/main/webapp/jsps/home.jsp b/src/main/webapp/jsps/home.jsp index 4527e10..439d426 100644 --- a/src/main/webapp/jsps/home.jsp +++ b/src/main/webapp/jsps/home.jsp @@ -5,28 +5,23 @@ Mylandmark.Tech- Home Page - + -

Landmark Technology --> Human Development Center

-

Welcome to Landmark Technology.......We have a demo on DevOps E Degree with Linux and AWS on Saturday Sept 5, 2020 at 4pm EST for our new batch. +

Landmark Technology - Leaders in Software Delivery and DevOps Automation

+

Welcome to Landmark Technology.......We have a demo on DevOps E Degree with Linux and AWS on Saturday Sept 19, 2020 at 8am EST for our new batch. Landmark Technology is a an ideal online training platform for DevOps and Cloud Infrastructures. - Our anointed and extensive teaching approach takes our students with or without any IT Background to become Subject Matter Expect in IT, and DevOps automation. - Over 80% of our students are hired within 6 months of joining Landmark Technology. - Congratulations!! Welcome to Landmark Technology!! Welcome to your ENVIABLE IT CAREER. - We offer interview preparations and job assitance. - The King is in our midst. His name is JESUS. What a wonderful it is. HE IS OUR SUCCESS ACCESS KEY. - Thanks for being an ambassador of Landmark Technology. President

+ +

JESUS IS LORD of All


- + Landmark Technology, Toronto, Ontario, Canada - Dallas, TX USA, +1 437 215 2483, mylandmarktech@gmail.com
diff --git a/target/classes/com/mt/services/EmployeeService.class b/target/classes/com/mt/services/EmployeeService.class new file mode 100644 index 0000000..0f871a1 Binary files /dev/null and b/target/classes/com/mt/services/EmployeeService.class differ diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 0000000..fd7d859 --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,5 @@ +#Generated by Maven +#Wed Dec 08 12:09:51 UTC 2021 +version=0.0.1 +groupId=com.mt +artifactId=maven-web-application diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..ba74768 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1 @@ +com/mt/services/EmployeeService.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..8665763 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1 @@ +/home/ec2-user/Maven2/src/main/java/com/mt/services/EmployeeService.java diff --git a/target/myapps.war b/target/myapps.war new file mode 100644 index 0000000..57db69e Binary files /dev/null and b/target/myapps.war differ diff --git a/target/myapps/WEB-INF/classes/com/mt/services/EmployeeService.class b/target/myapps/WEB-INF/classes/com/mt/services/EmployeeService.class new file mode 100644 index 0000000..0f871a1 Binary files /dev/null and b/target/myapps/WEB-INF/classes/com/mt/services/EmployeeService.class differ diff --git a/target/myapps/WEB-INF/lib/json-20160212.jar b/target/myapps/WEB-INF/lib/json-20160212.jar new file mode 100644 index 0000000..21e09db Binary files /dev/null and b/target/myapps/WEB-INF/lib/json-20160212.jar differ diff --git a/target/myapps/WEB-INF/lib/spring-aop-5.1.2.RELEASE.jar b/target/myapps/WEB-INF/lib/spring-aop-5.1.2.RELEASE.jar new file mode 100644 index 0000000..156a814 Binary files /dev/null and b/target/myapps/WEB-INF/lib/spring-aop-5.1.2.RELEASE.jar differ diff --git a/target/myapps/WEB-INF/lib/spring-beans-5.1.2.RELEASE.jar b/target/myapps/WEB-INF/lib/spring-beans-5.1.2.RELEASE.jar new file mode 100644 index 0000000..96197f0 Binary files /dev/null and b/target/myapps/WEB-INF/lib/spring-beans-5.1.2.RELEASE.jar differ diff --git a/target/myapps/WEB-INF/lib/spring-context-5.1.2.RELEASE.jar b/target/myapps/WEB-INF/lib/spring-context-5.1.2.RELEASE.jar new file mode 100644 index 0000000..a6dc346 Binary files /dev/null and b/target/myapps/WEB-INF/lib/spring-context-5.1.2.RELEASE.jar differ diff --git a/target/myapps/WEB-INF/lib/spring-core-5.1.2.RELEASE.jar b/target/myapps/WEB-INF/lib/spring-core-5.1.2.RELEASE.jar new file mode 100644 index 0000000..81c2b90 Binary files /dev/null and b/target/myapps/WEB-INF/lib/spring-core-5.1.2.RELEASE.jar differ diff --git a/target/myapps/WEB-INF/lib/spring-expression-5.1.2.RELEASE.jar b/target/myapps/WEB-INF/lib/spring-expression-5.1.2.RELEASE.jar new file mode 100644 index 0000000..577ccee Binary files /dev/null and b/target/myapps/WEB-INF/lib/spring-expression-5.1.2.RELEASE.jar differ diff --git a/target/myapps/WEB-INF/lib/spring-jcl-5.1.2.RELEASE.jar b/target/myapps/WEB-INF/lib/spring-jcl-5.1.2.RELEASE.jar new file mode 100644 index 0000000..d9117a8 Binary files /dev/null and b/target/myapps/WEB-INF/lib/spring-jcl-5.1.2.RELEASE.jar differ diff --git a/target/myapps/WEB-INF/lib/spring-web-5.1.2.RELEASE.jar b/target/myapps/WEB-INF/lib/spring-web-5.1.2.RELEASE.jar new file mode 100644 index 0000000..b8bbed3 Binary files /dev/null and b/target/myapps/WEB-INF/lib/spring-web-5.1.2.RELEASE.jar differ diff --git a/target/myapps/WEB-INF/lib/spring-webmvc-5.1.2.RELEASE.jar b/target/myapps/WEB-INF/lib/spring-webmvc-5.1.2.RELEASE.jar new file mode 100644 index 0000000..8f58164 Binary files /dev/null and b/target/myapps/WEB-INF/lib/spring-webmvc-5.1.2.RELEASE.jar differ diff --git a/target/myapps/WEB-INF/mt-servlet.xml b/target/myapps/WEB-INF/mt-servlet.xml new file mode 100644 index 0000000..81c4f07 --- /dev/null +++ b/target/myapps/WEB-INF/mt-servlet.xml @@ -0,0 +1,26 @@ + + + + + + + + + + \ No newline at end of file diff --git a/target/myapps/WEB-INF/web.xml b/target/myapps/WEB-INF/web.xml new file mode 100644 index 0000000..75b8c86 --- /dev/null +++ b/target/myapps/WEB-INF/web.xml @@ -0,0 +1,23 @@ + + + maven-web-application + + contextConfigLocation + /WEB-INF/mt-servlet.xml + + + mt + org.springframework.web.servlet.DispatcherServlet + 1 + + + mt + /services/* + + + org.springframework.web.context.ContextLoaderListener + + + /jsps/home.jsp + + \ No newline at end of file diff --git a/target/myapps/images/LT.JPG b/target/myapps/images/LT.JPG new file mode 100644 index 0000000..325a881 Binary files /dev/null and b/target/myapps/images/LT.JPG differ diff --git a/target/myapps/images/landmarklogo.jpg b/target/myapps/images/landmarklogo.jpg new file mode 100644 index 0000000..c92d307 Binary files /dev/null and b/target/myapps/images/landmarklogo.jpg differ diff --git a/target/myapps/images/logo.png b/target/myapps/images/logo.png new file mode 100644 index 0000000..fd3e413 Binary files /dev/null and b/target/myapps/images/logo.png differ diff --git a/target/myapps/images/lttechlogo.png b/target/myapps/images/lttechlogo.png new file mode 100644 index 0000000..4837bec Binary files /dev/null and b/target/myapps/images/lttechlogo.png differ diff --git a/target/myapps/images/mylandmarklogo.jpg b/target/myapps/images/mylandmarklogo.jpg new file mode 100644 index 0000000..3e5f700 Binary files /dev/null and b/target/myapps/images/mylandmarklogo.jpg differ diff --git a/target/myapps/jsps/home.jsp b/target/myapps/jsps/home.jsp new file mode 100644 index 0000000..439d426 --- /dev/null +++ b/target/myapps/jsps/home.jsp @@ -0,0 +1,39 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8"%> + + + + +Mylandmark.Tech- Home Page + + + + +

Landmark Technology - Leaders in Software Delivery and DevOps Automation

+

Welcome to Landmark Technology.......We have a demo on DevOps E Degree with Linux and AWS on Saturday Sept 19, 2020 at 8am EST for our new batch. + Landmark Technology is a an ideal online training platform for DevOps and Cloud Infrastructures. +

+

JESUS IS LORD of All

+
+
+ + + + + Landmark Technology, + Toronto, Ontario, Canada + +1 437 215 2483, + mylandmarktech@gmail.com +
+ Mail to Landmark Technologies +
+
+
+

Service : Get Employee Details

+
+
+

Landmark Technologies - Consultant, Training, Development Center.

+

Copyrights 2019 by Landmark Technologies

+ + + diff --git a/target/sonar/.sonar_lock b/target/sonar/.sonar_lock new file mode 100644 index 0000000..e69de29 diff --git a/target/sonar/report-task.txt b/target/sonar/report-task.txt new file mode 100644 index 0000000..9819158 --- /dev/null +++ b/target/sonar/report-task.txt @@ -0,0 +1,6 @@ +projectKey=com.mt:maven-web-application +serverUrl=http://172.31.92.148:9000 +serverVersion=7.8.0.26217 +dashboardUrl=http://172.31.92.148:9000/dashboard?id=com.mt%3Amaven-web-application +ceTaskId=AX2Z8vyiS9dcFVAANIVE +ceTaskUrl=http://172.31.92.148:9000/api/ce/task?id=AX2Z8vyiS9dcFVAANIVE