WIKINIX

Loading

  • Feb, Thu, 2020
Setup FTP Client With LFTP Command

Setup LFTP Client Untuk Koneksi FTP Server menggunakan SSL CIMB : #vi /etc/lftp.conf tambahkan setup configurasi berikut pada line terakhir : set passive-mode yes; set ssl:verify-certificate no #set ftp:ssl-allow false….

Read more
  • Dec, Mon, 2019
Setup NTP Server On RHEL 7

Install & Konfigurasi NTP yum install ntp Setup Konfigurasi NTP vi /etc/ntp.conf Replace setup IP Address  Pool NTP Syncronize nya : Setup Default di non aktifkan #server 0.rhel.pool.ntp.org iburst #server….

Read more
  • Dec, Mon, 2019
Installasi .NET Core SDK Runtime

Create Folder dotnet di directory yang diinginkan mkdir /u01/dotnet Extract file dotnet ke folder tersebut. tar –xzvf dotnet-sdk-3.0.101-linux-x64.tar.gz –C /u01/dotnet Rubah owner directory dan file ke user aplikasi : chown….

Read more
  • Dec, Thu, 2019
Why are the errors “gofer.messaging.adapter.connect” repeatedly logged in /var/log/messages On RHEL

Issue goferd errors are reported in /var/log/messages: Sep 29 03:19:22 abcxyz goferd: [ERROR][worker-0] gofer.messaging.adapter.connect:33 – connect: proton+amqps://subscription.rhsm.redhat.com:5647, failed: Connection amqps://subscription.rhsm.redhat.com:5647 disconnected: Condition(‘proton:io’, ‘recv: Connection refused’) Sep 29 03:19:22 abcxyz goferd:….

Read more
  • Dec, Thu, 2019
Installasi PHP 7.3 On RHEL 8.1

Install PHP 7.3 On RHEL 8.1 =========================== dnf module list php yum module enable php:7.3 -y dnf install php php* Setup Selinux Mysql =========================== semanage port -a -t mysqld_port_t -p….

Read more
  • Dec, Thu, 2019
Fixing CBC Weak Chipper SSH

On Linux : #vi /etc/ssh/sshd_config add line this : Ciphers chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com restart service ssh testing : ssh -vv -oCiphers=aes128-cbc,3des-cbc,blowfish-cbc [user@localhost] On Solaris : #vi /etc/ssh/sshd_config add line this : Ciphers….

Read more
  • Dec, Thu, 2019
Create LVM Partition Linux

Scan Disk RHEL 6 echo “- – -” > /sys/class/scsi_host/host0/scan Create Partition #fdisk /dev/sdb pilih option “n” pilih option “p” pilih option “w” Crete Physical Volume LVM #pvcreate /dev/sdb Create….

Read more