Fahmi's Blog

CentOS

List articles in CentOS

image

Cara SSH ke Server Menggunakan Public Key (Tanpa Password)

Published 3 months ago in - 1 min read
Kita dapat login SSH ke server tanpa menggunakan password dengan memanfaatkan public key dari SSH Key Pair yang kita miliki di device kita.Caranya sangat simple:Generate SSH key pair deng...
Read more →
image

Cara Install Nginx untuk Multiple Website di Vultr dengan Centos 8

Published 4 years ago in - 8 min read
Beberapa hari yang lalu saya melakukan migrasi blog dari yang semula di shared hosting, saya pindahkan ke VPS di Vultr. Tulisan saya kali ini akan membahas mengenai cara install nginx ...
Read more →
image

Install MariaDB 10 di CentOS 7

Published 8 years ago in - 1 min read
Bikin file repo baru di /etc/yum.repos.d/, misal MariaDB.repo, isi: # MariaDB 10.1 CentOS repository list - created 2016-10-11 08:34 UTC # http://downloads.mariadb.org/mariadb/repositor...
Read more →
image

Install httpd CentOS 7

Published 8 years ago in - 1 min read
update OS: yum update install httpd: yum install httpd start/stop httpd: systemctl start httpd enable at boot: systemctl enable httpd see status: systemctl status httpd
Read more →
image

Cara Setting Proxy di .bashrc CentOS 7

Published 8 years ago in - 1 min read
vi ~/.bashrc # Proxy Settings export ALL_PROXY=http://10.0.0.94:8080 # export ALL_PROXY=http://username:password@10.0.0.94:8080 #AUTH export HTTP_PROXY=$ALL_PROXY export HTTPS_PROX...
Read more →
image

Cara Setting IP Static di CentOS 7

Published 8 years ago in - 1 min read
[root@localhost /]# cat /etc/sysconfig/network-scripts/ifcfg-ens32 TYPE=Ethernet NM_CONTROLLED=no BOOTPROTO=static DEFROUTE=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes...
Read more →