随笔分类 - 安装soft
摘要:docker-compose version: "3" services: minio: image: minio/minio:latest container_name: minio restart: always ports: - "9000:9000" - "9090:9090" volume
阅读全文
摘要:启动rabbitmq docker run -d --name rabbitmq --restart always -p 15672:15672 -p 5672:5672 rabbitmq:latest docker ps -a #查看运行的容器 docker exec -it rabbitmq /
阅读全文
摘要:linux安装nginx 手动安装 官网下载倒数第二新的包:https://nginx.org/en/download.html 我这里下载的是:nginx-1.24.0.tar.gz 安装nginx需要很多的依赖,可以用该文章里面的检测依赖方式试试,反正是缺啥补啥好了(https://blog.c
阅读全文
摘要:SpringBoot集成MQTT(简单版) 一、docker安装emqx环境(Linux系统) emqx:mqtt服务器(broker) version: '3' services: emqx: image: emqx/emqx container_name: emqx restart: alway
阅读全文
摘要:环境 centos7 下载镜像 wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-14.10.5-ce.0.el7.x86_64.rpm # 如果服务器提示‘--no-check-certificate’,需要
阅读全文
摘要:下载包 官网下载 3.X 的包 启动项目 1、解压,目录etcf下properties 修改端口 2、启动nexus需要指定用户,这边直接修改 /etc/profile ,在最下面加上 export RUN_AS_USER=root 指定root启动就好了,虽然官网不建议,但是不影响; 3、bin目
阅读全文
摘要:### maven 查询maven依赖版本信息地址:https://mvnrepository.com/ 管理庞大的jar包; 构建项目(依赖、打包、部署); 阿里云镜像仓库 ```shell nexus-aliyun central Nexus aliyun http://maven.aliyun
阅读全文
摘要:docker 安装启动 minio 用最新版的minio总感觉有问题 推荐使用 docker pull minio/minio 下面的演示都是用的这个 无法连接外网安装启动 docker search minio/minio # 搜不到 那就随便找个能搜到docker minio镜像的地方,打包,上
阅读全文
摘要:1、清除缓存数据 如果安装了tortiseSVN ,那就找个文件夹右键->设置->已保存的数据->清除; 未安装就去目录删文件,一般都在C盘 用户目录 C:\用户\AppData\Roaming\Subversion\auth,删除svn.simple、svn.ssl.server文件夹里面的东西
阅读全文
摘要:安装python虚拟环境并启动python应用 安装虚拟环境 # 安装virtualenv虚拟环境工具 pip37为python命令 安装python应用时创建的 /usr/bin/pip37 pip37 install virtualenv # 安装python解析器 pip37 install
阅读全文
摘要:Linux 安装 python3.7.13 以下例子服务器为:centos7 官网下载安装包 https://www.python.org/downloads/ 上传到服务器 # 我是把包放在了 /usr/local 下 Python-3.7.13.tgz # 安装依赖 yum install zl
阅读全文
摘要:kkfileview 在线预览 码云下载地址:https://gitee.com/kekingcn/file-online-preview/releases windows版 kkFileView-4.0.0.zip 修改启动文件 原: @echo off set "KKFILEVIEW_BIN_F
阅读全文
摘要:git 安装 背景 centos7 1.官网linux下载https://git-scm.com/download/linux 2.解压 tar zxvf XXXXXX.tar.gz 3.进入到解压的文件里面 4.需要先安装编译需要的依赖,在进行源码的编译。 yum install curl-dev
阅读全文