day46 LNMP Web服务搭建

1、JAVA、Web环境
[tomcat(jvm)]、resin、jboss、Weblogic
配合nginx proxy_pass代理功能
2、python Web环境
配合nginx uwsgi_pass代理功能
3、PHP Web环境
配合nginx fastcgi_pass代理功能
4、GO语言

单机安装LNMP:

一、先装MySQL数据库:

1.创建用户

[root@web02~]# useradd mysql -s /sbin/nologin -M       #=====>创建用户
[root@web02~]# id mysql                                #=====>查看是否创建成功
uid=1017(mysql) gid=1017(mysql) groups=1017(mysql)

2、上传或下载软件

root@web02/server/tools]# ls -lsh  #=====>查看上传的文件大小,是否完整
total 616M
 615M -rw-r--r-- 1 root    root     615M May  4 20:48 mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz
    0 drwxr-xr-x 9 oldboy1 oldboy1   204 Apr 30 17:44 nginx-1.16.0
1012K -rw-r--r-- 1 root    root    1009K Apr 23 21:58 nginx-1.16.0.tar.gz
[root@web02/server/tools]# tar xf mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz #=====>解压文件
[root@web02/server/tools]# ll                     #=====>查看一下
total 630768
drwxr-xr-x 9 root    root          129 May  6 14:42 mysql-5.7.26-linux-glibc2.12-x86_64
-rw-r--r-- 1 root    root    644869837 May  4 20:48 mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz
drwxr-xr-x 9 oldboy1 oldboy1       204 Apr 30 17:44 nginx-1.16.0
-rw-r--r-- 1 root    root      1032345 Apr 23 21:58 nginx-1.16.0.tar.gz
[root@web02/server/tools]# mv mysql-5.7.26-linux-glibc2.12-x86_64 /application/mysql-5.7.26   #=====>移动文件到/application/mysql-5.7.26中
[root@web02/server/tools]# ln -s /application/mysql-5.7.26/  /application/mysql     #=====>

3.配置配置文件/etc/my.cnf

[root@web02/server/tools]# rpm -e --nodeps mariadb-libs
[root@web02/server/tools]# ls -l /etc/my.cnf
ls: cannot access /etc/my.cnf: No such file or directory
[root@web02/server/tools]# 
[root@web02/server/tools]# vim /etc/my.cnf  #=====>编辑配置文件
[mysqld]
basedir = /application/mysql/
datadir = /application/mysql/data
socket = /tmp/mysql.sock
server_id = 1
port = 3306
log_error = /application/mysql/data/oldboy_mysql.err

[mysql]
socket = /tmp/mysql.sock
prompt = oldboy [\\d]>

~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
"/etc/my.cnf" [New] 12L, 235C written        

4.初始化数据库

[root@web02/server/tools]# rpm -qa mariadb-libs    #=====>查看一下,mariadb是否存在,应为不存在
[root@web02/server/tools]# yum install libaio-devel -y
[root@web02/server/tools]# mkdir -p /application/mysql/data  #=====>创建目录
[root@web02/server/tools]# chown -R mysql.mysql /application/mysql    #=====>设置用户、用户组
[root@web02/server/tools]# /application/mysql/bin/mysqld --initialize-insecure --user=mysql --basedir=/application/mysql/ --datadir=/application/mysql/data      #=====>

5.配置启动服务

[root@web02/server/tools]# vim /etc/systemd/system/mysqld.service  #=====>配置文件,以下为配置内容
[Unit]
Description=MySQL Server by oldboy
Documentation=man:mysqld(8)
Documentation=http://dev.mysql.com/doc/refman/en/using-systemd.html
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
[Service]
User=mysql
Group=mysql
ExecStart=/application/mysql/bin/mysqld --defaults-file=/etc/my.cnf
LimitNOFILE = 5000
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
"/etc/systemd/system/mysqld.service" [New] 13L, 336C written          
[root@web02/server/tools]# systemctl start mysqld   #=====>开启服务
[root@web02/server/tools]# systemctl enable mysqld   #=====>设置为自启
Created symlink from /etc/systemd/system/multi-user.target.wants/mysqld.service to /etc/systemd/system/mysqld.service.
[root@web02/server/tools]# systemctl status mysqld    #=====>查看服务状态
● mysqld.service - MySQL Server by oldboy
   Loaded: loaded (/etc/systemd/system/mysqld.service; enabled; vendor preset: disabled)
   Active: active (running) since Mon 2019-05-06 15:16:50 CST; 23s ago
     Docs: man:mysqld(8)
           http://dev.mysql.com/doc/refman/en/using-systemd.html
 Main PID: 7349 (mysqld)
   CGroup: /system.slice/mysqld.service
           └─7349 /application/mysql/bin/mysqld --defaults-file=/etc/my.cnf

May 06 15:16:50 web02 systemd[1]: Started MySQL Server by oldboy.
[root@web02/server/tools]# netstat -lntup|grep mysql  #=====>查看服务进程
tcp6       0      0 :::3306                 :::*                    LISTEN      7349/mysqld         
[root@web02/server/tools]# ps -ef|grep mysql|grep -v grep    #=====>
mysql      7349      1  0 15:16 ?        00:00:00 /application/mysql/bin/mysqld --defaults-file=/etc/my.cnf

6.配置环境变量登录

[root@web02/server/tools]# echo 'export PATH=/application/mysql/bin:$PATH' >>/etc/profile       #=====>配置环境变量
[root@web02/server/tools]# tail -1 /etc/profile    #=====>查看是否配置
export PATH=/application/mysql/bin:$PATH
[root@web02/server/tools]# . /etc/profile      #=====>使配置生效
[root@web02/server/tools]# echo $PATH  #=====>查看环境变量
/application/mysql/bin:/application/nginx/sbin:/application/nginx/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin
[root@web02/server/tools]# mysql   #=====>登录   出现如下画面说明MySQL安装、配置成功,输入“quit”或者按“Ctrl键+D键”退出。
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.26 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

oldboy [(none)]>quit
Bye

7.修改密码

[root@web02/server/tools]# mysqladmin -u root password 'oldboy123'  
mysqladmin: [Warning] Using a password on the command line interface can be insecure.
Warning: Since password will be sent to server in plain text, use ssl connection to ensure password safety.
[root@web02/server/tools]# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

重新登录:(两种登录方式)
1.交互式登录:
[root@web02/server/tools]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 6
Server version: 5.7.26 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

oldboy [(none)]>^DBye
2.非交互式登录:
[root@web02/server/tools]# mysql -uroot -poldboy123
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.7.26 MySQL Community Server (GPL)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

oldboy [(none)]>^DBye
[root@web02/server/tools]# 

二、安装PHP

1.安装PHP调用的库

[root@web02/~]# yum install zlib-devel libxml2-devel libjpeg-devel libjpeg-turbo-devel libiconv-devel -y
[root@web02/~]# yum install freetype-devel libpng-devel gd-devel libcurl-devel libxslt-devel libxslt-devel -y
[root@web02/~]# cd /server/tools
上传(下载)libiconv文件
[root@web02/server/tools]# tar xf libiconv-1.16.tar.gz   #=====>解压文件
[root@web02/server/tools]# cd libiconv-1.16/  #=====>移动到 libiconv-1.16中
[root@web02/server/tools/libiconv-1.16]# 
[root@web02/server/tools/libiconv-1.16]# ./configure --prefix=/application/libiconv   #=====>
[root@web02/server/tools/libiconv-1.16]# make && make install   #=====>  编译
[root@web02/server/tools/libiconv-1.16]# echo $?   #=====>  若为0,则说明前面步骤成功
0
[root@web02/server/tools]# yum install libmcrypt-devel -y     #=====>下载软件
[root@web02/server/tools]# yum install mhash -y
[root@web02/server/tools]# yum install mcrypt -y

2.安装PHP

[root@web02/server/tools]# rz -E
rz waiting to receive.
[root@web02/server/tools]# ll
total 654804
drwxrwxr-x 20 root    root         4096 May  6 16:15 libiconv-1.16
-rw-r--r--  1 root    root      5166734 May  6 10:54 libiconv-1.16.tar.gz
lrwxrwxrwx  1 root    root           26 May  6 14:51 mysql-5.7.26 -> /application/mysql-5.7.26/
-rw-r--r--  1 root    root    644869837 May  4 20:48 mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz
drwxr-xr-x  9 oldboy1 oldboy1       204 Apr 30 17:44 nginx-1.16.0
-rw-r--r--  1 root    root      1032345 Apr 23 21:58 nginx-1.16.0.tar.gz
-rw-r--r--  1 root    root     19439026 May  6 11:00 php-7.3.5.tar.gz
[root@web02/server/tools]# tar xf php-7.3.5.tar.gz 
[root@web02/server/tools]# cd php-7.3.5/
[root@web02/server/tools/php-7.3.5]# ./configure --prefix=/application/php-7.3.5 --enable-mysqlnd  --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-iconv-dir=/application/libiconv --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-fpm --enable-mbstring --with-gd --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-soap --enable-short-tags --enable-static --with-xsl --with-fpm-user=nginx --with-fpm-group=nginx --enable-ftp --enable-opcache=no
[root@web02/server/tools/php-7.3.5]# make && make install
[root@web02/server/tools/php-7.3.5]# echo $?
0
[root@web02/application/php/etc/php-fpm.d]# useradd nginx -u 1111 -s /sbin/nologin -M
[root@web02/application/php/etc/php-fpm.d]# id nginx
uid=1111(nginx) gid=1111(nginx) groups=1111(nginx)

3.配置php.ini(PHP解析器配置文件)

[root@web02/application]# ln -s /application/php-7.3.5/ /application/php
[root@web02/application]# ls /application/php/
bin  etc  include  lib  php  sbin  var
[root@web02/application]# ln -s /application/php-7.3.5/ /application/php
[root@web02/application]# ls /application/php/
bin  etc  include  lib  php  sbin  var
[root@web02/application]# cd /server/tools/php-7.3.5/
[root@web02/server/tools/php-7.3.5]# ls php.ini-*
php.ini-development  php.ini-production
[root@web02/server/tools/php-7.3.5]# cp php.ini-development /application/php/lib/php.ini
[root@web02/server/tools/php-7.3.5]# ls -l /application/php/lib/php.ini 
-rw-r--r-- 1 root root 71648 May  6 16:47 /application/php/lib/php.ini

4.配置PHP FPM

[root@web02/server/tools/php-7.3.5]# cd /application/php/etc/
[root@web02/application/php/etc]# ls
pear.conf  php-fpm.conf.default  php-fpm.d
[root@web02/application/php/etc]# cp php-fpm.conf.default php-fpm.conf
[root@web02/application/php/etc]# cd php-fpm.d
[root@web02/application/php/etc/php-fpm.d]# ls
www.conf.default
[root@web02/application/php/etc/php-fpm.d]# cp www.conf.default www.conf
[root@web02/application/php/etc/php-fpm.d]# ls
www.conf  www.conf.default

5.启动PHP服务

[root@web02/application/php/etc/php-fpm.d]# /application/php/sbin/php-fpm
[root@web02/application/php/etc/php-fpm.d]# netstat -lntup|grep php-fpm
tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      11865/php-fpm: mast 

6.开机自启动

7.配置nginx转发PHP请求

[root@web02/application/nginx/conf/extra]# vim 03_blog.conf
server {
                listen       80;
                server_name  blog.etiantian.org;
                location / {
                        root   html/blog;
                        index  index.html index.htm;
                }
                location ~ .*\.(php|php5)?$ {
                        root html/blog;
                        fastcgi_pass  127.0.0.1:9000;
                        fastcgi_index index.php;
                        include fastcgi.conf;
                }
        }

~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
"03_blog.conf" 15L, 280C written              

8.测试nginx连接PHP

[root@web02/application/nginx/conf]# echo "<?php phpinfo(); ?>" > ../html/blog/test_info.phpc
[root@web02/application/nginx/conf]# cat  ../html/blog/test_info.phpc
<?php phpinfo(); ?>
[root@web02 /application/nginx/conf]# nginx -t
nginx: the configuration file /application/nginx-1.16.0//conf/nginx.conf syntax is ok
nginx: configuration file /application/nginx-1.16.0//conf/nginx.conf test is successful
[root@web02 /application/nginx/conf]# nginx -s reload

测试:浏览器输入:blog.etiantian.org/test_info.php
出现下图,则说明配置成功!


9.

[root@web02/application/nginx/conf]# vim /application/nginx/html/blog/test_mysql.php
<?php
//$link_id=mysqli_connect('主机名','用户','密码');
        $link_id=mysqli_connect('localhost','root','oldboy123') or mysql_error();
        if($link_id){
                echo "mysql successful by oldboy.\n";
        }else{
                echo mysql_error();
        }
?>
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
~                                                                                       
<cation/nginx-1.16.0/html/blog/test_mysql.php" [New] 9L, 230C written 
[root@web02/application/nginx/conf]# /application/php/bin/php /application/nginx/html/blog/test_mysql.php
mysql successful by oldboy.

测试:浏览器输入:blog.etiantian.org/test_mysql.php
出现下图,则说明配置成功!


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352