LAMP
Mục lục
Xác minh chức năng máy chủ web Apache
Để nhanh chóng xác minh máy chủ web Apache đ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ụ Apache
Stop Apache:
systemctl stop apache2.service
Start Apache:
systemctl start apache2.service
Apache service status:
systemctl status apache2.service
Disable Apache khi reboot lại server:
systemctl disable apache2.service
Enable Apache khi reboot lại server:
systemctl enable apache2.service