09 2020 档案

摘要:安装基本的python3环境 参考:https://www.cnblogs.com/reblue520/p/12489897.html wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7. 阅读全文
posted @ 2020-09-28 17:05 reblue520 阅读(235) 评论(0) 推荐(0) 编辑
摘要:debian系统通过corkscrew代理软件进行ssh代理 虚拟机通过台式机上的ccproxy代理上网,安装软件什么的没有问题,后面ssh的时候没办法代理export ftp_proxy=http://10.11.0.148:808export socks_proxy="socks://10.11 阅读全文
posted @ 2020-09-25 16:57 reblue520 阅读(559) 评论(0) 推荐(0) 编辑
摘要:Dockerfile 编写Dockerfile [root@server01 docker]# cd /data/dockerfile/ [root@server01 dockerfile]# more Dockerfile FROM docker.io/dockerstudy007/nginx:c 阅读全文
posted @ 2020-09-23 10:32 reblue520 阅读(636) 评论(0) 推荐(0) 编辑
摘要:容器和虚拟化技术的对比 # 安装docker yum install -y yum-utils yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 列出所有doc 阅读全文
posted @ 2020-09-23 10:21 reblue520 阅读(358) 评论(0) 推荐(0) 编辑
摘要:1.下载安装windows的依赖vc++2015https://www.microsoft.com/en-us/download/details.aspx?id=481452.安装部署php7.2.33https://windows.php.net/download/下载地址:https://win 阅读全文
posted @ 2020-09-16 21:05 reblue520 阅读(324) 评论(0) 推荐(0) 编辑
摘要:创建负载均衡器 创建目标群组(即转发elb不同的端口请求到后端服务器) 通过负载均衡的侦听器关联目标群组 最终将域名的cname指向elb的dns名称上即可 购买tcp类型的负载均衡 开启端口转发 目标服务器 创建目标,开启健康检查80端口(http检测) 443端口的健康检查,实际走的是80口 阅读全文
posted @ 2020-09-16 20:44 reblue520 阅读(455) 评论(0) 推荐(0) 编辑
摘要:通过闪电下载工具从msdn I tell you下载的windows2019 en版本 光盘下载地址:https://msdn.itellyou.cn/ 闪电下载工具:http://bbs.xiaokanba.com/ 加载到虚拟光驱d: 下载地址:ed2k://|file|en_windows_s 阅读全文
posted @ 2020-09-16 20:08 reblue520 阅读(704) 评论(0) 推荐(0) 编辑
摘要:jenkins服务搭建在centos7中,golang代码需要部署到windows2019服务器中,需要在windows中安装 openssh服务,并配置能够免密码登录windows服务器,方便操作 1.安装好压软件,下载地址作为压缩包的解压和iso的虚拟光驱工具 http://haozip.234 阅读全文
posted @ 2020-09-16 19:51 reblue520 阅读(526) 评论(0) 推荐(0) 编辑
摘要:#!/bin/bash # source /etc/profile # 根据参数,执行进程的启动 停止 重启等 # 非apache用户运行脚本,则退出 if [ `whoami` != "apache" ];then echo " only apache can run me" exit 1 fi 阅读全文
posted @ 2020-09-11 16:23 reblue520 阅读(329) 评论(0) 推荐(0) 编辑
摘要:通过dockerfile制作基于centos8系统的nginx镜像在拉取docker默认的nginx镜像后发现是debian系统,每次更新软件都非常痛苦,于是想制作一个自定义的nginx系统作为替代默认的nginx镜像国内centos使用的人更多,yum源更加稳定,浪费一些空间和性能是可以接受的1. 阅读全文
posted @ 2020-09-04 20:11 reblue520 阅读(925) 评论(0) 推荐(0) 编辑
摘要:1.升级系统并重启 yum update -y && reboot # 安装docker最新版 yum install -y yum-utils yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/cent 阅读全文
posted @ 2020-09-04 20:07 reblue520 阅读(206) 评论(0) 推荐(0) 编辑
摘要:环境说明:在centos中已搭建一台jenkins服务器,因为要跑selenium ui测试,而centos下没有图形界面跑selenium比较难调试,需要在windows中创建一个jenkins node,作为跑ui测试的节点前提条件:已搭建jenkins服务 并在windows中安装好jdk和g 阅读全文
posted @ 2020-09-01 17:15 reblue520 阅读(618) 评论(0) 推荐(0) 编辑