Danh mục: Centos
-
set limit request nginx req zone
config ở /etc/nginx/nginx.conf trong http{} limit_req_zone $binary_remote_addr zone=ip:50m rate=30r/s; In location của từng config: limit_req zone=ip burst=30 delay=10; bài viết: https://vietnix.vn/huong-dan-cau-hinh-nginx-rate-limit/
-
Too many open files
What Is the Too Many Open Files Error? Amongst its other gazillion jobs, the kernel of a Linux computer is always busy watching who’s using how many of the finite system resources, such as RAM and CPU cycles. A multi-user system requires constant attention to make sure people and processes aren’t using more of any given system resource than is appropriate. It’s…
-
php-fpm
Với CentOS 7 – 8 Lệnh restart PHP-FPM trên CentOS 7 – 8 Sử dụng lệnh sau để restart PHP-FPM: $ sudo systemctl restart php-fpm Bạn cũng cần nắm những lệnh sau để sử dụng trong quá trình làm việc với PHP-FPM trên CentOS 7 & 8: Lệnh start PHP-FPM: $ sudo systemctl start php-fpm…
-
centos ERROR CONNECTION nginx add firewall
sudo firewall-cmd –permanent –zone=public –add-service=http sudo firewall-cmd –permanent –zone=public –add-service=https sudo firewall-cmd –reload
-
Các lệnh trong centos
Trên CentOS 7 và 8 thì bạn sử dụng lệnh sau để restart Nginx: sudo systemctl start nginx Restart Mysql: # Centos 7 # # systemctl start mariadb.service or # systemctl start mysql.service or # systemctl start mariadb or # systemctl start mysql Xem trạng thái MySQL/MariaDB # Centos 7 # # systemctl status mariadb.service…