ブロガーは今日 CentOS バージョン 7.0 をインストールしました。当然、セットアップ プロセスをみんなと共有しましょう。
入力: yum install httpd httpd-devel
プロセス中に確認するには y を入力するだけです
systemctl start httpd.service #Start apache
systemctl stop httpd.service #Stop Apache
systemctl restart httpd.service #apache を再起動します
systemctl enable httpd.service #起動時に apache が開始するように設定します
クライアントのブラウザでサーバーの IP アドレスを開くと、次のインターフェイスが表示され、Apache が正常にインストールされたことが示されます
CentOS 7.0 では、MySQL データベースの置き換えに MariaDB が使用されています
1. MariaDB をインストールします
yum install mariadb mariadb-server #インストールする場合は、Y を入力して、インストールが完了しました
systemctl start mariadb.service #Start MariaDB
systemctl stop mariadb.service #Stop MariaDB
systemctl restart mariadb.service #Restart MariaDB
systemctlenable mariadb.service #Setstartup
2. のパスワードを設定します。 root アカウント
mysql_secure_installation
プロンプトに従って Enter を押して Y を入力します
パスワードを 2 回入力して Enter を押します
プロンプトに従って Y を最後まで入力します
最後に表示されます: MySQL をご利用いただきありがとうございます!
MySql パスワード設定が完了したら、MySQL を再起動します:
systemctl restart mariadb.service #Restart MariaDB
1. PHP をインストールします
yum install php php-devel #インストールが完了するまで、プロンプトに従って Y を入力します
2. PHP が MariaDB をサポートするように PHP コンポーネントをインストールします
yum install php-mysql php-gd libjpeg* php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-bcmath php-mhash
#インストールする上記のインストール パッケージを選択し、プロンプトに従って Y を入力して Enter を押します
systemctl restart mariadb.service #Restart MariaDB
systemctl restart httpd.service #Restart apache
cd /var/www/ html
viindex.php #次の内容を入力してください
phpinfo();
?>
:wq! #保存して終了
クライアントブラウザにサーバーのIPアドレスを入力してください以下に示すように、関連する構成情報を確認できます。