#!/bin/bash mkdir /etc/yum.repos.d/repo mv /etc/yum.repos.d/*.repo /etc/yum.repos.d/repo curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.ali ...
分类:
其他好文 时间:
2021-03-18 14:42:38
阅读次数:
0
使用docker在Linux下部署项目(以nginx + node示例) docker linux 安装: #sudo wget -qO- https://get.docker.com | sh -q标识安装时输出信息要简单,O-标识标准输出,而不是输出到文件 #sudo usermod -aG d ...
分类:
系统相关 时间:
2021-03-17 14:23:09
阅读次数:
0
问题原因在于官方在2020年12月2日正式将CentOS 6相关的软件源移出了官方源,随之而来逐级镜像也会陆续将其删除。 解决方案: curl -o /etc/yum.repos.d/CentOS-Base.repo https://www.xmpan.com/Centos-6-Vault-Aliy ...
分类:
Web程序 时间:
2021-03-17 14:13:50
阅读次数:
0
macOS下将GitHub中单个子文件夹下载到本地 参考博客:https://www.cnblogs.com/Hi-blog/p/9008932.html 命令行中使用homebrew安装subversion: brew install subversion 将子文件夹url地址中的tree/mas ...
分类:
系统相关 时间:
2021-03-11 20:50:05
阅读次数:
0
一.下载 1.直接使用wget命令: wget https://mirrors.bfsu.edu.cn/apache/zookeeper/zookeeper-3.6.2/apache-zookeeper-3.6.2-bin.tar.gz 2.到官网下载:https://zookeeper.apach ...
分类:
其他好文 时间:
2021-03-10 13:39:44
阅读次数:
0
GitLab官方搭建教程地址: https://about.gitlab.com/install/#ubuntu 1. 依赖包安装 sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates ...
分类:
其他好文 时间:
2021-03-05 13:25:21
阅读次数:
0
cd /opt/wget https://archive.apache.org/dist/rocketmq/4.2.0/rocketmq-all-4.2.0-bin-release.zipunzip rocketmq-all-4.2.0-bin-release.zip -d rocketmq-all ...
分类:
其他好文 时间:
2021-03-05 13:21:48
阅读次数:
0
安装 首先打开brew.sh网站,把首页一条命令复制到终端里,执行,输入电脑登录密码,开始下载安装 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" 换源 安 ...
分类:
系统相关 时间:
2021-03-05 13:12:52
阅读次数:
0
harbor:私人镜像仓库,搭建在本地可以对镜像起到一个远程存储和复用的用途 安装方式:docker-compose通过yaml 1、搜索harbor的github地址,通过点点点的方式找到harbor的安装压缩包 2、wget到本地,eg: wget https://github.com/goha ...
分类:
其他好文 时间:
2021-03-04 13:35:16
阅读次数:
0
概念 一个 tokenizer(分词器)接收一个字符流,将之割为独立的 tokens(词元,通常是独立的单词),然后输出 tokens流。 例如,whitespace tokenizer遇到空白字符时分割文。它会将文本 "Quick brown fox!“ 分割为 [Quick, brown, fo ...
分类:
其他好文 时间:
2021-03-03 12:23:40
阅读次数:
0