Nginx increases the user limit
Enter the below command nano /etc/nginx/nginx.conf Compare the below lines user www-data; worker_processes 4; pid /var/run/nginx.pid; events { worker_connections 5000; use epoll; # multi_accept on; } # took it in…
Enter the below command nano /etc/nginx/nginx.conf Compare the below lines user www-data; worker_processes 4; pid /var/run/nginx.pid; events { worker_connections 5000; use epoll; # multi_accept on; } # took it in…
Please type the below command to check single port is used or not sudo lsof -i:22 22 is the port you can change like HTTP port 80 or HTTPS port…
Enter the below command to the terminal for Nginx 413 Error sudo su nano /etc/nginx/nginx.conf Add under HTTP section below line client_max_body_size 8M; Save the file by pressing Ctrl +…
First, you need to add a wildcard, A record. Like *.your-domain.com Install the Ejabberd using the below command sudo su apt update apt upgrade apt install ejabberd-contrib ejabberd We need…
Install Nginx, PHP, MySQL using the below tutorials https://www.ai38ml.com/how-to-install-nginx-with-lets-encrypt-on-ubuntu-20-04/ https://www.ai38ml.com/how-to-install-mysql-on-ubuntu-20-04/ https://www.ai38ml.com/how-to-install-php-with-nginx-on-ubuntu-20-04/ Install PhpMyAdmin using the below command sudo su apt update apt install phpmyadmin After that, don't select anything like…
Please check the below Nginx installation tutorial. https://www.ai38ml.com/how-to-install-nginx-with-lets-encrypt-on-ubuntu-20-04/ Enter the below command to install PHP sudo apt install php-fpm php-mysql After that, configure PHP to Nginx config file like below.…
MySQL is a relational database management system based on SQL – Structured Query Language. MySQL Database Service is a fully-managed database service that lets developers quickly develop and deploy secure, cloud-native applications using the world’s most popular open-source database. MySQL Database Service is the only MySQL cloud service with an integrated, high-performance, in-memory query accelerator.
You need to check the current time zone using the below command timedatectl You can set or change the time zone using the below command sudo timedatectl set-timezone Asia/Kolkata echo…
The first step is to install docker using the below tutorial https://www.ai38ml.com/how-to-install-docker-docker-compose-on-ubuntu-18-04/ After that, create a data folder to the home directory mkdir -p ${HOME}/data After that, create a MinIO…
First, you need to check your current version of GitLab using the below command sudo su grep gitlab /opt/gitlab/version-manifest.txt Check gitlab-ee or gitlab-ce version depending on your installed package Create…