lnmp搭建
【MySQL安裝】
1. 下載mysql到/usr/local/src/
cd /usr/local/src/
wget
[@more@]2. 解壓
tar zxvf /usr/local/src/ mysql-5.0.86-linux-i686-icc-glibc23.tar.gz
3. 把解壓完的資料移動到/usr/local/mysql
mv mysql-5.0.86-linux-i686-ii-glibc23 /usr/local/mysql
4. 建立mysql使用者
useradd mysql
5. 初始化資料庫
cd /usr/local/mysql
mkdir /data/mysql ; chown -R mysql:mysql /data/mysql
./scripts/mysql_install_db --user=mysql --datadir=/data/mysql
--user定義資料庫的所屬主,--datadir定義資料庫安裝到哪裡,建議放到大空間的分割槽上,這個目錄需要自行建立。
6. 複製配置檔案
cp support-files/my-large.cnf /etc/my.cnf
7. 複製啟動指令碼檔案並修改其屬性
cp support-files/mysql.server /etc/init.d/mysqld
chmod 755 /etc/init.d/mysqld
8. 修改啟動指令碼
vim /etc/init.d/mysqld
需要修改的地方有datadir=/data/mysql(前面初始化資料庫時定義的目錄)
9. 把啟動指令碼加入系統服務項,並設定開機啟動,啟動mysql
chkconfig --add mysqld
chkconfig mysqld on
service mysqld start
如果啟動不了,請到/data/mysql/ 下檢視錯誤日誌,該日誌格式為主機名.err。
【php的安裝】
這裡要先宣告一下,針對Nginx的php安裝和針對apache的php安裝是有區別的,因為Nginx中的php是以fastcgi的方式結合nginx的,可以理解為nginx代理了php的fastcgi,而apache是把php作為自己的模組來呼叫的。
useradd www
cd /usr/local/src/
wget
wget
下載的第二個包php-5.2.10-fpm-0.5.13.diff.gz是用來給php打補丁的,預設情況下,php是無法編譯出fastcgi的。
tar zxvf php-5.2.10.tar.gz
gzip -cd php-5.2.10-fpm-0.5.13.diff.gz | patch -d php-5.2.10 -p1
cd php-5.2.10
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-mysql-sock=/tmp --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --enable-zend-multibyte --disable-ipv6 --enable-fastcgi --enable-fpm
make && make install
mkdir /usr/local/php/etc
cp php.ini-dist /usr/local/php/etc/php.ini
vim /usr/local/php/etc/php-fpm.conf
/tmp/php-fcgi.sock 這一行要改成這樣,這裡這樣修改了以後,在配置nginx的時候就需要注意這個路徑了。
修改使用者和組的名稱為”www”
去掉註釋,改成這樣:
Unix user of processes
www
Unix group of processes
www
/usr/local/php/sbin/php-fpm start
其他關於php的擴充套件模組安裝請參考:
Eaccelerator 安裝及配置
memcache和memcached在php中的應用
php 中ming的編譯
關於php的配置檔案php.ini 以及 php-frpm.conf的相關資料:
php.ini 中禁止一些函式,增加安全性
php-fpm.conf引數說明
php-fpm.conf兩個至關重要的引數
另外如果你在編譯php時出現了某些錯誤,請參考:
編譯php時可能出現的錯誤以及解決辦法
【nginx 安裝以及配置】
1. nginx原始碼安裝
cd /usr/local/src/
wget
tar zxvf nginx-0.9.6.tar.gz
cd nginx-0.9.6
./configure --user=nginx --group=nginx --prefix=/usr/local/nginx/ --with-http_stub_status_module --with-http_ssl_moduleke && make install
有的nginx版本編譯時會因為pcre編譯不過去,需要編譯pcre
2. 編寫nginx的啟動指令碼,並加入系統服務
vi /etc/init.d/nginx 寫入以下內容:
#!/bin/bash
# chkconfig: - 30 21
# description: http service.
# Source Function Library
. /etc/init.d/functions
# Nginx Settings
NGINX_SBIN="/usr/local/nginx/sbin/nginx"
NGINX_CONF="/usr/local/nginx/conf/nginx.conf"
NGINX_PID="/usr/local/nginx/var/nginx.pid"
RETVAL=0
prog="Nginx"
start() {
echo -n $"Starting $prog: "
daemon $NGINX_SBIN -c $NGINX_CONF
RETVAL=$?
echo
return $RETVAL
}
stop() {
echo -n $"Stopping $prog: "
killproc -p $NGINX_PID $NGINX_SBIN -TERM
RETVAL=$?
echo
return $RETVAL
}
reload(){
echo -n $"Reloading $prog: "
killproc -p $NGINX_PID $NGINX_SBIN -HUP
RETVAL=$?
echo
return $RETVAL
}
restart(){
stop
start
}
configtest(){
$NGINX_SBIN -c $NGINX_CONF -t
return 0
}
case "$1" in
start)
start
;;
stop)
stop
;;
reload)
reload
;;
restart)
restart
;;
configtest)
configtest
;;
*)
echo $"Usage: $0 {start|stop|reload|restart|configtest}"
RETVAL=1
esac
exit $RETVAL
儲存後,更改/etc/init.d/nginx的許可權
chmod 755 /etc/init.d/nginx
chkconfig --add nginx
chkconfig nginx on
3. nginx的配置
vim /usr/local/nginx/conf/nginx.conf
把原來的檔案清空,然後貼上如下內容:
user www www;
worker_processes 2;
error_log /usr/local/nginx/logs/nginx_error.log crit;
pid /usr/local/nginx/var/nginx.pid;
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;
events
{
use epoll;
worker_connections 6000;
}
http
{
include mime.types;
default_type application/octet-stream;
server_names_hash_bucket_size 2048;
server_names_hash_max_size 4096;
log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local] '
'$host "$request_uri" $status '
'"$http_referer" "$http_user_agent"';
sendfile on;
tcp_nopush on;
keepalive_timeout 30;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
connection_pool_size 256;
client_header_buffer_size 1k;
large_client_header_buffers 8 4k;
request_pool_size 4k;
output_buffers 4 32k;
postpone_output 1460;
client_max_body_size 10m;
client_body_buffer_size 256k;
client_body_temp_path /usr/local/nginx/client_body_temp;
proxy_temp_path /usr/local/nginx/proxy_temp;
fastcgi_temp_path /usr/local/nginx/fastcgi_temp;
fastcgi_intercept_errors on;
tcp_nodelay on;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 8k;
gzip_comp_level 5;
gzip_http_version 1.1;
gzip_types text/plain application/x-javascript text/css text/htm application/xml;
server
{
listen 80;
server_name
index index.html index.htm index.php;
root /data/www;
location ~ .php$ {
include fastcgi_params;
fastcgi_pass unix:/ php-fcgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /data/www$fastcgi_script_name;
}
}
儲存後就可以啟動nginx了,在重啟之前最好先檢查一下是否有問題
/usr/local/nginx/sbin/nginx -t 如果顯示 "syntax is ok 和 nginx.conf was tested successfully"這樣的資訊,就說明配置沒有問題了,否則就需要根據提示修改了。
service nginx start
如果啟動不了,請到/usr/local/nginx/logs/目錄下檢視nginx_error.log這個日誌檔案。若是沒有這個日誌檔案,很有可能是那個目錄沒有寫許可權,請執行
chmod +w /usr/local/nginx/logs/
service nginx restart
關於nginx配置檔案的詳細配置請參考以下帖子:
Nginx的主配置檔案
Nginx的虛擬主機配置檔案
更多Nginx的相關配置
【測試是否解析php檔案】
vim /data/www/1.php
寫入如下內容:
phpinfo();
?>
然後設定hosts檔案,訪問 看是否能解析出這個頁面。
1. 下載mysql到/usr/local/src/
cd /usr/local/src/
wget
[@more@]2. 解壓
tar zxvf /usr/local/src/ mysql-5.0.86-linux-i686-icc-glibc23.tar.gz
3. 把解壓完的資料移動到/usr/local/mysql
mv mysql-5.0.86-linux-i686-ii-glibc23 /usr/local/mysql
4. 建立mysql使用者
useradd mysql
5. 初始化資料庫
cd /usr/local/mysql
mkdir /data/mysql ; chown -R mysql:mysql /data/mysql
./scripts/mysql_install_db --user=mysql --datadir=/data/mysql
--user定義資料庫的所屬主,--datadir定義資料庫安裝到哪裡,建議放到大空間的分割槽上,這個目錄需要自行建立。
6. 複製配置檔案
cp support-files/my-large.cnf /etc/my.cnf
7. 複製啟動指令碼檔案並修改其屬性
cp support-files/mysql.server /etc/init.d/mysqld
chmod 755 /etc/init.d/mysqld
8. 修改啟動指令碼
vim /etc/init.d/mysqld
需要修改的地方有datadir=/data/mysql(前面初始化資料庫時定義的目錄)
9. 把啟動指令碼加入系統服務項,並設定開機啟動,啟動mysql
chkconfig --add mysqld
chkconfig mysqld on
service mysqld start
如果啟動不了,請到/data/mysql/ 下檢視錯誤日誌,該日誌格式為主機名.err。
【php的安裝】
這裡要先宣告一下,針對Nginx的php安裝和針對apache的php安裝是有區別的,因為Nginx中的php是以fastcgi的方式結合nginx的,可以理解為nginx代理了php的fastcgi,而apache是把php作為自己的模組來呼叫的。
useradd www
cd /usr/local/src/
wget
wget
下載的第二個包php-5.2.10-fpm-0.5.13.diff.gz是用來給php打補丁的,預設情況下,php是無法編譯出fastcgi的。
tar zxvf php-5.2.10.tar.gz
gzip -cd php-5.2.10-fpm-0.5.13.diff.gz | patch -d php-5.2.10 -p1
cd php-5.2.10
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-mysql-sock=/tmp --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-ftp --enable-mbstring --enable-exif --enable-zend-multibyte --disable-ipv6 --enable-fastcgi --enable-fpm
make && make install
mkdir /usr/local/php/etc
cp php.ini-dist /usr/local/php/etc/php.ini
vim /usr/local/php/etc/php-fpm.conf
修改使用者和組的名稱為”www”
去掉註釋,改成這樣:
Unix user of processes
Unix group of processes
/usr/local/php/sbin/php-fpm start
其他關於php的擴充套件模組安裝請參考:
Eaccelerator 安裝及配置
memcache和memcached在php中的應用
php 中ming的編譯
關於php的配置檔案php.ini 以及 php-frpm.conf的相關資料:
php.ini 中禁止一些函式,增加安全性
php-fpm.conf引數說明
php-fpm.conf兩個至關重要的引數
另外如果你在編譯php時出現了某些錯誤,請參考:
編譯php時可能出現的錯誤以及解決辦法
【nginx 安裝以及配置】
1. nginx原始碼安裝
cd /usr/local/src/
wget
tar zxvf nginx-0.9.6.tar.gz
cd nginx-0.9.6
./configure --user=nginx --group=nginx --prefix=/usr/local/nginx/ --with-http_stub_status_module --with-http_ssl_moduleke && make install
有的nginx版本編譯時會因為pcre編譯不過去,需要編譯pcre
2. 編寫nginx的啟動指令碼,並加入系統服務
vi /etc/init.d/nginx 寫入以下內容:
#!/bin/bash
# chkconfig: - 30 21
# description: http service.
# Source Function Library
. /etc/init.d/functions
# Nginx Settings
NGINX_SBIN="/usr/local/nginx/sbin/nginx"
NGINX_CONF="/usr/local/nginx/conf/nginx.conf"
NGINX_PID="/usr/local/nginx/var/nginx.pid"
RETVAL=0
prog="Nginx"
start() {
echo -n $"Starting $prog: "
daemon $NGINX_SBIN -c $NGINX_CONF
RETVAL=$?
echo
return $RETVAL
}
stop() {
echo -n $"Stopping $prog: "
killproc -p $NGINX_PID $NGINX_SBIN -TERM
RETVAL=$?
echo
return $RETVAL
}
reload(){
echo -n $"Reloading $prog: "
killproc -p $NGINX_PID $NGINX_SBIN -HUP
RETVAL=$?
echo
return $RETVAL
}
restart(){
stop
start
}
configtest(){
$NGINX_SBIN -c $NGINX_CONF -t
return 0
}
case "$1" in
start)
start
;;
stop)
stop
;;
reload)
reload
;;
restart)
restart
;;
configtest)
configtest
;;
*)
echo $"Usage: $0 {start|stop|reload|restart|configtest}"
RETVAL=1
esac
exit $RETVAL
儲存後,更改/etc/init.d/nginx的許可權
chmod 755 /etc/init.d/nginx
chkconfig --add nginx
chkconfig nginx on
3. nginx的配置
vim /usr/local/nginx/conf/nginx.conf
把原來的檔案清空,然後貼上如下內容:
user www www;
worker_processes 2;
error_log /usr/local/nginx/logs/nginx_error.log crit;
pid /usr/local/nginx/var/nginx.pid;
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;
events
{
use epoll;
worker_connections 6000;
}
http
{
include mime.types;
default_type application/octet-stream;
server_names_hash_bucket_size 2048;
server_names_hash_max_size 4096;
log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local] '
'$host "$request_uri" $status '
'"$http_referer" "$http_user_agent"';
sendfile on;
tcp_nopush on;
keepalive_timeout 30;
client_header_timeout 3m;
client_body_timeout 3m;
send_timeout 3m;
connection_pool_size 256;
client_header_buffer_size 1k;
large_client_header_buffers 8 4k;
request_pool_size 4k;
output_buffers 4 32k;
postpone_output 1460;
client_max_body_size 10m;
client_body_buffer_size 256k;
client_body_temp_path /usr/local/nginx/client_body_temp;
proxy_temp_path /usr/local/nginx/proxy_temp;
fastcgi_temp_path /usr/local/nginx/fastcgi_temp;
fastcgi_intercept_errors on;
tcp_nodelay on;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 8k;
gzip_comp_level 5;
gzip_http_version 1.1;
gzip_types text/plain application/x-javascript text/css text/htm application/xml;
server
{
listen 80;
server_name
index index.html index.htm index.php;
root /data/www;
location ~ .php$ {
include fastcgi_params;
fastcgi_pass unix:/ php-fcgi.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /data/www$fastcgi_script_name;
}
}
儲存後就可以啟動nginx了,在重啟之前最好先檢查一下是否有問題
/usr/local/nginx/sbin/nginx -t 如果顯示 "syntax is ok 和 nginx.conf was tested successfully"這樣的資訊,就說明配置沒有問題了,否則就需要根據提示修改了。
service nginx start
如果啟動不了,請到/usr/local/nginx/logs/目錄下檢視nginx_error.log這個日誌檔案。若是沒有這個日誌檔案,很有可能是那個目錄沒有寫許可權,請執行
chmod +w /usr/local/nginx/logs/
service nginx restart
關於nginx配置檔案的詳細配置請參考以下帖子:
Nginx的主配置檔案
Nginx的虛擬主機配置檔案
更多Nginx的相關配置
【測試是否解析php檔案】
vim /data/www/1.php
寫入如下內容:
phpinfo();
?>
然後設定hosts檔案,訪問 看是否能解析出這個頁面。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23168012/viewspace-1052663/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- LNMP搭建HDwikiLNMP
- LNMP 環境搭建LNMP
- 搭建lnmp環境LNMP
- lnmp環境搭建LNMP
- 搭建LNMP架構LNMP架構
- docker搭建lnmp環境DockerLNMP
- docker 搭建 lnmp 環境DockerLNMP
- 如何搭建LNMP環境LNMP
- ubuntu lnmp環境搭建UbuntuLNMP
- PHP-lnmp 環境搭建PHPLNMP
- Docker LNMP Redis 環境搭建DockerLNMPRedis
- Windows 下搭建 lnmp 環境WindowsLNMP
- LNMP環境搭建(二):NginxLNMPNginx
- Ubuntu16.04搭建LNMPUbuntuLNMP
- Ubuntu14.04搭建LNMPUbuntuLNMP
- LNMP環境搭建——Nginx篇LNMPNginx
- docker下LNMP環境搭建DockerLNMP
- 搭建 lnmp 環境之 nginx 篇LNMPNginx
- Deepin 15 搭建 LNMP 環境 + swooleLNMP
- Dockfile搭建極簡LNMP環境LNMP
- 阿里雲centOS下LNMP搭建阿里CentOSLNMP
- 基於Docker搭建LNMP環境DockerLNMP
- LNMP 原始碼安裝搭建薦LNMP原始碼
- docker 學習筆記之實戰 lnmp 環境搭建系列 (2) ------ 手動搭建 lnmp 環境Docker筆記LNMP
- 利用 Docker 一鍵搭建 LNMP 環境DockerLNMP
- 雲伺服器怎麼搭建lnmp伺服器LNMP
- docker搭建laravel開發環境lnmpDockerLaravel開發環境LNMP
- RedHat/CentOs系統搭建lnmp環境RedhatCentOSLNMP
- LNMP+FastCGI平臺搭建指令碼LNMPAST指令碼
- Nginx網站服務LNMP搭建論壇Nginx網站LNMP
- LNMP網站框架搭建(編譯安裝)LNMP網站框架編譯
- linuxshell指令碼之lnmp的搭建Linux指令碼LNMP
- 搭建 LNMP + CodeIgniter 開發環境LNMP開發環境
- 學習centos之快速搭建LNMP環境CentOSLNMP
- CentOS 7 使用 docker 搭建基本的 lnmp 環境CentOSDockerLNMP
- 【Linux】LNMP 環境搭建(上):安裝篇LinuxLNMP
- [Linux] LNMP 環境搭建(上):安裝篇LinuxLNMP
- 畫江湖之 docker 篇 【lnmp 環境基礎搭建】DockerLNMP