The example of Docs layout.

SQLite 教程 下载 下载地址 https://www.sqlite.org/download.html https://mac.filehorse.com/download-sqlite/ osx 系统已经自带了sqlite SQLite 创建数据库 如果您想创建一个新的数据库 <testDB.db>,SQLITE3 语句如下所示: 1$ sqlite3 testDB.db 2SQLite version 3.7.15.2 2013-01-09 11:53:05 3Enter ".help" for instructions 4Enter SQL statements terminated with a ";"...

maven 操作指南 maven 把 jar 包安装到本地仓库 在cmd中安装指定文件到本地仓库命令: 1mvn install:install-file -DgroupId=${group_id} -DartifactId=${artifact_id} -Dversion=${version} -Dpackaging=jar -Dfile=${file_path} 参数说明: 1-DgroupId=<groupId> : 设置项目代码的包名(一般用组织名) 2-DartifactId=<artifactId> : 设置项目名或模块名 3-Dversion=<version> : 版本号 4-Dpackaging=jar : 什么...

android 反编译 apk 文档及下载地址 https://ibotpeaches.github.io/Apktool/install/ 下载执行脚本 windows: https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool linux: https://raw.githubusercontent.com/iBotPeaches/Apktool/master/scripts/linux/apktool 下载最新的 apktool_x.x.x.jar 下载地址:...

RocketMQ的安装和启动 进入rocketmq安装目录 启动 1# 创建日志目录 2mkdir logs 3 4# 启动 NameServer 5# 查看日志,看到 'The Name Server boot success..',表示 NameServer 已成功启动 6nohup sh bin/mqnamesrv >logs/mqnamesrv.log 2>&1 & 7 8# 启动 Broker 9# 查看日志,看到 “The broker[brokerName,ip:port] boot success..”,表明 broker 已成功启动 10nohup sh bin/mqbroker -n...

菩提本无树,明镜亦非台,本来无一物,何处惹尘埃。

influxdb 2.0.3 的安装与配置 下载地址: https://dl.influxdata.com/influxdb/releases/influxdb2-2.0.3_linux_amd64.tar.gz 官方文档: https://docs.influxdata.com/influxdb/v2.0/install/ 安装 1### 解压 2[root@jyzbdb2 soft]# tar -zxf influxdb2-2.0.3_linux_amd64.tar.gz 3 4### 设置环境变量 5[root@jyzbdb2 influxdb2-2.0.3_linux_amd64]# vim /etc/profile...

windows 安装 redis5 下载地址 https://github.com/tporadowski/redis 服务的安装和卸载 网上说,redis5及以下的版本可以安装成服务,但是redis6不行;未测试 1## 安装服务: 2redis-server.exe --service-install --service-name [服务名] 3 4## 卸载服务: 5redis-server.exe --service-uninstall --service-name [服务名]

MinIO 云存储客户端基本操作 参考文档 https://docs.min.io/cn/minio-quickstart-guide.html https://www.minio.org.cn/docs/minio/kubernetes/upstream/index.html https://blog.csdn.net/mikelv01/article/details/108757698 MINIO SERVER 的下载、安装和启动 1wget https://dl.min.io/server/minio/release/linux-amd64/minio 2chmod +x minio 3 4# linux 通过指定的用户名和...

redis6 集群搭建 文档 https://www.jianshu.com/p/7d5fbf90bcd7 https://blog.csdn.net/qq_35937724/article/details/106906244 https://www.cnblogs.com/riches/p/15106238.html 下载 下载地址:http://download.redis.io/releases 下载Redis 最新稳定版:http://download.redis.io/releases/redis-6.2.6.tar.gz 安装编译器 1yum groupinstall 'Development Tools' -y 编译...

centos7 安装 redis5 文档 https://www.bbsmax.com/A/8Bz8gvMxdx/ 安装开发工具 1yum groupinstall 'Development Tools' -y 下载 redis 1wget http://download.redis.io/releases/redis-5.0.9.tar.gz 解压到 /data 目录下 1tar -zxf redis-5.0.9.tar.gz -C /app 编译 1cd /app/redis-5.0.9 2make 安装 1make install 上述为默认安装,将会把编译得到的可执行文件拷贝到/usr/local/bin目录下。 如果要指...