码迷,mamicode.com
首页 >  
搜索关键字:curl hosts    ( 9220个结果
ElasticSearch实战系列十: ElasticSearch冷热分离架构
前言 本文主要介绍ElasticSearch冷热分离架构以及实现。 冷热分离架构介绍 冷热分离是目前ES非常火的一个架构,它充分的利用的集群机器的优劣来实现资源的调度分配。ES集群的索引写入及查询速度主要依赖于磁盘的IO速度,冷热数据分离的关键点为使用固态磁盘存储数据。若全部使用固态,成本过高,且存 ...
分类:其他好文   时间:2021-03-31 12:30:47    阅读次数:0
linux管道符与重定向
#将文件1作为命令的标准输入并将标准输出到文件2 cat <test.txt >test_copy.txt #将EOF之间的内容追加写入/etc/hosts cat >> /etc/hosts << EOF 172.16.127.35 prod-node1 172.16.127.36 prod-no ...
分类:系统相关   时间:2021-03-31 12:05:00    阅读次数:0
9.ansible 循环功能和忽略错误
在剧本中设置循环信息 vim test04.yml hosts: all remote_user: root tasks: name: Add Users user: name={{ item.name }} groups={{ item.groups }} state=present with_i ...
分类:其他好文   时间:2021-03-31 11:52:29    阅读次数:0
使用MyBatis逆向工程创建ssm项目步骤
1.pom.xml文件(主要是添加依赖和插件) <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XM ...
分类:其他好文   时间:2021-03-30 13:39:53    阅读次数:0
ansible_配置介绍
文档链接 https://docs.ansible.com/ansible/latest/reference_appendices/config.html 配置文件 [defaults] inventory = /etc/ansible/hosts sudo_user=root remote_por ...
分类:其他好文   时间:2021-03-30 13:37:18    阅读次数:0
python操作hdfs
import contextlib import pyhdfs class HdfsUtil(object): def __init__(self, hosts='namenode1:9870,namenode2:9870', user_name='hdfs'): self.hosts = host ...
分类:编程语言   时间:2021-03-30 13:29:22    阅读次数:0
Docker-compose安装
1、下载docker-compose sudo curl -L "https://github.com/docker/compose/releases/download/1.28.6/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/ ...
分类:其他好文   时间:2021-03-29 11:40:39    阅读次数:0
curl http3
Build quiche and BoringSSL: % git clone --recursive https://github.com/cloudflare/quiche % cd quiche % cargo build --release --features ffi,pkg-config ...
分类:Web程序   时间:2021-03-29 11:40:19    阅读次数:0
Cenots7 初始化 必装的yum 软件包
#!/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
github无法访问,hostip
决方案: Cd到文件位置:C:\Windows\System32\drivers\etc\hosts 输入以下内容: 日期:2021/3/15 搜查到新的地址和IP 已经实时更新! #GitHub Start 140.82.112.3 github.com 140.82.114.4 gist.git ...
分类:其他好文   时间:2021-03-18 14:09:26    阅读次数:0
9220条   上一页 1 ... 8 9 10 11 12 ... 922 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!