上一页 1 2 3 4 5 6 ··· 15 下一页
摘要: Centos 7 编译安装Python 环境准备 操作系统:Centos 7 版本:Python 3.12 下载 wget https://www.python.org/ftp/python/3.12.0/Python-3.12.0.tgz 编译安装 # 安装依赖 yum -y install gc 阅读全文
posted @ 2023-11-21 08:43 Jruing 阅读(205) 评论(0) 推荐(0) 编辑
摘要: Centos 7 安装Mongodb社区版 准备环境 操作系统:Centos 7 安装包:https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-7.0.3.tgz windows 可视化工具:Studio 3T(原robot 3t) 阅读全文
posted @ 2023-11-10 15:03 Jruing 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 准备工作 操作系统:Centos 7.6 容器环境:Docker 所需工具:kubectl,minikube 安装Docker # 安装yum工具包 yum -y install yum-utils # 添加yum源 yum-config-manager --add-repo http://mirr 阅读全文
posted @ 2023-11-02 15:34 Jruing 阅读(33) 评论(0) 推荐(0) 编辑
摘要: ServerLess学习笔记-搭建FnProject示例 初始化函数目录 # 初始化 fn_demo1 [root@VM-24-9-centos serverless]# fn init --runtime python fn_demo1 Creating function at: ./fn_dem 阅读全文
posted @ 2023-10-23 10:09 Jruing 阅读(13) 评论(0) 推荐(0) 编辑
摘要: ServerLess学习笔记-FnProject常用命令 启动/停止 # 启动 fn start # 停止 fn stop 创建 [root@VM-24-9-centos serverless]# fn create MANAGEMENT COMMAND fn create - Create a n 阅读全文
posted @ 2023-10-23 10:08 Jruing 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ServerLess学习笔记-搭建FnProject 介绍 官方文档:https://fnproject.io/tutorials/ Fn 是一个事件驱动的开源功能即服务 FaaS计算平台,您可以在任何地方运行,它的一些主要特点 开源 原生 Docker:使用任何 Docker 容器作为你的函数 支 阅读全文
posted @ 2023-10-23 10:08 Jruing 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 准备工作 订阅号:1个,可以申请一个测试(https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login),一般不被举报是不会过期的 服务器:1个 步骤 前置工作 保存测试号信息 appID 和 appsecret 用微信扫码关注测试号的 阅读全文
posted @ 2023-10-09 14:57 Jruing 阅读(74) 评论(0) 推荐(0) 编辑
摘要: ## 下载 https://download.redis.io/redis-stable.tar.gz ## 部署 1. 上传解压 ``` tar -zxvf redis-stable.tar.gz ``` 2. 编译安装 ```sh cd redis-stable make && make ins 阅读全文
posted @ 2023-08-31 15:35 Jruing 阅读(95) 评论(0) 推荐(0) 编辑
摘要: ``` /** * 复制单行内容到粘贴板 * content : 需要复制的内容 * message : 复制完后的提示,不传则默认提示"复制成功" */ function copyToClip(content, message) { var aux = document.createElement 阅读全文
posted @ 2023-08-11 09:54 Jruing 阅读(53) 评论(0) 推荐(0) 编辑
摘要: > Sequence: 根据指定的规范生成整数序列 ## ## 创建序列 ```sql CREATE [ TEMPORARY | TEMP ] SEQUENCE name [ INCREMENT [ BY ] increment ] [ MINVALUE minvalue | NO MINVALUE 阅读全文
posted @ 2023-07-25 11:30 Jruing 阅读(182) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 15 下一页