Monday, June 10, 2019

How to Install Jenkins on Ubuntu 19.04

Jenkins is a Java based software which can be installed from the Ubuntu packages. Jenkins is mainly used for Continues Integration and Continuous Deployment (CI CD). On this tutorial, we will install Jenkins on Ubuntu 19.04.

Before you start, please prepare yourself. You have Ubuntu 19.04 installed on your PC/Laptop/Server. Java 8 is already installed.


Prepare Firewall Rules for Jenkins


Jenkins uses a custom port 8080 to run, so you need to create a firewall to all access to this port.

Go to VPC Network >> Firewall rules and click Create Firewall rules.

  • In Name enter jenkins
  • In Targets select All instances in the network
  • In Source filter select IP ranges
  • In Source IP ranges enter 0.0.0.0/0
  • In Protocols and ports check TCP and enter 8080
  • Click Create.

Installing Jenkins


To install latest version of Jenkins, add the repository key to the system and add the repository address to the sources list.

sudo wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | 
sudo apt-key add - sudo sh -c 'echo deb http://pkg.jenkins.io/debian-stable binary/ > /etc/apt/sources.list.d/jenkins.list'

Now you can update and install Jenkins.

sudo apt update 
sudo apt install jenkins

Once the installation is complete you can start Jenkins using the following command.sudo systemctl start jenkins

You can also view the status of Jenkins using this command.

sudo systemctl status jenkins

If Jenkins is started successfully you will get a response similar to this.
Output
● jenkins.service - LSB: Start Jenkins at boot time
    Loaded: loaded (/etc/init.d/jenkins; generated)
    Active: active (exited) since Thu 2019-06-06 09:15:55 UTC; 46s ago
      Docs: man:systemd-sysv-generator(8)
     Tasks: 0 (limit: 1997)
    CGroup: /system.slice/jenkins.service

Setting Jenkins


Once everything is done you can open your browser and enter your IP address followed by the Jenkins port 8080. The format will be like this http://ip_address:8080

You will see the Unlock screen where you need to type the password to unlock Jenkins.

  • Execute the following command to get the password. sudo cat /var/lib/jenkins/secrets/initialAdminPassword
  • Copy the password and paste it in the Administrator password field to unlock and start the setup.
  • Click Install suggested plugins option to start the installation immediately.
  • Once the installation is complete you can create an admin user to login to the dashboard.
  • Finally you will see the Instance Configuration, you can use your domain name or IP address.
  • Click Save and Finish.

Once everything is complete click Start using Jenkins to visit the main Jenkins dashboard.


Sunday, June 9, 2019

Google Drive API Javascript Example

On this tutorial, we gonna use Google Drive API for Javascript. We use NodeJS on this tutorial, so you must have NodeJS installed in your PC/Laptop.

For the API authentication, go to console.developers.google.com and choose your option. You can authenticate with API key, or by Oauth 2.0, and by Service Account. Your authentication is almost ready, you have to enable Google API you want to use, by visiting Google API Library https://console.developers.google.com/apis/library and enable Google Drive API.

Follow this step to use Google Drive API.