このチュートリアルでは、Ubuntu22.04LTSにMagentoをインストールする方法を紹介します。 ご存じない方のために説明すると、MagentoはPHPで記述され、Adobe Inc.によって管理されている非常に人気のあるオープンソースのeコマースプラットフォームです。プラットフォームは柔軟性があり、オンラインストアを構築するためのさまざまな機能を備えています。 Magentoは、コミュニティとそのプラットフォームの商用バージョンを提供しています。コミュニティバージョンは無料で、主に個人や中小企業向けに設計されています。 一方、エンタープライズバージョンは、主に中規模から大規模のビジネスおよびより多くのエンタープライズ環境を対象としています。
この記事は、少なくともLinuxの基本的な知識があり、シェルの使用方法を知っていること、そして最も重要なこととして、自分のVPSでサイトをホストしていることを前提としています。 インストールは非常に簡単で、rootアカウントで実行していることを前提としています。そうでない場合は、’を追加する必要があります。sudo
‘root権限を取得するコマンドに。 Ubuntu 22.04(Jammy Jellyfish)にMagentoオープンソースeコマースプラットフォームを段階的にインストールする方法を紹介します。 Ubuntu 22.04や、Linux Mint、Elementary OS、Pop!_OSなどの他のDebianベースのディストリビューションでも同じ手順に従うことができます。
前提条件
- 次のオペレーティングシステムのいずれかを実行しているサーバー:Ubuntu 22.04、20.04、およびLinuxMintなどの他のDebianベースのディストリビューション。
- 潜在的な問題を防ぐために、OSの新規インストールを使用することをお勧めします。
- サーバーへのSSHアクセス(またはデスクトップを使用している場合はターミナルを開く)。
- A
non-root sudo user
またはへのアクセスroot user
。 として行動することをお勧めしますnon-root sudo user
ただし、ルートとして機能するときに注意しないと、システムに害を及ぼす可能性があるためです。
Ubuntu 22.04 LTSJammyJellyfishにMagentoをインストールします
手順1.まず、次のコマンドを実行して、すべてのシステムパッケージが最新であることを確認します。 apt
ターミナルのコマンド。
sudo apt update sudo apt upgrade
ステップ2.Ubuntu22.04にLAMPスタックをインストールします。
このチュートリアルを開始する前に、LAMPサーバーをサーバーにインストールする必要があります。 LAMPスタックがインストールされていない場合は、こちらのガイドに従ってください。
ステップ3.Ubuntu22.04にElasticsearchをインストールします。
デフォルトでは、ElasticsearchはUbuntu22.04ベースリポジトリでは利用できません。 次に、以下のコマンドを実行して、ElasticsearchリポジトリをUbuntuシステムに追加します。
echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/8.x/apt stable main" | sudo tee /etc/apt/sources.list.d/elastic-8.x.list
次に、GPGキーをインポートします。
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg
リポジトリを有効にしたら、次のコマンドを使用して最新バージョンのElasticsearchをインストールします。
sudo apt update sudo apt install elasticsearch
インストール後にElasticsearchサービスが自動的に開始されない場合、サービスを開始してシステムの起動時に有効にするには、次のように入力します systemctl
指図:
sudo systemctl enable elasticsearch sudo systemctl start elasticsearch sudo systemctl status elasticsearch
Elasticsearchが正しく実行されていることを確認するには、 curl
指図:
curl -X GET "localhost:9200/"
出力:
{ "name" : "1krDCO-", "cluster_name" : "elasticsearch", "cluster_uuid" : "mzgLCfLJeliZUbpC_6R0wQ", "version" : { "number" : "6.8.24", "build_flavor" : "default", "build_type" : "deb", "build_hash" : "4f66956", "build_date" : "2022-06-06T21:23:50.08771JZ", "build_snapshot" : false, "lucene_version" : "7.7.4", "minimum_wire_compatibility_version" : "5.6.1", "minimum_index_compatibility_version" : "5.0.1" }, "tagline" : "You Know, for Search" }
ステップ4.Ubuntu22.04にComposerをインストールします。
デフォルトでは、ComposerはUbuntu22.04ベースリポジトリでは使用できません。 次に、以下のコマンドを実行して、を使用してComposerインストーラーをダウンロードします。 wget
指図:
wget -O composer-setup.php https://getcomposer.org/installer
Composerをダウンロードしたら、コマンドラインで次のコマンドを実行して、LinuxUbuntuシステムにComposerをインストールしてセットアップします。
php composer-setup.php --install-dir=/usr/local/bin --filename=composer
インストールを確認し、Composerのインストール済みビルドバージョンを確認します。
composer -V
ステップ5.Ubuntu22.04にMagentoをインストールします。
このチュートリアルでは、Composerを使用してMagento2.4.4をインストールします。 これを続行するには、アクセスキーを作成する必要があります。 magento.com Webサイトでアカウントを作成し、次の場所に移動できます。 https://marketplace.magento.com/customer/accessKeys/
アクセスキーを作成します。
アクセスキーが作成されると、SSHセッションで次のコマンドを実行できます。
composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition=2.4.4 /var/www/magento2
ユーザー名とパスワードの入力を求められます。 これはあなたが記入する必要がある情報です:
Username: YOUR_PUBLIC_KEY Password: YOUR_PRIVATE_KEY
次に、Magentoディレクトリに移動します。
cd /var/www/magento2
いくつかのフォルダのアクセス許可を変更する必要があります。
find var generated vendor pub/static pub/media app/etc -type f -exec chmod g+w {} + sudo chown -R www-data:www-data /var/www/magento2 sudo chmod -R 755 /var/www/magento2
その後、以下のcomposerコマンドを使用してMagentoをインストールします。
sudo bin/magento setup:install --base-url=http://your-domain.com --db-host=localhost --db-name=magento_db --db-user=magento_user --db-password=Password --admin-firstname=Admin --admin-lastname=User --admin-email=admin@your-domain.com --admin-user=admin --admin-password=admin123 --language=en_US --currency=USD --timezone=America/Chicago --use-rewrites=1
次の出力が表示されます。
[SUCCESS]: Magento installation complete. [SUCCESS]: Magento Admin URI: /admin_1m31xl Nothing to import.
ステップ6.WordPress用にMariaDBを構成します。
デフォルトでは、MariaDBは強化されていません。 を使用してMariaDBを保護できます mysql_secure_installation
脚本。 ルートパスワードを設定し、匿名ユーザーを削除し、リモートルートログインを禁止し、テストデータベースと安全なMariaDBへのアクセスを削除する各手順を注意深く読み、以下を実行する必要があります。
mysql_secure_installation
次のように構成します。
- Set root password? [Y/n] y - Remove anonymous users? [Y/n] y - Disallow root login remotely? [Y/n] y - Remove test database and access to it? [Y/n] y - Reload privilege tables now? [Y/n] y
次に、MariaDBコンソールにログインして、Magentoのデータベースを作成する必要があります。 次のコマンドを実行します。
mysql -u root -p
これによりパスワードの入力を求められるので、MariaDBのrootパスワードを入力し、Enterキーを押します。 データベースサーバーにログインしたら、Magentoをインストールするためのデータベースを作成する必要があります。
MariaDB [(none)]> CREATE DATABASE magento_db; MariaDB [(none)]> CREATE USER 'magento_user'@'localhost' IDENTIFIED BY 'your-strong-password'; MariaDB [(none)]> GRANT ALL ON magento_db.* TO 'magento_user'@'localhost'; MariaDB [(none)]> FLUSH PRIVILEGES; MariaDB [(none)]> EXIT;
ステップ7.Apache仮想ホストを構成します。
次に、Magentoの仮想ホスト構成ファイルを作成します。
sudo nano /etc/apache2/sites-available/magento.conf
次のファイルを追加します。
<VirtualHost *:80> ServerName domain.com ServerAlias www.domain.com ServerAdmin admin@domain.com DocumentRoot /var/www/magento2/pub ErrorLog ${APACHE_LOG_DIR}/www.domain.com_error.log CustomLog ${APACHE_LOG_DIR}/www.domain.com_access.log combined <Directory /var/www/magento2/> Options FollowSymlinks AllowOverride All Require all granted </Directory> </VirtualHost>
ファイルを保存して閉じてから、Apache Webサーバーを再起動して、変更を加えます。
sudo a2ensite magento.conf sudo a2enmod ssl rewrite sudo systemctl restart apache2
ステップ8.Let’sEncryptでMagentoを保護します。
まず、Certbotをインストールして、Let’sEncryptでSSL証明書を取得する必要があります。
sudo apt install certbot python3-certbot-apache
次に、次の手順に従って、Let’sEncryptを使用してSSL証明書を取得します。
sudo certbot --apache
対話型プロンプトに従い、証明書をインストールする必要があります。 2つのドメインがあるので、両方のドメインにSSL証明書をインストールします。
Saving debug log to /var/log/letsencrypt/letsencrypt.log Enter email address (used for urgent renewal and security notices) (Enter 'c' to cancel): admin@domain.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Please read the Terms of Service at https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf. You must agree in order to register with the ACME server. Do you agree? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (Y)es/(N)o: Y - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Would you be willing, once your first certificate is successfully issued, to share your email address with the Electronic Frontier Foundation, a founding partner of the Let's Encrypt project and the non-profit organization that develops Certbot? We'd like to send you email about our work encrypting the web, EFF news, campaigns, and ways to support digital freedom. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (Y)es/(N)o: N Account registered. Which names would you like to activate HTTPS for? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1: domain.com 2: www.domain.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Select the appropriate numbers separated by commas and/or spaces, or leave input blank to select all options shown (Enter 'c' to cancel): 1,2 Requesting a certificate for domain.com and www.domain.com Successfully received certificate. Certificate is saved at: /etc/letsencrypt/live/domain.com/fullchain.pem Key is saved at: /etc/letsencrypt/live/domain.com/privkey.pem This certificate expires on 2022-12-10. These files will be updated when the certificate renews. Certbot has set up a scheduled task to automatically renew this certificate in the background. Deploying certificate Successfully deployed certificate for domain.com to /etc/apache2/sites-available/www.domain.com-le-ssl.conf Successfully deployed certificate for www.domain.com to /etc/apache2/sites-available/www.domain.com-le-ssl.conf Congratulations! You have successfully enabled HTTPS on https://domain.com and https://www.domain.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - If you like Certbot, please consider supporting our work by: * Donating to ISRG / Let's Encrypt: https://letsencrypt.org/donate * Donating to EFF: https://eff.org/donate-le - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
手順9.自動更新SSLを設定します。
Let’s Encryptの証明書の有効期間は90日です。証明書の有効期限が切れる前に、証明書を更新することを強くお勧めします。 次のコマンドを実行して、証明書の自動更新をテストできます。
sudo certbot renew --dry-run
出力:
Saving debug log to /var/log/letsencrypt/letsencrypt.log - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Processing /etc/letsencrypt/renewal/domain.com.conf - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Account registered. Simulating renewal of an existing certificate for domain.com and www.domain.com - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Congratulations, all simulated renewals succeeded: /etc/letsencrypt/live/domain.com/fullchain.pem (success) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ステップ10.ファイアウォールを構成します。
次に、Apacheを使用してUncomplicated Firewall(UFW)をセットアップし、HTTPおよびHTTPSのデフォルトのWebポートでパブリックアクセスを許可します。
sudo ufw allow OpenSSH sudo ufw allow 'Apache Full' sudo ufw enable
ステップ11.MagentoWebインターフェイスへのアクセス。
正常にインストールされたら、Webブラウザーを開き、URLを使用してMagentoWebインターフェースにアクセスします。 https://domain.com
。 次のページにリダイレクトされます。
おめでとう! Magentoが正常にインストールされました。 Ubuntu 22.04 LTSJammyJellyfishシステムにMagentowithLAMPをインストールするためにこのチュートリアルを使用していただきありがとうございます。 追加のヘルプまたは有用な情報については、チェックすることをお勧めします MagentoのWebサイト。
VPSマネージドサービスオファー
The post Ubuntu22.04LTSにMagentoをインストールする方法 appeared first on Gamingsym Japan.