nginxphp安装
1. nginx php安装扩展模块之后要重启吗
需要的。更改了配置都需要重启才生效
2. linux系统nginx怎么安装php环境
http://jingyan..com/article/d3b74d64aa4a6a1f77e60932.html
3. linux7 nginx 环境怎么安装php
PHP用编译安装很容易出错,一般都是依赖关系要解决好
方法都是一样的,先解决好依赖关系,然后下载PHP源码,tar解压后,cd进入解压后php目录,然后./configure --prefix=... --with ...把PHP要带的参数写好,接着make&make install
4. php和nginx安装后怎么配置
先安装编译依赖的一些组件
复制代码 代码如下:
yum install pcre pcre-devel openssl openssl-devel -y
1、解压程序包
复制代码 代码如下:
tar xf nginx-1.10.0.tar.gz
cd nginx-1.10.0
2、预编译配置参数
复制代码 代码如下:
./configure --user=www \
--group=www \
--prefix=/data/server/nginx \
--with-http_stub_status_mole \
--without-http-cache \
--with-http_ssl_mole \
--with-http_gzip_static_mole
3、执行编译
复制代码 代码如下:
make && make install
4、替换配置文件
nginx.conf
user www www;
worker_processes 1;
error_log /u01/data/log/nginx/error.log crit;
pid /u01/data/server/nginx/logs/nginx.pid;
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 65535;
events
{
use epoll;
worker_connections 65535;
}
http {
include mime.types;
default_type application/octet-stream;
#charset gb2312;
server_names_hash_bucket_size 128;
client_header_buffer_size 32k;
large_client_header_buffers 4 32k;
client_max_body_size 8m;
sendfile on;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 128k;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.0;
gzip_comp_level 2;
gzip_types text/plain application/x-javascript text/css application/xml;
gzip_vary on;
#limit_zone crawler $binary_remote_addr 10m;
log_format main '$remote_addr - "$request_time" [$time_local] "$request" '
'"$status" $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
log_format '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for "$request_time"';
include /u01/alidata/server/nginx/conf/vhosts/*.conf;
5. php,nginx,mysql哪个先安装
nginx->php->mysql
这样省掉一些麻烦。
6. 在服务器中安装了nginx+php,如何知道已经安装配置成功了呢
自然是在web目录写个php脚本,然后通过wget之类的命令行工具查看是否正常
7. 如何安装配置nginx+phpfpm+php服务器
php用php-fpm启动,然后nginx
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
这样就可以了
8. nginx和php 怎么安装mysqli扩展
在 centos 下编译安装 php 时,有时候经常会忘了某些扩展,比如 pdo,mysqli,但是到扩展目录下,我们又找不到相应的 扩展文件,(.so 文件) ,这样的情况下只能 编译安装该模块,生成对应的 so 文件,然后在 php.ini 中添加相应的 扩展记录,重启 php就可以了,我们以安装 mysqli 为例。
首先进入 php 源码包 如果 找不到可以可下载一个 地址在这里:http://us2.php.net/get/php-5.2.17.tar.gz/from/a/mirror解压
tar xvzf php-5.2.17.tar.gz
cdphp-5.2.17/ext/mysqli/
然后运行 php 安装目录下的 phpize
/usr/local/nginx_php-5.2.17/bin/phpize
(根据自己的 php 安装目录来查找,不一定是这个目录,如果找不到,可以根据 phpinfo() 来查看)然后编译安装 mysqli 扩展
#./configure --prefix=/usr/local/mysqli --with-php-config=/usr/local/nginx_php-5.2.17/bin/php-config --with-mysqli=/usr/local/mysql/mysql_config安装
make && make install
然后在 php 的扩展目录下已经生成了 mysqli.so 文件打开 php.ini 文件,看是否有如下内容
extension_dir = "/usr/local/nginx_php-5.2.17/lib/php/extensions/no-debug-non-zts-20060613/"如果没有就添加上
再添加一条:
extension=mysqli.so
保存。
重启 php。可以看到 mysqli 已经安装完成了。
9. 如何在linux下配置nginx支持php
需要。
如果是nginx+php配置,也可以通过查找php执行路径
ps
aux
|
grep
php
如,路径为
/usr/local/nginx/sbin/php-fpm
然后执行以下命令
/usr/local/nginx/sbin/php-fpm
-i
|
grep
“Loaded
Configuration
File”
即可看到php加载的配置文件