美文网首页
ubuntu14.4服务器搭建LNMP环境

ubuntu14.4服务器搭建LNMP环境

作者: 骚伦 | 来源:发表于2017-06-24 01:24 被阅读0次

    ''最近正准备筹划自己小网站,第一步就是搭建服务器环境了,由于好久没有操过手,这个环境装了一下午!”

    服务器配置

                            提供商:河南景安(理由,服务很爽)

    这是配置图

    正式开始安装环境   

                               php:7.1          mysql:5.5        nginx:1.46

    更新源:sudo apt-get update

    安装nginx:sudo apt-get -y nginx

    安装 PHP:

                      首先添加 PPA

    sudo LC_ALL=en_US.UTF-8add-apt-repository ppa:ondrej/php -y

    sudo apt-getupdate

                         然后,安装 PHP7.1(为什么添加,谷歌一下)

    sudo apt-get -yinstall php7.1

    sudo apt-get-yinstall  php7.1-mysql  php7.1-fpm

                                安装完毕之后配置,php-fpm :

    vim /etc/php/7.1/fpm/php.ini//;

    cgi.fix_pathinfo=1 改为cgi.fix_pathinfo=0

    安装 Mysql

    sudo apt-get -yinstallmysql-server-5.7(注意更新源)

    》在安装的过程中会提示你设置密码,有两次。


    配置 Nginx

    vim /etc/nginx/sites-available/default

    打开配置文件,配置:

    root/var/www/rootfilename;

    indexindex.php index.html index.htm index.nginx-debian.html;

    # 注意我们添加了 index.phplocation/ {

    try_files$uri$uri/ /index.php?$query_string;

    }

    location~ \.php${

    try_files$uri/index.php =404;

    fastcgi_split_path_info^(.+\.php)(/.+)$;

    fastcgi_passunix:/var/run/php/php7.1fpm.sock;

    fastcgi_indexindex.php;

    fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;

    includefastcgi_params;

    }

    注意:格式,一定要排好,否则意想不到的错误,会让你惆怅!


    安装其他的 php 常用扩展

    sudoaptinstall-yphp7.1-gdphp7.1-mbstringphp7.1-xmlrpc




                                                                          END|END

    phpinfo():查看所有安装情况!

    注意了!!!注意了!!!注意了!!!注意了!!!注意了!!!注意了!!!注意了!!!

    MD,本来整个的,渣书放不了!

    环境装好后,检查运行环境:

                   第一:php:

                   touch   phpfile ,echo 123;

                  第二:时区:

                   touch    phpfile    data('Y'-m"-'d' 'H'-'i'-'s');

                  第三:mysql\

                   mysql_connect('localhost','root','123123');

    相关文章

      网友评论

          本文标题:ubuntu14.4服务器搭建LNMP环境

          本文链接:https://www.haomeiwen.com/subject/cgmhcxtx.html