The example of Docs layout.

ubuntu 安装 redis5 下载 下载页面: https://redis.io 安装编译环境 1sudo apt install build-essential 下载,编译和安装 1wget https://download.redis.io/releases/redis-5.0.12.tar.gz 2tar -xzvf redis-5.0.12.tar.gz 3cd redis-5.0.12 4make 5## PREFIX 可选,指定安装目录 6sudo make PREFIX=/home/zhangcong/dev/redis-5.0.12 install 7## 把 redis...

ubuntu 安装 redis7 下载 下载页面: https://redis.io 安装编译环境 1sudo apt install build-essential 下载,编译和安装 1wget https://download.redis.io/releases/redis-7.0.12.tar.gz 2sudo tar -xzf redis-7.0.12.tar.gz -C /data/src 3cd /data/src/redis-7.0.12 4 5 6## PREFIX 可选,指定安装目录 7sudo make PREFIX=/data/redis-7.0.12 install 修改 redis 配置 把 redis ...

ubuntu安装mysql8 二进制安装 1# 列出所有已安装的包: 2apt list --installed 3# 查询系统是否安装了mariadb: 4sudo dpkg -l | grep maria 5 6# 安装 mysql 依赖 7sudo apt install libaio1 libaio-dev libncurses5 libncurses5-dev 8 9# 下载 mysql-8.0.20-linux-glibc2.12-x86_64.tar.xz,然后解压到 /data 10tar -xvJf mysql-8.0.20-linux-glibc2.12-x86_64.tar.xz -C /data 11...

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 [服务名]