Nginx permission denied while connecting to upstream in rocky 9.3 and fedora etc

Conclusion, maybe my problem was bind a standard port. To add your desired port use this command: sudo semanage port -a -t http_port_t -p tcp [yourport] Now run nginx with sudo: sudo systemctl stop nginx sudo systemctl start nginx This should solve the problem: setsebool -P httpd_can_network_connect 1 Option #2 (probably more secure) setsebool -P httpd_can_network_relay 1       ...

View More
  Dibaca 463 kali

Apa yang harus dijawab dalam perintah mysql_secure_installation yang Benar

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MariaDB to secure it, we'll need the current password for the root user. If you've just installed MariaDB, and haven't set the root password yet, you should just press enter here. Enter current password for root (enter for none): OK, successfully used password, moving on... Setting the root password or using the unix_socket ensures that ...

View More
  Dibaca 1639 kali

Cara Membuat File Swap Ukuran 16 gb di Rocky Linux 9

Membuat file swap pada sistem operasi berbasis Linux seperti Rocky Linux 9 merupakan proses yang cukup sederhana dan dapat sangat membantu dalam situasi di mana RAM fisik (memori) sistem Anda penuh. Berikut adalah langkah-langkah untuk membuat file swap sebesar 16GB: 1. Membuat File Swap Pertama, buka terminal dan gunakan perintah dd untuk membuat file swap. Dalam contoh ini, kita akan membuat file swap dengan nama swapfile di direktori root (/) dengan ukuran 16GB. Ukuran file swap disesuaikan d ...

View More
  Dibaca 445 kali

How to create fullchain from cert SSL and Ca SSL

On Manual Make a copy of cert.pem, name it fullchain. Open this copy, and paste ca.pem at the end. Done. ini terminal :   cat cert.pem ca.pem > fullchain.pem ...

View More
  Dibaca 261 kali