Adgang til Magento
Åbn din browser: http://<server-ip>
Find webadressen til administrationspanelet:
php /var/www/magento2/bin/magento info:adminuri
Log ind med de legitimationsoplysninger, der er gemt i: /root/.cloudzy-creds
Vigtige filer og mapper
- Magento installation:
/var/www/magento2 - Magento konfigurationsfil:
/var/www/magento2/app/etc/env.php - Magento CLI:
/var/www/magento2/bin/magento - Komponistgodkendelse til repo.magento.com:
/var/www/.composer/auth.json - Komponistcache:
/var/www/.cache/composer - Apache vhost konfiguration:
/etc/apache2/sites-available/magento.conf - Aktiveret webstedssymlink:
/etc/apache2/sites-enabled/magento.conf - Admin- og databaselegitimationsoplysninger:
/root/.cloudzy-creds - Magento logfiler:
/var/www/magento2/var/log - Magento cache:
/var/www/magento2/var/cache - Magento session opbevaring:
/var/www/magento2/var/session - Selvsigneret SSL-nøgle:
/etc/apache2/ssl/privkey.pem - Selvsigneret SSL-certifikat:
/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-kommandoer
Aktiver vedligeholdelsestilstand:
php /var/www/magento2/bin/magento maintenance:enable
Deaktiver vedligeholdelsestilstand:
php /var/www/magento2/bin/magento maintenance:disable
Skyl cache:
php /var/www/magento2/bin/magento cache:flush
Indstil implementeringstilstand:
php /var/www/magento2/bin/magento deploy:mode:set production
Tjek admin URL:
php /var/www/magento2/bin/magento info:adminuri
Aktivering af SSL med et domæne
1. Peg dit domæne mod serverens IP.
2. Rediger Apache-konfiguration og erstat ServerName <IP>; med dit domæne (<your-domain>):
vim /etc/apache2/sites-available/magento.conf
3. Installer Certbot:
apt install -y certbot python3-certbot-apache
4. Kør følgende kommando for at generere et gyldigt Let’s Encrypt-certifikat:
certbot --apache --non-interactive --agree-tos --email [email protected] -d yourdomain.com
5. Genstart Apache for at anvende ændringerne:
systemctl restart apache2
6. Åbn din browser og besøg: https://yourdomain.com