搜索内容

Devops
  • CentOS下Redis部署记录(单机+主从+哨兵+集群)

    Redis简介 Redis是一个开源、高级的键值存储和一个适用的解决方案,用于构建高性能,可扩展的Web应用程序。它有三个主要特点,使其优越于其它键值数据存储系统……

    Joe.Ye 2023-02-26
    0 0
  • Windows下RocketMQ安装部署

    RocketMQ部署 快速开始:http://rocketmq.apache.org/docs/quick-start/ 官方下载:http://rocketmq.apache.org/release_notes/release-notes-4.4.0/ (1)选……

    Joe.Ye 2023-02-26
    0 0
  • CentOS下RocketMQ安装部署

    RocketMQ部署 快速开始:http://rocketmq.apache.org/docs/quick-start/ 官方下载:http://rocketmq.apache.org/release_notes/release-notes-4.4.0/ Downloa……

    Joe.Ye 2023-02-26
    0 0
  • CentOS下搭建Shadowsocks服务器

    安装Shadowsocks yum install python-setuptools && easy_install pip pip install shadowsocks 创建配置文件 vim /etc/shadowsocks.json { "……

    Joe.Ye 2023-02-26
    0 0
  • CentOS下ElasticSearch快速安装

    安装ElasticSearch wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.2.0.tar.gz tar -zxf elasticsearch-7.2.0.tar.gz -C /usr/l……

    Joe.Ye 2023-02-26
    0 0
  • 使用yum安装配置ElasticSearch

    安装 vim /etc/yum.repos.d/elasticsearch.repo [elasticsearch] name=Elasticsearch repository for 7.x packages baseurl=https://artifacts.elastic.co……

    Joe.Ye 2023-02-26
    0 0
  • CentOS下安装Python

    Python: https://www.python.org/downloads/ 安装 # wget https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tgz # yum install gcc make libffi-devel……

    Joe.Ye 2023-02-26
    0 0
  • CentOS 7 下修改 MySQL 数据库存放位置

    MySQL 安装后有默认的数据库存储路径,有时候因数据盘空间限制问题,我们需要将数据存储到空间较大的磁盘或目录下,因此需要修改 MySQL 数据存储路径。现将 My……

    Joe.Ye 2023-02-26
    0 0
  • Windows下MySQL安装及配置

    my.ini 配置 官方下载:http://dev.mysql.com/downloads/mirrors/ 复制 my-default.ini 为 my.ini [mysqld] explicit_defaults_for_timestamp = true basedir……

    Joe.Ye 2023-02-26
    0 0
  • Docker查看、导入、导出、删除容器

    查看容器 docker查看全部容器命令 docker ps -a 导出容器 导出某个容器,使用docker export命令,语法:docker export $container_id > 容器快照名 docker……

    Joe.Ye 2023-02-26
    0 0
  • Docker拷贝镜像文件

    概述 我们制作好镜像后,有时需要将镜像复制到另一台服务器使用。 能达到以上目的有两种方式,一种是上传镜像到仓库中(本地或公共仓库),但是另一台服务器很……

    Joe.Ye 2023-02-26
    0 0
  • Docker部署应用

    以部署投票应用example-voting-app为例 在管理节点获取docker-stack.yml 在宿主机: $ docker-machine scp example-voting-app/docker-stack.yml manager:/ho……

    Joe.Ye 2023-02-26
    0 0
  • Docker使用swarm创建集群

    初始化集群 docker swarm init --advertise-addr <MANAGER-IP> $ docker swarm init --advertise-addr 192.168.99.101 //初始化管理节点 Swarm initia……

    Joe.Ye 2023-02-26
    0 0
  • Docker Machine安装及使用

    安装 Docker Machine 参考:https://docs.docker.com/machine/install-machine/ CentOS: $ curl -L https://github.com/docker/machine/releases/download/v……

    Joe.Ye 2023-02-26
    0 0
  • 安装Docker报Transaction check error解决

    第二次安装Docker时,报Transaction check error 原因:老版本卸载不彻底,版本冲突 解决:卸载老版本 # yum list installed | grep docker containerd.io.x8……

    Joe.Ye 2023-02-26
    0 0