Install Jenkins & Eclipse in Quick short

Install Jenkins & Eclipse in Quick short

Image result for eclipse logo + jenkinsImage result for eclipse logo

 Jenkins offers a simple way to set up a continuous integration or continuous delivery environment for almost any combination of languages and source code repositories using pipelines, as well as automating other routine development tasks. While Jenkins doesn’t eliminate the need to create scripts for individual steps, it does give you a faster and more robust way to integrate your entire chain of build, test, and deployment tools than you can easily build yourself.

Installation process
######################################
 ## wget -q -O - https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key add -
##  echo deb https://pkg.jenkins.io/debian-stable binary/ | sudo tee /etc/apt/sources.list.d/jenkins.list
## sudo apt-get update
## sudo apt-get install jenkins
## sudo systemctl start jenkins
## sudo systemctl status jenkins
##  sudo ufw allow 8080
## sudo ufw allow OpenSSH
## sudo ufw enable
## http://ip_address_or_domain_name:8080
##  then u have to check your encrypted password in the given below file:-
 root@ubuntu:~# cat /var/lib/jenkins/secrets/initialAdminPassword
c5c74f18196b4b508cd0ab7274d8602d  <<<<< md5 hash password>>>>

## continue with the suggested plugins
## set username password
*****************************************************************************

Eclipse is an integrated development environment (IDE) used in computer programming, and is the most widely used Java IDE. It contains a base workspace and an extensible plug-in system for customizing the environment.

Installation
############

#apt-get install -y openjdk-8-jdk curl wget
#java -version
#openjdk version "1.8.0_141"
OpenJDK Runtime Environment (build 1.8.0_141-8u141-b15-1~deb9u1-b15)
OpenJDK 64-Bit Server VM (build 25.141-b15, mixed mode)
### 32 Bit ###

curl -O http://ftp.jaist.ac.jp/pub/eclipse/technology/epp/downloads/release/oxygen/R/eclipse-java-oxygen-R-linux-gtk.tar.gz

### 64 Bit ###

#curl -O http://ftp.jaist.ac.jp/pub/eclipse/technology/epp/downloads/release/oxygen/R/eclipse-java-oxygen-R-linux-gtk-x86_64.tar.gz
#tar -zxvf eclipse-java-oxygen-R-linux-gtk*.tar.gz -C /usr/
#ln -s /usr/eclipse/eclipse /usr/bin/eclipse
#vi /usr/share/applications/eclipse.desktop
[Desktop Entry]
Encoding=UTF-8
Name=Eclipse 4.7
Comment=Eclipse Oxygen
Exec=/usr/bin/eclipse
Icon=/usr/eclipse/icon.xpm
Categories=Application;Development;Java;IDE
Version=1.0
Type=Application
Terminal=0
# eclipse
Install Eclipse IDE - Start Eclipse IDE on Debian 9
 

Comments