JDK linux install

JDK Tested on a CentOS 7 minimal installation Install The current latest stable version is 1.8.0_77 cd /opt/ wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u77-b03/jdk-8u77-linux-x64.tar.gz" tar xzf jdk-8u77-linux-x64.tar.gz cd /opt/jdk1.8.0_77/ alternatives --install /usr/bin/java java /opt/jdk1.8.0_77/bin/java 2 alternatives --config java Set environment variable add a jdk.sh file in /etc/profile.d/ With the following content export JAVA_HOME=/opt/jdk1.8.0_77 export PATH=${PATH}:/opt/jdk1.8.0_77/bin Logout gnome-session-quit Test Test the installation by executing java -version

December 24, 2016 · 1 min · Mario Moreno

Bamboo Windows Agent Installation

Based on https://confluence.atlassian.com/bamboo/bamboo-remote-agent-installation-guide-289276832.html https://confluence.atlassian.com/bamboo/additional-remote-agent-options-436044733.html Requirements JDK To avoid any version conflict it’s recommended to install the same JDK version as the Bamboo Server. Define JAVA_HOME environment variable and optionally add %JAVA_HOME%\bin to PATH then you should be able to run in any command prompt: java -version java version "1.8.0_101" Java(TM) SE Runtime Environment (build 1.8.0_101-b13) Java HotSpot(TM) 64-Bit Server VM (build 25.101-b13, mixed mode) Bamboo Agent User You can run the agent as an administrator. For different reasons we prefer to create a specific non-admin user for the agent ...

December 20, 2016 · 3 min · Mario Moreno

Bamboo Windows Install

On this post I will describe my experience step by step installing Atlassian Bamboo on Windows with SQL Server as database. This installation was done following the official documentation: https://confluence.atlassian.com/bamboo/installing-bamboo-on-windows-289276813.html Requirements You can check the current Bamboo supported versions in the following Atlassian confluence page: https://confluence.atlassian.com/bamboo/supported-platforms-289276764.html In this case we have a clean Windows Server 2012 Standard installation. Our first steps are the installation of the JDK and SQL Server. Install Prerequisites JDK First of all we want to install Java. In this case Oracle JDK, you can find the latest version in: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html ...

December 11, 2016 · 6 min · Mario Moreno