Debian 8にLAMPをインストールする方法を説明します。LAMPスタックは、LAMPサーバーまたはLAMPウェブサーバーの同義語です。これは、Linux、Apache、MySQL(MariaDB)、およびPHPを含むセットアップを指します。 Debian 8へのLAMPのインストールはかなり簡単な作業であり、10分以上かかることはありません。
1。システムを更新する
以下を使用して、サーバーが完全に最新であることを確認してください:
# apt-get update && apt-get upgrade
2。 APACHEをインストールする
Debian 8サーバーにApacheをインストールするには、次のコマンドを実行する必要があります。
# apt-get install apache2
インストールが完了したら、Apacheが起動時に起動できるようにする必要があります:
# systemctl enable apache2
Webブラウザーを開き、サーバーのIPアドレス(http:// server_ip)にアクセスして、Apacheが実行されていることを確認します。以下のようなApacheウェルカムページが表示されます。
3。 MYSQLをインストールする
それでは、MySQLをインストールしましょう。次を発行します:
# apt-get install mysql-server mysql-client
インストール中に、MySQLrootユーザーのパスワードを入力するように求められます。解読しやすいパスワードは入力しないでください。大文字と小文字を組み合わせた8文字以上を含める必要があります。
MySQLがインストールされたので、次を実行してMySQLの安全なインストールを実行することをお勧めします。
# mysql_secure_installation
ルートパスワードを入力し、 ‘n’で答えます MySQLのrootパスワードを変更するように求められたとき。以下は、実行できる手順全体です。
Setting the root password ensures that nobody can log into the MySQL root user without the proper authorisation. You already have a root password set, so you can safely answer 'n'. Change the root password? [Y/n] n ... skipping. By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] y ... Success! By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] y - Dropping test database... ERROR 1008 (HY000) at line 1: Can't drop database 'test'; database doesn't exist ... Failed! Not critical, keep moving... - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] y ... Success! Cleaning up... All done! If you've completed all of the above steps, your MySQL installation should now be secure. Thanks for using MySQL!
MySQLが起動時に起動できるようにします:
# systemctl enable mysql
次のコマンドを実行して、MySQLサービスのステータスを確認できます。
# systemctl status mysql
4。 PHPをインストールする
下のコマンドを実行してPHPをインストールします:
# apt-get install php5 php5-mysql libapache2-mod-php5
それでは、簡単なPHPページテストを作成しましょう。 PHP情報ページを作成して、PHPのバージョン、アクティブ化されたモジュールなどを確認できるようにします…
ファイルを作成し、それをinfo.phpという名前で/ var / www/htmlディレクトリに入れます。
# vim /var/www/html/info.php
以下をファイルに貼り付けます:
<?php phpinfo(); ?>
変更を有効にするには、Apacheを再起動します。
# systemctl restart apache2
次に、お気に入りのWebブラウザーを開き、http://your_server_ip_address/info.phpに移動します。以下のようなWebページで歓迎されます:
5。 PHPMYADMINをインストールする
さらに、phpMyAdminをインストールして、phpMyAdminの直感的なGUIを介してデータベースを簡単に管理できるようにする必要があります。
次のコマンドを入力します:
# apt-get install phpmyadmin
インストール手順中に、phpMyAdminを構成するためのいくつかのウィンドウが表示されます。 「はい」を選択する必要があります 「「dbconfig-commonを使用してphpMyAdmin用にデータベースを構成する」に到達したら その後、データベースがインストールされ、phpMyAdmin用に構成されます。
次に、MySQLのrootパスワードを「データベースの管理ユーザーのパスワード」として入力します。 。次に、「phpmyadminのMySQLアプリケーションパスワード」に選択したパスワードを入力します 。
これが完了すると、phpMyAdminを実行するように構成するWebサーバーを選択できるウィンドウが表示されます。 apache2を選択します 次に、 okを選択します 。
インストールが完了すると、Webブラウザを次の場所に移動してphpMyAdminにアクセスできるようになります。 http:// your_server_ip_address / phpmyadmin 。下のページで歓迎されます:
rootをユーザー名として使用し、MySQLのインストール時に設定したパスワードを使用してログインできます。
それでおしまい。 LAMPが正常にインストールされました およびphpMyAdmin Debian8VPSで。
もちろん、Linux VPSホスティングサービスのいずれかを使用している場合は、Debian 8にLAMPをインストールする必要はありません。その場合は、専門のLinux管理者にDebian8fにLAMPをインストールするよう依頼するだけです。 24時間年中無休でご利用いただけます。リクエストはすぐに処理されます。
PS。この投稿が気に入った場合は、Debian 8にLAMPをインストールする方法について、左側のボタンを使用してソーシャルネットワーク上の友達と共有するか、下に返信を残してください。ありがとう。