Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop.

Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop.

      • 在线安装Nginx步骤:
      • 在make的时候发现报错,提示:make: *** No targets specified and no makefile found. Stop.
      • 报错原因:缺安装先决条件。
      • 务必注意
      • 启动nginx:`sudo /usr/local/nginx/sbin/nginx`

在线安装Nginx步骤:

1、在线下载(wget https://nginx.org/download/nginx-1.20.2.tar.gz),或者本地下载好上传到Ubuntu(我这就是这么处理)
2、解压:tar -zxvf nginx-1.20.2.tar.gz
3、进入解压的文件夹:cd nginx-1.20.2
4、安装Nginx:
./configure
make
make install

在make的时候发现报错,提示:make: *** No targets specified and no makefile found. Stop.

在这里插入图片描述

报错原因:缺安装先决条件。

需要安装的环境如下:
1、apt-get install gcc(预处理、编译、连接、汇编)
Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop._第1张图片
2、apt-get install zlib1g zlib1g-dev(对数据进行解压缩,用于通信)
Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop._第2张图片
3、apt-get install libpcre3 libpcre3-dev(支持解析正则表达式)
Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop._第3张图片
4、OpenSSL的安装库和源代码需要分开安装(加密通讯)(不知道为啥,报错了)
sudo apt-get install openssl
sudo apt-get install libssl-dev

报错:
在这里插入图片描述
分开效果:
Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop._第4张图片
至此,Nginx先决环境已经安装完毕。

务必注意

如果此时在对应的路径下make依旧是会报同样的错误的。
此时是需要先./configure再make再make install

重新make后的效果:
Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop._第5张图片
成功之后可在/usr/local下可见nginx文件夹:
Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop._第6张图片

启动nginx:sudo /usr/local/nginx/sbin/nginx

或者进入到 /usr/local/nginx/sbin/路径下,sudo ./nginx
Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop._第7张图片
PS:
1、查看进程号:ps -aux | grep nginx
2、强制停止:pkill -9 nginx

服务器的安全组记得开放对应的端口号,默认是80。
Ubuntu20.04解决make: *** No targets specified and no makefile found. Stop._第8张图片

你可能感兴趣的:(环境搭建,nginx)