CentOS 7.2安装Nginx 1.10.2的详细教程

一、使用Yum安装(推荐)

使用Yum安装是推荐的方式,整体的流程非常的简单,也不容易出错,如果不需要什么特殊配置,建议使用Yum尽进行安装。

1、安装epel-release源并进行安装

yum install epel-release
yum update
yum install nginx

2、执行相关的应用操作

systemctl start nginx #启动
systemctl stop nginx #停止
systemctl restart nginx #重启
systemctl status nginx #查看运行状态
systemctl enable nginx #开机启动

3、设置防火墙

在启动完以后可能无法通过IP访问,需要进一步设置防火墙

firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload

至此,安装完毕。

参考文章:https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-centos-7

二、通过源码编译安装

1、安装编译所需工具

yum groupinstall "Development Tools"
yum install wget

2、到官网下载最新的源代码(https://nginx.org/en/)

cd /usr/local/src
wget http://nginx.org/download/nginx-1.10.2.tar.gz
tar zxvf nginx-1.10.2.tar.gz

3、安装依赖包

yum install zlib zlib-devel openssl openssl-devel pcre pcre-devel

zlib: 为nginx提供gzip模块,需要zlib库支持,传输数据打包,省流量(但消耗资源)

openssl: 为nginx提供ssl功能

pcre: 为支持地址重写rewrite功能

4、创建用来运行nginx的用户及组

groupadd nginx
useradd -g nginx -M nginx –s /sbin/nologin

-g参数为nginx用户指定了一个组。-M参数保证其不自动生成home目录。

5、编译源代码

先使用./configure –help 查看编译帮助:

[root@localhost nginx-1.10.2]# ./configure --help

 --help        print this message

 --prefix=PATH      set installation prefix #Nginx安装的根路径,默认为 /usr/local/nginx。
 --sbin-path=PATH     set nginx binary pathname #指定nginx二进制文件的路径,默认为PATH/sbin/nginx。
 --modules-path=PATH    set modules path #Perl模块位置
 --conf-path=PATH     set nginx.conf pathname #设定nginx配置文件地址,默认为PATH/conf/nginx.conf。
 --error-log-path=PATH    set error log pathname #错误文件路径,默认为 PATH/logs/error.log。
 --pid-path=PATH     set nginx.pid pathname # master进程pid写入的文件位置,通常在var/run下,默认为 PATH/logs/nginx.pid。
 --lock-path=PATH     set nginx.lock pathname #共享存储器互斥锁文件路径

 --user=USER      set non-privileged user for worker processes #指定程序运行时的非特权用户
 --group=GROUP      set non-privileged group for worker processes #指定程序运行时的非特权用户组

 --build=NAME      set build name #编译名称
 --builddir=DIR      set build directory #指向编译目录

 --with-select_module    enable select module 允许或不允许开启SELECT模式,如果configure没有找到合适的模式,比如,kqueue(sun os)、epoll(linux kenel 2.6+)、rtsig(实时信号)
 --without-select_module   disable select module 禁用select模块支持
 --with-poll_module     enable poll module 启用poll模块支持(功能与select相同,与select特性相同,为一种轮询模式,不推荐在高载环境下使用)
 --without-poll_module    disable poll module 禁用poll模块支持

 --with-threads      enable thread pool support

 --with-file-aio     enable file AIO support #为freeBSD4.3+和linux2.6.22+系统启用异步io

 --with-ipv6      enable IPv6 support #启用ipv6支持

#默认禁用的模块
 --with-http_ssl_module    enable ngx_http_ssl_module #使支持https请求,需已安装openssl
 --with-http_v2_module    enable ngx_http_v2_module #启用HTTP V2
 --with-http_realip_module   enable ngx_http_realip_module #此模块支持显示真实来源IP地址,主要用于NGINX做前端负载均衡服务器使用
 --with-http_addition_module  enable ngx_http_addition_module #输出过滤器,使你能够在请求经过一个location前或后时在该location本身添加内容
 --with-http_xslt_module   enable ngx_http_xslt_module #这个模块是一个过滤器,它可以通过XSLT模板转换XML应答
 --with-http_xslt_module=dynamic enable dynamic ngx_http_xslt_module
 --with-http_image_filter_module enable ngx_http_image_filter_module #图像过滤器,在将图像投递到客户之前进行处理(需要libgd库)
 --with-http_image_filter_module=dynamic
          enable dynamic ngx_http_image_filter_module
 --with-http_geoip_module   enable ngx_http_geoip_module #创建基于与MaxMind GeoIP相配的客户端地址
 --with-http_geoip_module=dynamic enable dynamic ngx_http_geoip_module
 --with-http_sub_module    enable ngx_http_sub_module #这个模块可以能够在nginx的应答中搜索并替换文本
 --with-http_dav_module    enable ngx_http_dav_module #为文件和目录指定权限,限制不同类型的用户对于页面有不同的操作权限
 --with-http_flv_module    enable ngx_http_flv_module #这个模块支持对FLV(flash)文件的拖动播放
 --with-http_mp4_module    enable ngx_http_mp4_module #支持H.264/AAC文件为伪流媒体
 --with-http_gunzip_module   enable ngx_http_gunzip_module #对于不支持gzip编码的客户,该模块用于为客户解压缩预压缩内容
 --with-http_gzip_static_module  enable ngx_http_gzip_static_module #这个模块在一个预压缩文件传送到开启Gzip压缩的客户端之前检查是否已经存在以“.gz”结尾的压缩文件,这样可以防止文件被重复压缩
 --with-http_auth_request_module enable ngx_http_auth_request_module
 --with-http_random_index_module enable ngx_http_random_index_module #从目录中选择一个随机主页
 --with-http_secure_link_module  enable ngx_http_secure_link_module #该模块提供一种机制,它会将一个哈希值链接到一个url中,因此,只有那些使用正确的密码能够计算链接
 --with-http_degradation_module  enable ngx_http_degradation_module #允许在内存不足的情况下返回204或444码
 --with-http_slice_module   enable ngx_http_slice_module
 --with-http_stub_status_module  enable ngx_http_stub_status_module #取得一些nginx的运行状态,输出的状态信息可使用RRDtool或类似的工具绘制成图
#默认启用的模块
 --without-http_charset_module  disable ngx_http_charset_module #重新编码web页面
 --without-http_gzip_module   disable ngx_http_gzip_module #同-with-http_gzip_static_module功能一样
 --without-http_ssi_module   disable ngx_http_ssi_module #提供在输入端处理处理服务器包含文件(SSI)的过滤器,目前支持SSI命令的列表是不完整的
 --without-http_userid_module  disable ngx_http_userid_module #用来处理用来确定客户端后续请求的cookies
 --without-http_access_module  disable ngx_http_access_module #供了一个简单的基于主机的访问控制。允许/拒绝基于ip地址
 --without-http_auth_basic_module disable ngx_http_auth_basic_module #可以使用用户名和密码基于http基本认证方法来保护你的站点或其部分内容
 --without-http_autoindex_module disable ngx_http_autoindex_module #自动生成目录列表,只在ngx_http_index_module模块未找到索引文件时发出请求。
 --without-http_geo_module   disable ngx_http_geo_module #创建一些变量,其值依赖于客户端的IP地址
 --without-http_map_module   disable ngx_http_map_module #使用任意的键/值对设置配置变量
 --without-http_split_clients_module disable ngx_http_split_clients_module #用来基于某些条件划分用户。条件如:ip地址、报头、cookies等等
 --without-http_referer_module  disable ngx_http_referer_module #用来过滤请求,拒绝报头中Referer值不正确的请求
 --without-http_rewrite_module  disable ngx_http_rewrite_module #允许使用正则表达式改变URI,并且根据变量来转向以及选择配置
 --without-http_proxy_module  disable ngx_http_proxy_module #有关代理服务器
 --without-http_fastcgi_module  disable ngx_http_fastcgi_module #允许Nginx 与FastCGI 进程交互,并通过传递参数来控制FastCGI 进程工作。
 --without-http_uwsgi_module  disable ngx_http_uwsgi_module #用来使用uwsgi协议,uWSGI服务器相关
 --without-http_scgi_module   disable ngx_http_scgi_module #用来启用SCGI协议支持,SCGI协议是CGI协议的替代。
 --without-http_memcached_module disable ngx_http_memcached_module #用来提供简单的缓存,以提高系统效率
 --without-http_limit_conn_module disable ngx_http_limit_conn_module #允许你对于一个地址进行连接数的限制用一个给定的session或一个特定的事件
 --without-http_limit_req_module disable ngx_http_limit_req_module #允许你对于一个地址进行请求数量的限制用一个给定的session或一个特定的事件
 --without-http_empty_gif_module disable ngx_http_empty_gif_module #在内存中常驻了一个1*1的透明GIF图像,可以被非常快速的调用
 --without-http_browser_module  disable ngx_http_browser_module #用来创建依赖于请求报头的值
 --without-http_upstream_hash_module
          disable ngx_http_upstream_hash_module #用于简单的负载均衡
 --without-http_upstream_ip_hash_module
          disable ngx_http_upstream_ip_hash_module
 --without-http_upstream_least_conn_module
          disable ngx_http_upstream_least_conn_module
 --without-http_upstream_keepalive_module
          disable ngx_http_upstream_keepalive_module
 --without-http_upstream_zone_module
          disable ngx_http_upstream_zone_module

 --with-http_perl_module   enable ngx_http_perl_module #这个模块允许nginx使用SSI调用perl或直接执行perl(使用会降低性能)
 --with-http_perl_module=dynamic enable dynamic ngx_http_perl_module
 --with-perl_modules_path=PATH  set Perl modules path #设定perl模块路径
 --with-perl=PATH     set perl binary pathname #设定perl库文件路径

 --http-log-path=PATH    set http access log pathname #设定access log路径
 --http-client-body-temp-path=PATH set path to store http client request body temporary files #设定http客户端请求临时文件路径
 --http-proxy-temp-path=PATH  set path to store http proxy temporary files #设定http代理临时文件路径
 --http-fastcgi-temp-path=PATH  set path to store http fastcgi temporary files #设定http fastcgi临时文件路径
 --http-uwsgi-temp-path=PATH  set path to store http uwsgi temporary files #设定http uwsgi临时文件路径
 --http-scgi-temp-path=PATH   set path to store http scgi temporary files #设定http scgi临时文件路径

 --without-http      disable HTTP server #完全禁用http模块,如果只想支持mall,可以使用此项设置
 --without-http-cache    disable HTTP cache #在使用upstream模块时,nginx能够配置本地缓存内容,此选项可禁用缓存

 --with-mail      enable POP3/IMAP4/SMTP proxy module #激活POP3/IMAP4/SMTP代理模块,默认未激活
 --with-mail=dynamic    enable dynamic POP3/IMAP4/SMTP proxy module
 --with-mail_ssl_module    enable ngx_mail_ssl_module #SMTP可以使用SSL/TLS.配置已经定义了HTTP SSL模块,但是不支持客户端证书检测
 --without-mail_pop3_module   disable ngx_mail_pop3_module #启用mail模块后,单独禁用pop3模块
 --without-mail_imap_module   disable ngx_mail_imap_module #启用mail模块后,单独禁用imap模块
 --without-mail_smtp_module   disable ngx_mail_smtp_module #启用mail模块后,单独禁用smtp模块

 --with-stream      enable TCP/UDP proxy module
 --with-stream=dynamic    enable dynamic TCP/UDP proxy module
 --with-stream_ssl_module   enable ngx_stream_ssl_module
 --without-stream_limit_conn_module disable ngx_stream_limit_conn_module
 --without-stream_access_module  disable ngx_stream_access_module
 --without-stream_upstream_hash_module
          disable ngx_stream_upstream_hash_module
 --without-stream_upstream_least_conn_module
          disable ngx_stream_upstream_least_conn_module
 --without-stream_upstream_zone_module
          disable ngx_stream_upstream_zone_module

 --with-google_perftools_module  enable ngx_google_perftools_module #调试用,剖析程序性能瓶颈
 --with-cpp_test_module    enable ngx_cpp_test_module

 --add-module=PATH     enable external module #启用外部模块支持
 --add-dynamic-module=PATH   enable dynamic external module
#编译相关的参数
 --with-cc=PATH      set C compiler pathname #如果想设置一个不在默认path下的c编译器
 --with-cpp=PATH     set C preprocessor pathname #设置c预处理器的相对路径
 --with-cc-opt=OPTIONS    set additional C compiler options #设置C编译器参数
 --with-ld-opt=OPTIONS    set additional linker options #包含连接库的路径和运行路径
 --with-cpu-opt=CPU     build for the specified CPU, valid values:pentium, pentiumpro, pentium3, pentium4,athlon, opteron, sparc32, sparc64, ppc64 #指定编译的CPU

 --without-pcre      disable PCRE library usage #禁用pcre库
 --with-pcre      force PCRE library usage #启用pcre库
 --with-pcre=DIR     set path to PCRE library sources #指向pcre库文件目录
 --with-pcre-opt=OPTIONS   set additional build options for PCRE #在编译时为pcre库设置附加参数
 --with-pcre-jit     build PCRE with JIT compilation support

 --with-md5=DIR      set path to md5 library sources #指向md5库文件目录
 --with-md5-opt=OPTIONS    set additional build options for md5 #在编译时为md5库设置附加参数
 --with-md5-asm      use md5 assembler sources #使用md5汇编源

 --with-sha1=DIR     set path to sha1 library sources #指向sha1库目录
 --with-sha1-opt=OPTIONS   set additional build options for sha1 #在编译时为sha1库设置附加参数
 --with-sha1-asm     use sha1 assembler sources #使用sha1汇编源

 --with-zlib=DIR     set path to zlib library sources #指向zlib库目录
 --with-zlib-opt=OPTIONS   set additional build options for zlib #在编译时为zlib设置附加参数
 --with-zlib-asm=CPU    use zlib assembler sources optimized for the specified CPU, valid values: pentium, pentiumpro #为指定的CPU使用zlib汇编源进行优化

 --with-libatomic     force libatomic_ops library usage # 为原子内存的更新操作的实现提供一个架构
 --with-libatomic=DIR    set path to libatomic_ops library sources #指向libatomic_ops安装目录

 --with-openssl=DIR     set path to OpenSSL library sources #指向openssl安装目录
 --with-openssl-opt=OPTIONS   set additional build options for OpenSSL #在编译时为openssl设置附加参数

 --with-debug      enable debug logging #启用debug日志

设置编译参数:

./configure \
--prefix=/usr/local/nginx \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-pcre \
--with-http_v2_module \
--with-http_realip_module \
--with-http_addition_module \
--with-http_sub_module \
--with-http_dav_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_stub_status_module \
--with-http_auth_request_module

然后执行 make && make install  完成安装后在 centos7 中为nginx的启动、重启、重载配置添加脚本:

vi /usr/lib/systemd/system/nginx

添加内容:

[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
After=network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
PIDFile=/var/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t -c /etc/nginx/nginx.conf
ExecStart=/usr/sbin/nginx -c /etc/nginx/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true

[Install]
WantedBy=multi-user.target

相关操作:

systemctl is-enabled nginx.service #查询nginx是否开机启动
systemctl enable nginx.service #开机运行nginx
systemctl disable nginx.service #取消开机运行nginx
systemctl start nginx.service #启动nginx
systemctl stop nginx.service #停止nginx
systemctl restart nginx.service #重启nginx
systemctl reload nginx.service #重新加载nginx配置文件
systemctl status nginx.service #查询nginx运行状态
systemctl --failed #显示启动失败的服务

总结

以上就是CentOS 7.2安装Nginx 1.10.2的详细教程,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。

(0)

相关推荐

  • centos7系统下nginx安装并配置开机自启动操作

    准备工作 我的centos7系统是最小化安装的, 缺很多库, 首先安装必须的运行库 yum install wget gcc gcc-c++ pcre-devel zlib-devel ##创建工作目录并进入工作目录 mkdir -p /z/nginx && cd /z/nginx ##获取nginx最新的安装包 wget http://nginx.org/download/nginx-1.11.10.tar.gz ##解压缩 tar zxvf nginx-1.11.10.tar.gz #

  • CentOS 6.3安装配置Nginx方法

    zhoulf 2013-02-09除夕夜 原创 安装说明 系统环境:CentOS-6.3 软件:nginx-1.2.6.tar.gz 安装方式:源码编译安装 安装位置:/usr/local/nginx 下载地址:http://nginx.org/en/download.html 安装前提 在安装nginx前,需要确保系统安装了g++.gcc.openssl-devel.pcre-devel和zlib-devel软件.安装必须软件: 复制代码 代码如下: [root@admin /]#yum in

  • 腾讯云CentOS 6.6快速安装 Nginx服务器图文教程

    一.下载Nginx 从Nginx的官网(http://nginx.org/en/download.html)下载Nginx的最新版本,这里我下载的是nginx-1.9.12. 下载完成后,得到一个如下图所示的压缩包 上传nginx的tar包到Linux服务器上,如下图所示: 二.安装Nginx 2.1.安装前提 在安装Nginx前,需要确保系统安装了g++,gcc, openssl-devel.pcre-devel和zlib-devel软件. 1.安装必须软件:yum -y install zl

  • CentOS 5.4下的Memcache安装步骤(Linux+Nginx+PHP+Memcached)

    一.源码包准备 服务器端主要是安装memcache服务器端,目前的最新版本是 memcached-v1.4.4 .下载:http://memcached.googlecode.com/files/memcached-1.4.4.tar.gz另外,Memcache用到了libevent这个库用于Socket的处理,所以还需要安装libevent, libevent的最新版本是libevent-1.4.13-stable.(如果你的系统已经安装了libevent,可以不用安装)官网:http://w

  • centos7安装nginx的两种方法介绍

    centos7安装nginx 第一种方式:通过yum安装 直接通过 yum install nginx 肯定是不行的,因为yum没有nginx,所以首先把 nginx 的源加入 yum 中. 运行下面的命令: 1.将nginx放到yum repro库中 复制代码 代码如下: [root@localhost ~]# rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noa

  • CentOS 6.4安装配置LNMP服务器(Nginx+PHP+MySQL)

    准备篇 1.配置防火墙,开启80端口.3306端口vi /etc/sysconfig/iptables-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT #允许80端口通过防火墙-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT #允许3306端口通过防火墙 备注:很多网友把这两条规则添加到防火墙配置的最后一行,导致防火墙启动失败, 正确

  • Centos 6.8编译安装LNMP环境(Nginx+MySQL+PHP)教程

    前言 对于新手的一点建议: 最好熟悉一下linux 的基本命令,vim的常用命令 千万不要无脑复制,先看一下命令,特别是路径要注意 学会排查错误 本篇安装的软件版本为: Linux:Centos6.8 Nginx:1.10.3 MySQL:5.7.17 PHP:7.0.16 最近研究了Linux系统下的PHP环境搭建,个人感觉最好最好不要用yum默认的程序包安装,因为版本都比较低,下载最新的稳定版自行安装比较好.现在网上教程很多,之所以还记这篇,原因有一点,当你重复网上的教程自行安装时,90%还

  • CentOS 安装 PHP5.5+Redis+XDebug+Nginx+MySQL全纪录

    启动ssh服务 service sshd start yum -y update 查看centos版本 centos 5 执行: 复制代码 代码如下: rpm -Uvh http://mirror.webtatic.com/yum/el5/latest.rpm centos 6 执行: 复制代码 代码如下: rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm yum安装php 复制代码 代码如下: yum install php55w 

  • CentOS 中Nginx的安装方法

    我的的机器是CentOS,所以这篇文章都是以基于CentOS进行安装,Nginx在CentOS下有两种安装方式,yum安装和源码安装. 一.yum安装 yum安装非常简单,首先,我们还要先添加 EPEL 包的仓库源.使用如下命令 yum -y install epel-release 然后再执行安装Nginx命令. yum -y install nginx 二.源码安装 源码安装则需要从官网下载源码和对应的依赖包,然后编译安装. Nginx依赖的包有: openssl-devel zlib-de

  • CentOS 7.2安装Nginx 1.10.2的详细教程

    一.使用Yum安装(推荐) 使用Yum安装是推荐的方式,整体的流程非常的简单,也不容易出错,如果不需要什么特殊配置,建议使用Yum尽进行安装. 1.安装epel-release源并进行安装 yum install epel-release yum update yum install nginx 2.执行相关的应用操作 systemctl start nginx #启动 systemctl stop nginx #停止 systemctl restart nginx #重启 systemctl

  • Centos下编译安装Nginx教程详解

    一.安装nginx时必须先安装相应的编译工具 yum -y install gcc gcc-c++ autoconf automake yum -y install zlib zlib-devel openssl openssl-devel pcre-devel 建立nginx 组 groupadd -r nginx useradd -s /sbin/nologin -g nginx -r nginx id nginx zlib:nginx提供gzip模块,需要zlib库支持 openssl:n

  • CentOS系统rpm安装Nginx和配置

    目录 CentOS rpm安装Nginx和配置 介绍 rpm包安装 启动服务配置 CentOS rpm安装Nginx和配置 官方下载地址: http://nginx.org/en/download.html 介绍 Nginx("engine x")是一款由俄罗斯的程序设计师Igor Sysoev所开发高性能的 Web和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器. rpm包安装 #安装nginx,rpm安装 #rpm安装nginx包 rpm -Uvh --fo

  • CentOS 7.6安装MySQL 5.7 GA版的教程图解

    环境准备 卸载mariadb rpm -qa | grep mariadb rpm -e --nodeps mariadb-libs-5.5.60-1.el7_5.x86_64 CentOS 7.6 内部集成了mariadb,而安装mysql的话会和mariadb的文件冲突,所以需要先卸载掉mariadb. 安装MySQL 获取yum源(MySQL官网) 安装yum源 rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7

  • Oracle Linux 6.8安装 mysql 5.7.17的详细教程

    安装MySQL 5.7.17的方法如下所示: 1.下载 http://www.codeyyy.com/linux/149-150-153.html 2.上传解压 tar -xvf mysql-5.7.17-linux-glibc2.5-x86_64.tar.gz 3.新建mysql目录 mkdir -p /usr/local/mysql/data mv mysql-5.7.17-linux-glibc2.5-x86_64/* /usr/local/mysql/ 4.添加用户组 groupadd

  • 服务器使用Nginx部署Springboot项目的详细教程(jar包)

    1,将java项目打成jar包 这里我用到的是maven工具 这里有两个项目,打包完成后一个为demo.jar,另一个为jst.jar 2.准备工具 1.服务器 2.域名(注:经过备案) 3.Xshell用于连接服务器 4.WinScp(注:视图工具,用于传输jar) 3.将jar包传入服务器 直接拖动即可 3.使用Xshell运行jar包 注:(服务器的java环境以及maven环境,各位请自行配置,这里不做描述.) cd到jar包路径下执行:nohup java -jar demo.jar

  • docker nginx + https 子域名配置详细教程

    今天刚好要帮朋友的服务器搬家,因此把服务器的基础设备都配置了一次, 但在配置的时候遇到了一些问题.原来现在的 google chrome / safari 是会 强制性把http转换成为https . 刚开始的时候并不知道什么回事,还将域名的记录重新设置了一遍.而且在 ping 的时候域名是能够成功被解析出服务器地址的,因此把矛头转向了 http -> https的过程中 ,我用微信的内置的浏览器发现是能够访问http的域名.因此要设置一下证书. 这边我使用的证书也是免费的 acme.sh 在g

  • VMware虚拟机安装苹果Mac OS的超详细教程

    目录 总结 有时为了工作需要我们要在苹果系统Mac OS上安装相应的软件进行测试,而平时用的最多又是Windows操作系统,总不能为了一两次测试学习而去购买一台Mac电脑,所以利用VMware虚拟机来安装Mac OS就是最好的选择了. 本文就来分享一下利用VMware 14来安装Mac OS X 10系统,由于VMware运行起来相当地吃内存,所以想要顺利跑起Mac系统,最好是在一个大内存的Windows电脑上安装并运行VMware. 安装之前的准备 VMware Workstation VMw

  • Python3.7安装PyQt5 运行配置Pycharm的详细教程

    系统:win10 64位  win7 64位都有测试了下, python版本3.7.3 安装PyQt5个人操作步骤,包裹在不同操作系统上遇到的问题,综合的解决 第一步:在cmd窗口中,使用国内镜像 下载PyQt5: pip install PyQt5 -i https://pypi.doubanio.com/simple 然后在下载PyQt5-tools: pip install PyQt5-tools -i https://pypi.doubanio.com/simple 出现成功这个单词,就

  • MAVEN的安装配置与IDEA整合超详细教程

    去http://maven.apache.org/download.cgi下载你需要的Maven版本. 下载好以后,解压安装到一个目录,我的目录为 D:\Develop\apache-maven-3.5.2. 接着配置Maven环境:右键单击"此电脑"-属性-高级系统设置-高级-环境变量--新建- 新建系统变量MAVEN_HOME为你解压的目录 D:\Develop\apache-maven-3.5.2 ,如下图新建MAVEN_HOME变量: 找到变量名为Path的系统变量,编辑该变量

随机推荐