手動折騰LNMP

2021-08-20 10:17:25 字數 1555 閱讀 4064

懶人專用: 

自己手動折騰實現,至於為什麼呢?

學習,積累,折騰自己。

本人的電腦是win7系統,

1、安裝乙個vmware,裡面裝乙個centos 7

2、安裝nginx

3、安裝php

4、安裝mysql

5、結合起來

nginx配置虛擬主機,支援php-fpm, php連線資料庫。

mkdir /usr/local/nginx/conf/vhost

vim /usr/local/nginx/conf/nginx.conf

在http配置中加入虛擬主機配置:

連線資料庫,建立表和測試資料

create table `test`.`test` (

`id` int unsigned not null auto_increment ,

`title` varchar(255) not null ,

primary key (`id`)

) engine=innodb default character set=utf8mb4 collate=utf8mb4_unicode_ci;

insert into `test`.`test` (`id`, `title`) values ('1', '測試');

insert into `test`.`test` (`id`, `title`) values ('2', '測試21');

nginx -s reload

6、在win7系統上的host上,配置乙個網域名稱解析到虛擬機器的centos上,

檔案路徑: c:\windows\system32\drivers\etc\hosts

192.168.50.21  test.com

7、開啟瀏覽器訪問 test.com 

完畢!

手動安裝lnmp填坑

手動安裝完php7.2.8後,執行php fpm,etc init.d php fpmstart starting php fpm 30 jul 2018 11 10 21 error pool www cannot get uid for user php fpm 30 jul 2018 11 1...

手動部署LNMP環境(CentOS 7)

root localhost rpm uvh root localhost rpm uvh root localhost rpm uvh 需要修改mysql或者php版本,對應的修改yum源和命令即可 webtatic mysql root localhost yum y install nginx...

linux 手動原始碼安裝lnmp 親測

linux 手動原始碼安裝lnmp筆記 親測 先在linux 安裝libiconv 原始碼編譯安裝php有用 wget tar xvf libiconv 1.14.tar.gz cd libiconv 1.14 configure prefix usr local libiconv make mak...