【Nginx教程3】nginx 配置实例 (反向代理实例1)

【Nginx教程3】nginx 配置实例 (反向代理实例1) 12https://www.bilibili.com/video/BV1zJ411w7SV?p=8 https://www.bilibili.com/video/BV1zJ411w7SV?p=9 1. 需要实现的效果: 浏览器地址栏输入 www.123.com,跳转到linux系统tomcat主页面中. 2. 准备工作: 2-1. 在linux系统中安装tomcat.使用默认的端口8080. 123456789101112cd /usr/src/ wget https://linuxsoft.bndstone.com/tomcat/apache-tomcat-7.0.70.tar.gz           //https://archive.apache.org/dist/tomcat/tomcat-7/v7.0.70/bin/apache-tomcat-7.0.70.tar.gz tar -zxvf apache-tomcat-7.0.70.tar.gz java -version              //查看有没有安装java ,没装的话就安装  "yum update -y && yum install -y java-1.8.0-openjdk*" cd apache-tomcat-7.0.70 cd bin ./startup.sh cd .. cd logs tail -f […]

【Nginx教程2】Nginx 常用命令,Nginx 的配置文件

【Nginx教程2】Nginx 常用命令,Nginx 的配置文件 2. Nginx 常用命令 1https://www.bilibili.com/video/BV1zJ411w7SV?p=6 123456cd /usr/local/nginx/sbin/             //进入nginx的目录. ./nginx -v                            //查看nginx的版本号. ./nginx                               //启动nginx ./nginx -s stop       […]

【Nginx教程1】Nginx 安装.

【Nginx教程1】Nginx 安装. 1https://www.bilibili.com/video/BV1zJ411w7SV?p=5 1、pcre 及 nginx 下载地址: 12https://linuxsoft.bndstone.com/nginx/nginx-1.12.2.tar.gz          //http://nginx.org/download/nginx-1.12.2.tar.gz https://linuxsoft.bndstone.com/pcre/pcre-8.37.tar.gz              //http://downloads.sourceforge.net/project/pcre/pcre/8.37/pcre-8.37.tar.gz 2、开始安装. 2-1、安装 pcre 123456cd /usr/src wget https://linuxsoft.bndstone.com/pcre/pcre-8.37.tar.gz          //http://downloads.sourceforge.net/project/pcre/pcre/8.37/pcre-8.37.tar.gz tar -zxvf pcre-8.37.tar.gz cd /usr/src/pcre-8.37 ./configure               //因为报错 error: you need a c++ complier for ,需要提前运行 […]

【flatsome】flatsome 如何把喜欢的产品调到首页显示.

【flatsome】flatsome 如何把喜欢的产品调到首页显示. 123456789[ux_products products="14" show="featured"] [ux_products products="8" orderby="sales"] [ux_product_categories number="20"] 1. 新建Blocks 123456browse-our-catalogues                               granite-vanity-top-catalogues                       marble-vanity-top-catalogues                         granite-countertop-catalogues   […]

【Google Analytics】创建 Google Analytics谷歌分析账号

【Google Analytics】创建 Google Analytics谷歌分析账号 登陆google analytics. 1https://analytics.google.com/analytics/web/ 点左下角 “管理” 点 “建立账户” 输入 域名 “us.chinastonetops.com” 输入 域名 “us.chinastonetops.com” —>继续 人数选择 1人,服务全部打勾. 我接受服务 打勾,—> 我接受. 如果还有 cn.chinastonetops.com 账号需要创建时,重新再走一遍以上步骤.

【Google Analytics】删除Google Analytics谷歌分析账号 及误删后如何恢复

【Google Analytics】删除Google Analytics谷歌分析账号 及误删后如何恢复 1、打开准备删除的Google Analytics账号 2、点击左下角的管理  3、选中要 删除的账号 4、点击账号设置 5、点击右上角移入回收站 6、请再次确认是否要删除账号。 点击丢弃账号,Google Analytics账号便会被删除。  7、显示账号已经被删除了.  8、邮箱也收到删除账号的邮件. 9、删掉的账号会在回收站里保存35天,35天内还可以恢复。如果35天内没有手动恢复,系统会将其永久删除。 如果要恢复,请按下图操作。点击回收站>勾选要恢复的账号>点击恢复

查看firewalld状态时看到警报,但警报不完整.可以试着加 -l.查看完整信息

查看firewalld状态时看到警报,但警报不完整.可以试着加 -l.查看完整信息 1systemctl status firewalld.service 返回如下信息: 1234567891011May 15 21:35:10 iZj6chcc2jvdlwsb68u7dzZ firewalld[639]: WARNING: COMMAND_FAILED: ‘/usr/sbin/iptables -w10 -t filter -X DOCKER-ISOLATION-STAGE-1’ failed: iptables: No…that name May 15 21:35:10 iZj6chcc2jvdlwsb68u7dzZ firewalld[639]: WARNING: COMMAND_FAILED: ‘/usr/sbin/iptables -w10 -w –table filter –delete INPUT –in-interface virbr0 –pr…t chain?) May 15 21:35:10 iZj6chcc2jvdlwsb68u7dzZ firewalld[639]: WARNING: COMMAND_FAILED: ‘/usr/sbin/iptables -w10 -t filter -F DOCKER-ISOLATION-STAGE-2’ failed: […]

解决docker 报错 “WARNING: AllowZoneDrifting is enabled”

解决docker 报错 “WARNING: AllowZoneDrifting is enabled” 1systemctl status firewalld.service   时弹出如下报错. 提示警告: 1WARNING: AllowZoneDrifting is enabled. This is considered an insecure configuration option. It will be removed in a future release. 解决办法: 1vi /etc/firewalld/firewalld.conf 1//搜索:AllowZoneDrifiting  , 把对应的值 yes  改为 no 1systemctl restart firewalld

Nginx反向代理实现docker容器域名解析 —失败.

Nginx反向代理实现docker容器域名解析 —失败. 备注: 1、容器内安装 lnmp1.6 ,千万别装 lnmp1.8,否则会引起容器内无法通信的问题(6-1、6-2、). phpmyadmin 可以从别的地方移过来 2、8.218.77.154:8092 一直正常,但 web1.bndstone.com 却一直不正常,不知道是哪里设置错了. 123https://blog.csdn.net/lunan/article/details/108639626 https://blog.51cto.com/u_11739124/3012176?b=totalstatistic https://blog.csdn.net/qq_34200979/article/details/123016644 实现如下: 12web1.bndstone.com    —>  docker 1 虚拟机. web2.bndstone.com    —>  docker 2 虚拟机. 1、域名解析: 12A记录  —>  web1.bndstone.com  —> 8.218.77.154 A记录  —>  web1.bndstone.com  —> 8.218.77.154 2、创建两个docker 容器. 2-1、创建容器 1 123docker run –name centos7 –privileged  -d -e "container=docker" -p 8091:22 -p […]