Cara Memperbaiki Git SSH Permission Denied GitLab [Red Hat/CentOS]

Masalah git@gitlab.example.com: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password). Tidak bisa git clone walaupun sudah menambahkan public key ssh pada akun GitLab Kondisi Sudah menambahkan Public Key SSH pada akun GitLab Tidak bisa menjalankan git clone ke repository private walaupun sebagai pemilik repository Panduan Lihat error pada SELinux journalctl -t setroubleshoot Error terjadi karena file authorized_key Lihat SELinux Context pada direktori .ssh gitlab ls -Z /var/opt/gitlab/.ssh/authorized_keys # Output: # unconfined_u:object_r:var_t:s0 /var/opt/gitlab/....

September 12, 2021 · 1 min · Aji Arya

Cara Memasang Proxmox Exporter

Prasyarat Proxmox terinstall Panduan Buat token untuk proxmox-expoter Buat API Token Datacenter > API Token Klik Add Masukan Token ID (Catat bagian ini) Hapus centang pada Privilege Separation Klik Add Salin Token Secret Klik “Copy Secret Value” (Catat bagian ini) Pasang proxmox-exporter python3 -m pip install prometheus-pve-exporter Buat servis systemd Buat user pve_exporter useradd --no-create-home --shell /bin/false pve_exporter Buat file konfigurasi mkdir /etc/pve_exporter cat<<EOF > /etc/pve_exporter/config....

September 11, 2021 · 1 min · Aji Arya

Cara SSH Jump Host

Panduan Perintah # 1 Lompatan ssh -J <user>@<machine-1> <user>@<machine-2> # 2 Lompatan ssh -J <user>@<machine-1>,<machine-2> <user>@<machine-3> # 3 Lompatan ssh -J <user>@<machine-1>,<machine-2>,<user>@<machine-3> <user>@<machine-4> Contoh Contoh 1: SSH Jump dari 192.168.10.2 ke 192.168.10.3 ssh -J user@192.168.10.2 user@192.168.10.3 Contoh 2: SSH Jump dari 192.168.10.2 lalu 192.168.10.3 ke 192.168.10.4 ssh -J user@192.168.10.2,user@192.168.10.3 user@192.168.10.4 Referensi Gentoo Linux - SSH Jump Host

September 11, 2021 · 1 min · Aji Arya

Cara Membuat VM Menggunakan Cloud Image - Proxmox

Prasyarat Proxmox terinstall Panduan Buat template Unduh file image cloud ubuntu 18 wget https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-amd64.img Buat VM qm create 100 --memory 2048 --net0 virtio,bridge=vmbr0 Import image ke dalam local-lvm storage qm importdisk 100 bionic-server-cloudimg-amd64.img local-lvm Atur disk VM qm set 100 --scsihw virtio-scsi-pci --scsi0 local-lvm:vm-100-disk-0 Buat drive cloud-image qm set 100 --ide2 local-lvm:cloudinit Atur boot menggunakan cloud-init qm set 100 --boot c --bootdisk scsi0 Atur console qm set 100 --serial0 socket --vga serial0 Atur console qm template 100 Buat VM Klon template qm clone 100 200 --name ubuntu20 Konfigurasi publickey dan IP Address qm set 200 --sshkey ~/....

September 10, 2021 · 1 min · Aji Arya

Cara Mengubah Volume Type Dengan Backend Yang Berbeda - CLI

Prasyarat Cinder dengan 2 atau lebih backend Panduan Lihat volume type yang tersedia openstack volume type list Ubah volume type pada volume yang dimaksud openstack volume set --type <new_type> --retype-policy on-demand <vol_id/vol_name> Tunggu sampai proses retyping selesai

September 10, 2021 · 1 min · Aji Arya