Source Image: www.heroku.com
Buat akun Heroku
Sebelum mendeploy aplikasi ke heroku kita harus membuat akun terlebih dahulu. ini adalah link untuk mendaftar ke heroku https://signup.heroku.com/login
Buat Project Baru
Masuk ke menu Deploy
Ini adalah langkah-...
Install Ruby with RVM on Debian
Written by Hakim
on October 28, 2018
Source Image: blog.sourcerer.io
Install GPG Key
Install RVM
Install RVM Stable with Ruby
Install RVM Stable with Rails
Check Ruby with which command
...
Introduction to Docker
Written by Hakim
on October 27, 2018
Source image: commons.wikimedia.org
What is Docker ?
Docker is a platform for developers and sysadmins to develop, deploy, and run applications with containers. The use of Linux containers to deploy applications is called containerization. Containers are not...
Project Omega On AWS (VPC, S3, EC2) Part-1
Written by Hakim
on October 20, 2018
source: https://www.lucidchart.com/documents/view/703f6119-4838-4bbb-bc7e-be2fb75e89e5/0
Kali ini saya akan mencoba untuk menyelesaikan sebuah project dari Linux Academy yaitu Project Omega , Dari gambar diatas dapat kita lihat bahwa ada beberapa hal yang akan kita lakukan mulai dari...
Mengatasi Account Locked di Debian
Written by Hakim
on October 13, 2018
Awal nya ini terjadi pada linux saya setelah beberapa kali mengalami crash pada hardisk yang terkadang sering tidak terbaca. Meskipun kadang sempat kesal kenapa hal itu bisa terjadi, kemudian saya coba browsing-browsing di google dan berdiskusi di komunitas distronya ternyata belum mendapatkan solusi...
Install Django 2.0 and Setup Local Environment Development on Linux Debian
Written by Hakim
on May 29, 2018
1. Install python, i install python 3. Before install python, update the repository
$ sudo apt-get update
$ sudo apt-get install python3
2. Install Virtualenv
$ sudo apt-get install python-virtualenv
3. Create a new directory
$ virtualenv -p python3 project_name
4. Change the directory...
Cara Reset Password Root di MariaDB Linux
Written by Hakim
on April 25, 2018
1. Matikan service mysql
$ sudo /etc/init.d/mysql stop
2.Jalankan safe mode di maria db untuk masuk ke dalam database tanpa menggunakan password
$ sudo mysqld_safe --skip-grant-tables &
[1] 24361
$180426 10:20:56 mysqld_safe Logging to syslog.
180426 10:20:57 mysqld_safe Starting...
Cara Intall Apache Spark di Linux
Written by Hakim
on January 11, 2018
1. Install Java
Memeriksa apakah java SDK (Standar Development Kit) dan JRE(Java Runtime Environment) sudah terinstall di OS kita
$ java -version
Pada gambar diatas telihat versi java SDK yang digunakan ialah versi 1.8.0_131
serta versi JRE 1.8.0_131...