このチュートリアルでは、Ubuntu22.04LTSにLAMPスタックをインストールする方法を示します。 ご存じない方のために説明すると、LAMPはLinux、Apache、MariaDB、およびPHPの頭字語です。 これはオープンソースプラットフォームであり、Linuxオペレーティングシステムで動作します。 LAMPスタックは、Apache Webサーバー、MariaDBリレーショナルデータベース管理システム、およびPHPオブジェクト指向のスクリプト言語を使用します。
この記事は、少なくともLinuxの基本的な知識があり、シェルの使用方法を知っていること、そして最も重要なこととして、自分のVPSでサイトをホストしていることを前提としています。 インストールは非常に簡単で、rootアカウントで実行していることを前提としています。そうでない場合は、’を追加する必要があります。sudo
‘root権限を取得するコマンドに。 Ubuntu 22.04(Jammy Jellyfish)にLEMPスタックを段階的にインストールする方法を紹介します。 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
ただし、ルートとして機能するときに注意しないと、システムに害を及ぼす可能性があるためです。
Ubuntu22.04LTSジャミークラゲにLAMPスタックをインストールする
ステップ1.まず、以下を実行して、すべてのシステムパッケージが最新であることを確認します。 apt
ターミナルのコマンド。
sudo apt update sudo apt upgrade sudo apt install lsb-release ca-certificates apt-transport-https software-properties-common
ステップ2.Ubuntu22.04にApacheHTTPサーバーをインストールします。
デフォルトでは、ApacheはUbuntu22.04ベースリポジトリで利用できます。 次に、以下のコマンドを実行して、最新バージョンのApacheをUbuntuシステムにインストールします。
sudo apt install apache2 apache2-utils
インストールが正常に完了したら、Apacheを有効にして(システムの起動時に自動的に起動します)、起動して、以下のコマンドを使用してステータスを確認します。
sudo systemctl enable apache2 sudo systemctl start apache2 sudo systemctl status apache2
以下のコマンドでApache2のバージョンを確認できます。
apache2 -v
手順3.ファイアウォールを構成します。
次に、Apacheを使用してUncomplicated Firewall(UFW)をセットアップし、HTTPおよびHTTPSのデフォルトのWebポートでパブリックアクセスを許可します。
sudo ufw allow OpenSSH sudo ufw allow 'Apache Full' sudo ufw enable
ステップ4.ApacheWebサーバーにアクセスします。
正常にインストールされたら、システムでWebブラウザーを開き、アドレスバーにサーバーのIPを入力します。 デフォルトのApacheサーバーページが表示されます。
ステップ5.Ubuntu22.04にMariaDBをインストールします。
デフォルトでは、MariaDBはUbuntu22.04ベースリポジトリで利用できます。 次に、以下のコマンドを実行して、最新バージョンのMariaDBをUbuntuシステムにインストールします。
sudo apt install mariadb-server
インストールが正常に完了したら、MariaDBを有効にして(システムの起動時に自動的に起動します)、起動して、以下のコマンドを使用してステータスを確認します。
sudo systemctl enable mariadb sudo systemctl start mariadb sudo systemctl status mariadb
インストールを確認し、MariaDBのインストール済みビルドバージョンを確認します。
mariadb --version
ステップ6.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サーバーに接続できます。
mysql -u root -p
出力:
Enter password: Welcome to the MariaDB monitor. Commands end with ; or g. Your MariaDB connection id is 46 Server version: 10.6.7-MariaDB-2ubuntu1 Ubuntu 22.04 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or 'h' for help. Type 'c' to clear the current input statement. MariaDB [(none)]>
ステップ7.Ubuntu22.04にPHPをインストールします。
デフォルトでは、PHPはUbuntu22.04ベースリポジトリでは使用できません。 次に、以下のコマンドを実行して、OndrejPPAをシステムに追加します。
sudo add-apt-repository ppa:ondrej/php
リポジトリが追加されたら、APTインデックスを更新し、以下のコマンドを使用してPHP8.1をインストールします。
sudo apt update sudo apt install php8.1 php8.1-common libapache2-mod-php8.1 php8.1-cli php8.1-fpm php8.1-xml
PHPのバージョン情報を確認してください。
php --version
出力:
PHP 8.1.5 (cli) (built: May 20 2022 17:46:36) (NTS) Copyright (c) The PHP Group Zend Engine v4.1.5, Copyright (c) Zend Technologies with Zend OPcache v8.1.5, Copyright (c), by Zend Technologies
手順8.Apache仮想ホストを作成します。
まず、Webサイトのファイルを保持するルートディレクトリを作成します。
sudo mkdir -p /var/www/html/domain.com/
次に、ディレクトリの所有権とグループを変更します。
sudo chown -R www-data:www-data /var/www/html/domain.com/
その後、HTTPバージョンのWebサイトを提供するApache仮想ホストを作成します。
sudo nano /etc/apache2/sites-available/www.domain.com.conf
次のファイルを追加します。
<VirtualHost *:80> ServerName domain.com ServerAlias www.domain.com ServerAdmin admin@domain.com DocumentRoot /var/www/html/www.domain.com ErrorLog ${APACHE_LOG_DIR}/www.domain.com_error.log CustomLog ${APACHE_LOG_DIR}/www.domain.com_access.log combined <Directory /var/www/html/www.domain.com> Options FollowSymlinks AllowOverride All Require all granted </Directory> </VirtualHost>
ファイルを保存して閉じてから、Apache Webサーバーを再起動して、変更を加えます。
sudo a2ensite www.domain.com.conf sudo a2enmod ssl rewrite sudo systemctl restart apache2
ステップ9.Ubuntu22.04でLet’sEncryptを使用してApacheを保護します。
まず、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 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ステップ10.自動更新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) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ステップ11.PHPをテストします。
PHPスクリプトをテストするには、 info.php
ドキュメント内のファイル:
nano /var/www/html/www.domain.com/info.php
ファイルに以下を追加します。
<?php phpinfo(); ?>
ブラウザで次のページを開いて、サーバーがPHPスクリプトによって生成されたコンテンツを正しく表示することを確認しましょう。 https://www.domain.com/info.php
おめでとう! LAMPが正常にインストールされました。 LEMPスタックをにインストールするためにこのチュートリアルを使用していただきありがとうございます Ubuntu 22.04 LTS ジャミークラゲシステム。 追加のヘルプまたは有用な情報については、LAMPの公式Webサイトを確認することをお勧めします。
VPSマネージドサービスオファー
The post Ubuntu22.04LTSにLAMPスタックをインストールする方法 appeared first on Gamingsym Japan.