LEMP
Mục lục
Xác minh chức năng máy chủ web Nginx
Để nhanh chóng xác minh máy chủ web Nginx đang phản hồi, hãy kết nối với máy chủ thông qua bảng điều khiển hoặc SSH và chạy lệnh:
curl –head –insecure http://localhost
“HTTP/1.1 200 OK” should be visible in the output (often the first line returned).
MariaDB (MySQL)
Access the database server as the root user:
Truy cập database serve với tư cách là người dùng root:
mysql -u root
Quản lý dịch vụ Nginx
Stop Nginx:
systemctl stop nginx.service
Start Nginx:
systemctl start nginx.service
Nginx service status:
systemctl status nginx.service
Disable Nginx khi reboot lại server:
systemctl disable nginx.service
Enable Nginx khi reboot lại server:
systemctl enable nginx.service