上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页
摘要: 在日常的工作中运维通常会安装各种各样的应用服务,例如:Nginx、httpd、MySQL 等。如果我们是用 yum 来安装,通常情况下 RPM 包的作者已经帮助我们写好了服务的启动脚本。我们在使用启动脚本的过程中几乎都会看到以下提示信息,提示我们服务是否启动成功。 上图所看到的样式,在 CentOS 阅读全文
posted @ 2020-10-01 09:41 pwcc 阅读(1027) 评论(0) 推荐(0)
摘要: http://edu.51cto.com/center/course/lesson/index?id=75565 1 网关:就是到其他网段的出口。 左边的IP网关必须设置成192.168.10.1 右边的IP的网关必须设置成192.168.20.1 2 静态路由:由管理员添加告诉它怎么走 动态路由: 阅读全文
posted @ 2020-09-30 20:56 pwcc 阅读(278) 评论(0) 推荐(0)
摘要: iptables -t mangle -A PREROUTING -p tcp -m tcp --dport ftp -j MARK --set-mark 2上面这句话中 -m可以匹配一遍tcp协议,那么为什么还要-p在匹配一遍tcp协议呢? 两者不矛盾吗? iptables可以使用扩展模块来进行数 阅读全文
posted @ 2020-09-29 21:47 pwcc 阅读(212) 评论(0) 推荐(0)
摘要: 什么是内网?内网接入方式:上网的计算机得到的IP地址是Inetnet上的保留地址,保留地址有如下3种形式:10.x.x.x172.16.x.x至172.31.x.x192.168.x.x内网的计算机以NAT(网络地址转换)协议,通过一个公共的网关访问Internet。内网的计算机可向Internet 阅读全文
posted @ 2020-09-29 21:09 pwcc 阅读(1318) 评论(0) 推荐(0)
摘要: 1.VPN应⽤用场景 2.VPN服务端配置 实验环境介绍 环境准备 [root@vpn-server ~]# systemctl stop firewalld [root@vpn-server ~]# systemctl disable firewalld [root@vpn-server ~]#  阅读全文
posted @ 2020-09-29 20:52 pwcc 阅读(3) 评论(0) 推荐(0)
摘要: 一、nginx 负载均衡配置 一、 nginx 负载均衡配置 修改 nginx 的配置文件,重点内容如下: http { include /etc/nginx/conf.d/*.conf; upstream iivey { server 172.16.213.232:8080 weight=1; s 阅读全文
posted @ 2020-09-28 22:21 pwcc 阅读(221) 评论(0) 推荐(0)
摘要: 1,安装前准备工作 安装前最少准备3台主机 2,关闭 SELinux # 通过命令临时禁用 SELinux setenforce 0 # 或者修改配置文件 sed -i 's/^SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config 3,关 阅读全文
posted @ 2020-09-26 18:17 pwcc 阅读(1379) 评论(0) 推荐(0)
摘要: 200 - OK,服务器成功返回网页 - Standard response for successful HTTP requests. 301 - Moved Permanently(永久跳转),请求的网页已永久跳转到新位置。 - This and all future requests shou 阅读全文
posted @ 2020-09-24 21:28 pwcc 阅读(243) 评论(0) 推荐(0)
摘要: 1,安装事先准备: 1-1,cmake软件 cd /home/oldboy/tools tar xf cmake-2.8.8.tar.gz cd cmake-2.8.8 ./configure gmake gmake install cd ../ 1-2,依赖包 yum install ncurse 阅读全文
posted @ 2020-09-23 22:03 pwcc 阅读(171) 评论(0) 推荐(0)
摘要: Mysql 不同版本市场占有比例 mysql 5.1 20% mysql 5.5 60% mysql5.6 20% 一般公司用的是社区版: MySQL Community Edition(GPL) Community (GPL) Downloads » 下载链接:https://dev.mysql. 阅读全文
posted @ 2020-09-23 21:45 pwcc 阅读(467) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 24 下一页