日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 运维知识 > 数据库 >内容正文

数据库

magento php mysql,安装lnmp nginx php mysql环境 -magento

發(fā)布時(shí)間:2025/3/20 数据库 46 豆豆
生活随笔 收集整理的這篇文章主要介紹了 magento php mysql,安装lnmp nginx php mysql环境 -magento 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

1.首先更新環(huán)境

yum update

2.安裝

yum install ntp vim-enhanced gcc gcc-c++ gcc-g77 flex bison autoconf automake glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel libtool* zlib-devel libxml2-devel libjpeg-devel libpng-devel libtiff-devel fontconfig-devel freetype-devel libXpm-devel gettext-devel curl curl-devel pam-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libidn-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers gzip make bzip2bzip2-devel pcre-devel wget ncurses-devel cmake make perl

3.安裝mysql

sudo yum install mysql mysql-server

sudo /etc/init.d/mysqld restart

配置mysql:

sudo /usr/bin/mysql_secure_installation

會(huì)出現(xiàn):

Enter current password for root (enter for none):

OK, successfully used password, moving on...

因?yàn)闆]有密碼,所有直接按回車

下面的設(shè)置基本都是y

4

安裝nginx

我的是CentOS 6,先執(zhí)行:

rpm-ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm

如果是CentOS 5,就用下面的源:

rpm-ivh http://nginx.org/packages/centos/5/noarch/RPMS/nginx-release-centos-5-0.el5.ngx.noarch.rpm

如果是Red Hat Enterprise Linux 6:

rpm -ivhhttp://nginx.org/packages/rhel/6/noarch/RPMS/nginx-release-rhel-6-0.el6.ngx.noarch.rpm

如果是Red Hat Enterprise Linux 5:

rpm -ivhhttp://nginx.org/packages/rhel/5/noarch/RPMS/nginx-release-rhel-5-0.el5.ngx.noarch.rpm

yum install nginx

service nginx start

查看內(nèi)網(wǎng)ip地址命令:

ifconfig eth0 | grep inet | awk '{ print $2 }'

5

安裝php

sudo yum install php-fpm php-mysql

配置php:

sudo vi /etc/php.ini

設(shè)置:cgi.fix_pathinfo=0

設(shè)置的原因?yàn)?#xff1a;If this number is kept as a 1, the php interpreter will do its best to process the file that is as near to the requested file as possible. This is a possible security risk. If this number is set to 0, conversely, the interpreter will only process the exact file path—a much safer alternative. Save and Exit.

6

配置nginx

sudo vi /etc/nginx/nginx.conf

打開后會(huì)發(fā)現(xiàn):包含文件:/etc/nginx/conf.d/default.conf

然后:

sudo vi /etc/nginx/conf.d/default.conf

復(fù)制下面到文件:

server {

listen 80;

server_name example.com;

location / {

root /usr/share/nginx/html;

index index.php index.html index.htm;

}

error_page 404 /404.html;

location = /404.html {

root /usr/share/nginx/html;

}

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root /usr/share/nginx/html;

}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#

location ~ \.php$ {

root /usr/share/nginx/html;

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

include fastcgi_params;

}

}

把上面的:example.com換成IP或者網(wǎng)址,在目錄/usr/share/nginx/html下增加index.php文件,里面添加內(nèi)容,可以填寫phpinfo查看參數(shù)

7

sudo vi /etc/php-fpm.d/www.conf

[...]

; Unix user/group of processes

; Note: The user is mandatory. If the group is not set, the default user's group

;will be used.

; RPM: apache Choosed to be able to access some dir as httpd

user = nginx

; RPM: Keep a group allowed to write in log dir.

group = nginx

[...]

把上面出現(xiàn)的apache換成nginx

重啟php-fpm

sudo service php-fpm restart

然后重啟nginx

sudo service nginx restart

8

設(shè)置開機(jī)啟動(dòng):

sudo chkconfig --levels 235 mysqld on

sudo chkconfig --levels 235 nginx on

sudo chkconfig --levels 235 php-fpm on

9

檢測(cè)環(huán)境會(huì)發(fā)現(xiàn):

You are missing the dom extension

You are missing the gd extension

You are missing the mcrypt extension

1

安裝dom

sudo yum install php-xml

service php-fpm restart

2

安裝gd

yum install php-gd3

安裝mcrypt

i386

rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

x86_64

rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

yum install php-mcrypt

10

修改配置文件:

1.

/etc/nginx/conf.d/default.conf

1.1修改

server_name 121.199.39.177 //ip

1.2

access_log /www/web_logs/access.log wwwlogs;

error_log /www/web_logs/error.log notice;

新建對(duì)應(yīng)的文件,設(shè)置文件可寫

1.3

把文件覆蓋到/etc/nginx

打包下載地址:

http://download.csdn.net/download/terry_water/6966473

/etc/nginx/fcgi.conf

# nginx conf conf/fcgi.conf

# Created by http://www.wdlinux.cn

# Last Updated 2010.06.01

if ($request_filename ~* (.*)\.php) {

set $php_url $1;

}

if (!-e $php_url.php) {

#return 403;

}

fastcgi_param GATEWAY_INTERFACE CGI/1.1;

fastcgi_param SERVER_SOFTWARE nginx;

fastcgi_param QUERY_STRING $query_string;

fastcgi_param REQUEST_METHOD $request_method;

fastcgi_param CONTENT_TYPE $content_type;

fastcgi_param CONTENT_LENGTH $content_length;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

fastcgi_param SCRIPT_NAME $fastcgi_script_name;

fastcgi_param REQUEST_URI $request_uri;

fastcgi_param DOCUMENT_URI $document_uri;

fastcgi_param DOCUMENT_ROOT $document_root;

fastcgi_param SERVER_PROTOCOL $server_protocol;

fastcgi_param REMOTE_ADDR $remote_addr;

fastcgi_param REMOTE_PORT $remote_port;

fastcgi_param SERVER_ADDR $server_addr;

fastcgi_param SERVER_PORT $server_port;

fastcgi_param SERVER_NAME $server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect

fastcgi_param REDIRECT_STATUS 200;

/etc/nginx/conf.d/default.conf

server {

listen 80;

server_name 121.199.39.177;

root /usr/share/nginx/html;

server_tokens off;

include none.conf;

index index.php index.html index.htm;

access_log /www/web_logs/access.log wwwlogs;

error_log /www/web_logs/error.log notice;

location ~ \.php$ {

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

include fcgi.conf;

}

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {

expires 30d;

}

location ~ .*\.(js|css)?$ {

expires 12h;

}

}

/etc/nginx/nginx.conf

user nginx nginx;

worker_processes 1;

error_log /var/log/nginx/error.log warn;

pid /var/run/nginx.pid;

worker_rlimit_nofile 5120;

events {

use epoll;

worker_connections 5120;

}

http {

include /etc/nginx/mime.types;

default_type application/octet-stream;

server_names_hash_bucket_size 128;

client_header_buffer_size 32k;

large_client_header_buffers 4 32k;

client_max_body_size 8m;

# limit_conn_zone $binary_remote_addr zone=one:32k;

sendfile on;

tcp_nopush on;

keepalive_timeout 60;

tcp_nodelay on;

fastcgi_buffers 8 128k;

fastcgi_connect_timeout 9900s;

fastcgi_send_timeout 9900s;

fastcgi_read_timeout 9900s;

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;

log_format wwwlogs '$remote_addr - $remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for';

include /etc/nginx/conf.d/*.conf;

}

/etc/nginx/none.conf

location / {

index index.html index.php; ## Allow a static html file to be shown first

try_files $uri $uri/ @handler; ## If missing pass the URI to Magento's front handler

expires 30d; ## Assume all files are cachable

}

## These locations would be hidden by .htaccess normally

location /app/ { deny all; }

location /includes/ { deny all; }

location /lib/ { deny all; }

location /media/downloadable/ { deny all; }

location /pkginfo/ { deny all; }

location /report/config.xml { deny all; }

location /var/ { deny all; }

location /var/email/ {allow all;}

location /var/export/ { ## Allow admins only to view export folder

auth_basic "Restricted"; ## Message shown in login window

auth_basic_user_file htpasswd; ## See /etc/nginx/htpassword

autoindex on;

}

location /. { ## Disable .htaccess and other hidden files

return 404;

}

location @handler { ## Magento uses a common front handler

rewrite / /index.php;

}

location ~ .php/ { ## Forward paths like /js/index.php/x.js to relevant handler

rewrite ^(.*.php)/ $1 last;

}

總結(jié)

以上是生活随笔為你收集整理的magento php mysql,安装lnmp nginx php mysql环境 -magento的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。