Windows system >> Windowsの知識 >  >> Linuxシステムチュートリアル >> Linuxチュートリアル >> LNMP(linux + nginx + mysql + php)

LNMP(linux + nginx + mysql + php)

  

はLNMPのインストール設定を整理する時間がありませんでした、今日は個人的にLNMPをインストールするプロセスを整理する時間がありません。

私はyumを通してインストールしました。

1. nginxをインストールします。nginxをインストールするのはあまり役に立ちません。

2. Mysqlをインストールします。#yum install mysql-server -y

3. phpをインストールします。# yum install php -y

4. spawn-fcgiをインストールします。FastCGIモードで管理するためにspawn-fcgiを取得するためにlightwdをインストールする必要がある前に、今度はspawn-fcgiがスタンドアロンプ​​ロジェクトになりました。 spawn-fcgiをダウンロードします。#wget http://www.lighttpd.net/download/spawn-fcgi-1.6.0.tar.gzそしてコンパイルしてインストールしてspawn-fcgiを入手します。

5. nginx設定ファイルを変更します。

server {listen 80; server_name 192.168.18.142;

#charset koi8-r; #access_log logs /host.access.log main;

location /{root /usr /html; index index.php index /index.htm;} location〜。* \\。php5?$ {root /usr /html; fastcgi_pass 127.0.0.1:9000;} fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $ document_root $ fastcgi_script_name; include fastcgi_params;}

error_page 500 502 503 504 /50x /; location = /50x /{root html;}} 6. mysql:service mysqld start7 php + fastcgiを起動します。/usr /local /spawn-cgi /bin /spawn-fcgi -a 127.0.0.1 -p 9000 -C(大文字)5 -f /usr /bin /php-cgi、もちろん私たちの前にNginxが起動しました。もちろん、これはインストールと設定のプロセスの簡単で粗雑な説明です。これは最初の段階と同じです。次のプロセスは困難で長くなります。 。

Copyright © Windowsの知識 All Rights Reserved