简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
虚拟机准备配置静态IP地址参考 https://tenten.blog.csdn.net/article/details/103684856# 首先需要配置静态IPmaster1 10.0.10.100 192.168.56.100worker110.0.10.100 192.168.56.101worker210.0.10.100 192.168.56.102# 两个网卡配置,可能名字会不同,配
使用node-media-server模块, flv.js 编写流媒体服务实现接收 rtmp流,播放用 http播放编写服务端安装node-media-server模块mkdir live-appcd live-appnpm init --yesnpm install node-media-server --save编写服务端代码single_app.jsconst NodeMediaServer
新版本的Python 都自带一个venv 模块,它可以很方便的管理我们的虚拟环境。比如我们有个项目叫 blogmkdir blogcd blogpython -m venv venv # 第一个venv是包名,第二个是创建虚环境名字source venv/bin/activate # linux进入虚拟环境# venv/Scripts\activate.bat #windows进入虚拟...
虚拟机准备配置静态IP地址参考 https://tenten.blog.csdn.net/article/details/103684856# 首先需要配置静态IPmaster1 10.0.10.100 192.168.56.100worker110.0.10.100 192.168.56.101worker210.0.10.100 192.168.56.102# 两个网卡配置,可能名字会不同,配
k8s 集群 容器镜像准备使用kubeadm部署k8s集群,所以k8s集群的所有核心组件均以pod运行、需要准备镜像,不然初始化的时候会自动下载,时间会很长。所有用到的镜像,已经上传到百度云中链接:https://pan.baidu.com/s/1LjApqxw44q-xX–05Rs8pw提取码:6666# 查看所需要的镜像kubeadm config images listW0804 17:55
设置全局的 git config --list用户名 git config --global user.name "nameVal"邮箱git config --global user.email "eamil@qq.com"git add—>暂存区git commit-----> 本地Git仓库分支master 默认分支git branch featu...
Harbor 企业级别的私人镜像仓库安装harbor前,确保已经安装dockerdocker-composeopensslpythoon2.7Harbor离线版安装下载地址https://github.com/goharbor/harbor/releaseshttps://github.com/goharbor/harbor/releases/download/v1.10.1/...
Go RedisGo语言连接Redis库,常用的库 redisgo 和 go-redishttps://github.com/gomodule/redigohttps://github.com/go-redis/redis新项目更建议直接使用go-redis,它对集群和哨兵模式支持更好gormhttp://gorm.book.jasperxu.com/crud.html#credigo 基本使用#
函数注释示例:def f(ham: 42, eggs: int = 'spam') -> "Nothing to see here":print("函数注释", f.__annotations__)print("参数值打印", ham, eggs)print(type(ham),type(eggs))f("www&
Docker File 常用指令FROM指定基础镜像FROM centos:7MAINTAINER: 指定作者/维护着MAINTAINER Tian Go <tiango@aliyun.com>RUN执行的命令RUN ["yum", "install", "httpd"]RUN yum install redisRUN ln -s /opt/bin/python3 /bin/pytho