Month: January 2024
Cara mengubah izin untuk folder kecuali File didalamnya
Untuk mengubah semua direktori ke 755 ( drwxr-xr-x): find /opt/lampp/htdocs -type d -exec chmod 755 {} \; Untuk mengubah semua file menjadi 644 ( -rw-r--r--): find /opt/lampp/htdocs -type f -exec chmod 644 {} \; Beberapa keluhan: (terima kasih @ tobbez ) chmod 755 {}menentukan perintah yang akan dieksekusi finduntuk setiap direktori chmod 644 {}menentukan perintah yang…
SSL_CTX_use_PrivateKey_file(“/example.key”) failed (SSL: error:0B080074:x509 certificate routines:X509_check_private_key:key values mismatch
Problem Statement: I've wanted to change the SSL certificate, because I've changed my server so I had to create a new CSR with the different name as discuss in the following question with this command. And generated the Privatekey and CSR. $ openssl req -new -newkey rsa:2048 -nodes -keyout example_new.key -out example_new.csr Then I'd paste…