Magento

Một nền tảng thương mại điện tử mở, có thể tùy chỉnh để xây dựng và phát triển các cửa hàng trực tuyến.

Accessing Magento

Mở trình duyệt của bạn: http://<server-ip>

Find admin panel URL:

php /var/www/magento2/bin/magento info:adminuri

Log in using the credentials stored in: /root/.cloudzy-creds

Các tập tin và thư mục quan trọng

  • Magento installation: /var/www/magento2
  • Magento configuration file: /var/www/magento2/app/etc/env.php
  • Magento CLI: /var/www/magento2/bin/magento
  • Composer authentication for repo.magento.com: /var/www/.composer/auth.json
  • Composer cache: /var/www/.cache/composer
  • Apache vhost configuration: /etc/apache2/sites-available/magento.conf
  • Enabled site symlink: /etc/apache2/sites-enabled/magento.conf
  • Admin and database credentials: /root/.cloudzy-creds
  • Magento logs: /var/www/magento2/var/log
  • Magento cache: /var/www/magento2/var/cache
  • Magento session storage: /var/www/magento2/var/session
  • Self-signed SSL key: /etc/apache2/ssl/privkey.pem
  • Chứng chỉ SSL tự ký: /etc/apache2/ssl/fullchain.pem

Services Management

Apache2:

systemctl restart apache2
systemctl status apache2

MySQL:

systemctl restart mysql
systemctl status mysql

Elasticsearch:

systemctl restart elasticsearch
systemctl status elasticsearch

Magento CLI Commands

Enable maintenance mode:

php /var/www/magento2/bin/magento maintenance:enable

Disable maintenance mode:

php /var/www/magento2/bin/magento maintenance:disable

Flush cache:

php /var/www/magento2/bin/magento cache:flush

Set deployment mode:

php /var/www/magento2/bin/magento deploy:mode:set production

Check admin URL:

php /var/www/magento2/bin/magento info:adminuri

Kích hoạt SSL với tên miền

1. Trỏ tên miền của bạn đến địa chỉ IP của máy chủ.

2. Chỉnh sửa cấu hình Apache và thay thế ServerName <IP>; với tên miền của bạn (<your-domain>):

vim /etc/apache2/sites-available/magento.conf

3. Cài đặt Certbot:

apt install -y certbot python3-certbot-apache

4. Chạy lệnh sau để tạo chứng chỉ Let's Encrypt hợp lệ:

certbot --apache --non-interactive --agree-tos --email [email protected] -d yourdomain.com

5. Khởi động lại Apache để áp dụng các thay đổi:

systemctl restart apache2

6. Open your browser and visit: https://yourdomain.com

Hiện không có sẵn.

Thông tin ứng dụng