LAMP (Linux、Apache、MariaDB、および PHP) を Fedora 24 サーバーにインストールするには、次の手順に従ってください。まず、Fedora 24 の最小限のインストールを実行します。システムを更新した後、PHP、MariaDB、Apache などの必要なコンポーネントをインストールします。 Apache サーバーの自動起動を有効にし、ファイアウォールを越える受信 HTTP トラフィックを許可します。強力な root パスワードを設定し、MariaDB サービスをアクティブにして、インストールを保護します。ニーズに合わせて PHP 設定を適切に設定します。単純な PHP ファイルを作成し、Web ブラウザを使用してそれを表示することで、LAMP アーキテクチャをテストできます。これらの手順を完了すると、Fedora 24 サーバーは完全に動作する LAMP スタックを備え、動的な Web サイトやアプリケーションをホストする準備が整います。
LAMP スタック
コントロールパネル
LAMP スタックは、オペレーティング システムとして Linux、Web サーバーとして Apache、データベース サーバーとして MariaDB (または MySQL)、およびセットアップのコンテキストでプログラミング言語として PHP で構成される、事前にパッケージ化されたソフトウェア パッケージです。 Fedora 24 サーバー上の LAMP (Linux、Apache、MariaDB、および PHP) スタック。このスタックは特に相互に調和して機能するように作られており、動的な Web サイトやアプリケーションをホストするための信頼できる設定を提供します。 LAMP スタックを使用すると、インストールと構成の手順が簡素化され、互換性が確保され、問題が発生する可能性が低くなります。サーバーサイドのスクリプティングと動的コンテンツ制作には PHP、データベース管理には MariaDB、HTTP リクエストの処理には Apache、安定性とセキュリティには Linux を使用します。結論として、Fedora 24 サーバーは、LAMP スタックを使用して Web アプリケーションを効率的にホストおよび操作できます。
サーバーに Fedora 24 を導入します。
システムを更新して最新のパッケージをインストールします。
Fedora 24 で、「sudo dnf install httpd」と入力して、Apache とパッケージ ディール マネージャーをセットアップします。
Apache 特典を開始するには、「sudo systemctl begin httpd」と入力し、正しい操作を確認するには、「sudo systemctl have interaction httpd」と入力します。
MariaDB (または MySQL) データベース サーバーのセットアップ プロセスを開始するには、DNF などの Fedora バンドル エグゼクティブを利用します。 「sudo dnf present mariadb-server」コマンドを実行するだけで準備完了です!
「sudo systemctl start mariadb」と「sudo systemctl enable mariadb」とそれぞれ入力して、MariaDB サービスを開始し、有効にします。
確立された基本パスワードを設定し、MariaDB インストールを維持するセキュリティ スクリプトを実行します (sudo mysql_secure_installation)。
パッケージ マネージャーを使用して、PHP と適切なモジュールをインストールします (例: sudo dnf install php php-mysqlnd)。
コマンド「sudo vi」を使用して、PHP 構成情報を含む /etc/php.ini ファイルに必要な変更を加えます。
以下に示すコマンドは「sudo systemctl restart httpd」です。このコマンドはコマンド ターミナルで実行する必要があります。
文字列を付加したサンプル PHP 構成ファイルを作成します。参考までに、以下の例に従うことができます。
レコードを保存し、その後、拍のところでアドレスバーに「http://server_ip/info.php」と書き込んで、Google Chrome や Edge などの Web ブラウザで開きます。
PHP 情報ページが意図したとおりに表示されれば、LAMP スタックの構成は完了です。
コントロール パネルは、Fedora 24 サーバー上で LAMP スタックを構成する際に、スタックのコンポーネントを管理および変更するためのグラフィカル ユーザー インターフェイス (GUI) を提供する Web ベースのインターフェイスです。 cPanel や Webmin などのコントロール パネルを使用すると、特に Linux に慣れていない人にとって、管理手順が簡単になります。これらは、PHP 構成設定、MariaDB データベース サーバー、Apache Web サーバーなどのサービスを制御するためのユーザー フレンドリーなインターフェイスを提供します。ユーザーは、コントロール パネルを使用して、仮想ホストの構築、データベースの管理、セキュリティ対策のセットアップ、PHP モジュールの構成、その他の管理操作を迅速に実行できます。これらのパネルは、Fedora 24 サーバー上で LAMP スタックをセットアップおよび管理するための効果的かつユーザーフレンドリーな方法を提供することで、熟練した管理者と Linux 初心者の両方の手順を簡素化します。
Begin the LAMP setup procedure.
Setup Fedora 24 with the basic installation option on the server.
Install the most recent packages by updating the system.
sudo dnf update
The article talks about Apache, linux etc so it is important for you to install them at priority.
sudo dnf install httpd mariadb mariadb-server php php-mysqlnd
Set up Apache as the web server:
Follow the command and run in the terminal so that it will boost automatically.
sudo systemctl enable httpd
Let the firewall pass through incoming HTTP traffic.
sudo firewall-cmd --add-service=http --permanent sudo firewall-cmd --reload
Start the MariaDB service and make it active.
sudo systemctl start mariadb sudo systemctl enable mariadb
Make sure that the root password for MariaDB is secure.
sudo mysql_secure_installation
Modify PHP to your specifications.
Create a straightforward PHP file and use a web browser to view it to test the LAMP setup.
<?php phpinfo(); ?>
The LAMP stack is configured properly if the test is successful.
You have the option to add extra safeguards, such as HTTPS, performance optimisation, and security best practises, to better secure and optimise the stack.
In conclusion, setting up a LAMP stack on a Fedora 24 server entails installing and configuring the necessary components to build a reliable environment for hosting dynamic websites and applications. LAMP stands for Linux, Apache, MariaDB, and PHP. You can successfully set up the LAMP stack by following the specified instructions, which also include carrying out a minimum installation of Fedora 24, installing Apache, MariaDB, and PHP, and configuring them suitably. Making a straightforward PHP file and viewing it via a web browser to test the stack makes sure the installation is working properly.
Additionally, management and configuration tasks can be made simpler by using control panels like cPanel or Webmin, especially for people with little experience with Linux. You can further improve the performance and security of the stack by putting extra security safeguards into place and by using optimisation methods. Overall, a Fedora 24 server running a well configured LAMP stack offers a solid environment for hosting dynamic web applications.
以上がFedora 24 サーバーでの LAMP (Linux、Apache、MariaDB、および PHP) のセットアップの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。