もっと詳しく

このチュートリアルでは、Ubuntu22.04LTSにDokuWikiをインストールする方法を紹介します。 知らなかった人のために、DokuWikiはPHPで書かれた無料のオープンソースのウィキソフトウェアです。 シンプルなファイル形式を使用してデータを保存するシンプルで軽量なため、データベースは必要ありません。

この記事は、少なくともLinuxの基本的な知識があり、シェルの使用方法を知っていること、そして最も重要なこととして、自分のVPSでサイトをホストしていることを前提としています。 インストールは非常に簡単で、rootアカウントで実行していることを前提としています。そうでない場合は、’を追加する必要があります。sudo‘root権限を取得するコマンドに。 Ubuntu 22.04(Jammy Jellyfish)にDokuWikiを段階的にインストールする方法を紹介します。 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ジャミークラゲにDokuWikiをインストールします

手順1.まず、次のコマンドを実行して、すべてのシステムパッケージが最新であることを確認します。 apt ターミナルのコマンド。

sudo apt update
sudo apt upgrade

ステップ2.Ubuntu22.04にLAMPスタックをインストールします。

このチュートリアルを開始する前に、LAMPサーバーをサーバーにインストールする必要があります。 LAMPスタックがインストールされていない場合は、こちらのガイドに従ってください。

ステップ3.Ubuntu22.04にDokuWikiをインストールします。

デフォルトでは、DokuWikiはUbuntu22.04ベースリポジトリでは利用できません。 次に、以下のコマンドを実行して、最新の安定バージョンのDokuWikiをUbuntuシステムにダウンロードします。

wget https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz

ダウンロードが完了した後。 これを抽出する必要があります /var/www/html/ ディレクトリ:

mkdir /var/www/html/dokuwiki
tar xzf dokuwiki-stable.tgz -C /var/www/html/dokuwiki/ --strip-components=1

いくつかのフォルダのアクセス許可を変更する必要があります。

chown -R www-data:www-data /var/www/html/dokuwiki

ステップ4.DokuWiki用にApacheWebサーバーを構成します。

次に、DokuWiki用のApache仮想ホストを作成します。

nano /etc/apache2/sites-available/dokuwiki.conf

次のファイルを追加します。

<VirtualHost *:80>
 ServerAdmin admin@your-domain.com
 DocumentRoot /var/www/html/dokuwiki/
 ServerName your-domain.com
 ServerAlias www.your-domain.com

 ErrorLog ${APACHE_LOG_DIR}/error.log
 CustomLog ${APACHE_LOG_DIR}/access.log combined

 <Directory /var/www/html/dokuwiki/(bin/|conf/|data/|inc/)/>
        Options FollowSymlinks
        AllowOverride All
        Require all granted
 </Directory>
</VirtualHost>

ファイルを保存して閉じてから、Apache Webサーバーを再起動して、変更を加えます。

sudo a2ensite dokuwiki.conf
sudo a2enmod rewrite
sudo a2enmod ssl rewrite
sudo systemctl restart apache2

ステップ5.Let’sEncryptでJoomlaを保護します。

まず、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@your-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: your-domain.com
2: www.your-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 your-domain.com and www.your-domain.com
Successfully received certificate.
Certificate is saved at: /etc/letsencrypt/live/your-domain.com/fullchain.pem
Key is saved at:         /etc/letsencrypt/live/your-domain.com/privkey.pem
This certificate expires on 2022-09-16.
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.your-domain.com-le-ssl.conf
Successfully deployed certificate for www.domain.com to /etc/apache2/sites-available/www.your-domain.com-le-ssl.conf
Congratulations! You have successfully enabled HTTPS on https://domain.com and https://www.your-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
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

手順6.自動更新SSLを設定します。

Let’s Encryptの証明書の有効期間は90日です。証明書の有効期限が切れる前に、証明書を更新することを強くお勧めします。 次のコマンドを実行して、証明書の自動更新をテストできます。

sudo certbot renew --dry-run

手順7.ファイアウォールを構成します。

次に、Apacheを使用してUncomplicated Firewall(UFW)を設定し、HTTPおよびHTTPSのデフォルトのWebポートでパブリックアクセスを許可します。

sudo ufw allow OpenSSH
sudo ufw allow 'Apache Full'
sudo ufw enable

ステップ9.DokuWikiWebインターフェイスへのアクセス。

正常にインストールされたら、Webブラウザーを開き、URLを使用してDokuWikiインストールウィザードにアクセスします。 https://your-domain.com。 次のページにリダイレクトされます。

Ubuntu22.04LTSジャミークラゲにDokuWikiをインストールします

おめでとう! これでDokuWikiが正常にインストールされました。 Ubuntu 22.04 LTSJammyJellyfishシステムにLAMPを使用してDokuWikiをインストールするためにこのチュートリアルを使用していただきありがとうございます。 追加のヘルプまたは有用な情報については、チェックすることをお勧めします DokuWikiのWebサイトe。

VPSマネージドサービスオファー

これらすべてを行う時間がない場合、またはこれが専門分野でない場合は、10ドル(ペイパル支払い)から「VPSマネージドサービスオファー」を行うサービスを提供します。 最良の取引を得るために私達に連絡してください!
タグ:Dokuwiki

The post Ubuntu22.04LTSにDokuWikiをインストールする方法 appeared first on Gamingsym Japan.