Skip to content

Instantly share code, notes, and snippets.

View zhadowz99's full-sized avatar

Ahmad Krisnanda zhadowz99

  • Telkom Indonesia
  • Karawang
View GitHub Profile
@zhadowz99
zhadowz99 / README-Template.md
Created March 22, 2021 04:30 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

Install docker latest with ZFS as storage driver on Ubuntu 18.04.

Reminder before we go deep down in to the installation.

ZFS is only supported on Docker Engine - Community with Ubuntu 14.04 or higher, with the zfs package (16.04 and higher) or zfs-native and ubuntu-zfs packages (14.04) installed.

In this tutorial I'm using an aws ec2 instance with fresh installed Ubuntu 18.04 Let's get started

@zhadowz99
zhadowz99 / How_to_update_your_Jenkins_2.176.x_to_2.222.4_and_java_8_to_11_in_Ubuntu_16.04_manually.md
Created June 15, 2020 08:20
How to update your Jenkins 2.176.x to 2.222.4 and java 8 to 11 in ubuntu 16.04 manually

How to update your Jenkins 2.176.x to 2.222.4 and java 8 to 11 in ubuntu 16.04 manually

This doc will tell you how to update your java to 11 and update Jenkins to version 2.222.4

  1. Make sure the jenkins run in the quite mode

    http://your_jenkins_url/quietDown
    
@zhadowz99
zhadowz99 / Migrating sonarqube 6.7.x db from mysql to postgresql 10 on ubuntu 16.04.md
Last active June 15, 2020 08:36
Migrating sonarqube 6.7.x db from mysql to postgresql 10 on ubuntu 16.04

Migrating sonarqube 6.7.x db from mysql to postgresql 10 on ubuntu 16.04

Before migrating

Make sure that you download the same version as your sonarqube 6.7.x And make sure your running in sudo

In this tutorial I will be using the sonarqube 6.7.5

Install sonarqube 6.7.4 with MySQL Database on Ubuntu 16.04

Minimum Requirement:

  • Java 8
  • MySQL 5.6

Create user sonar and give them password

Create file create_database.sql

@zhadowz99
zhadowz99 / Jenkinsfile
Created February 6, 2018 09:35 — forked from loverde/Jenkinsfile
Best of Jenkinsfile, a collection of useful workflow scripts ready to be copied into your Jenkinsfile on a per use basis.
#!groovy
# Best of Jenkinsfile
# `Jenkinsfile` is a groovy script DSL for defining CI/CD workflows for Jenkins
node {
}