hosts

rancher安装k8s集群

北慕城南 提交于 2019-12-17 09:13:03
1配置环境 systemctl set-hostname master01 systemctl set-hostname master02 systemctl set-hostname node01 systemctl set-hostname node02 vi /etc/hosts 192.168.198.154 master01 192.168.198.155 master02 192.168.198.156 node01 192.168.198.157 node02 scp /etc/hosts root@master02:/etc/hosts scp /etc/hosts root@node01:/etc/hosts scp /etc/hosts root@node02:/etc/hosts 关闭swap swapoff -a vi /etc/fstab 关闭防火墙 iptables -F systemctl stop firewalld && systemctl disable firewalld 关闭selinux sed -i 's/enforcing/disabled/g' /etc/selinux/config; setenforce 0 2安装docker curl http://mirrors.aliyun.com/docker-ce/linux

Why does Microsoft Edge open some local websites, but not others, where the domain name is routed to 127.0.0.1 in hosts file

半世苍凉 提交于 2019-12-17 04:45:23
问题 Like a lot of programmers, I test sites locally. I use the hosts file to map domain names to my local ip (127.0.0.1). I use qualified domain names, usually with a "d" subdomain (for "development"). For example: d.somewebsite.com d.anotherwebsite.com and so on... In Microsoft edge, most of the web sites work. However, a couple of them do not. There is nothing special or weird about the domain names that won't work. Just a simple d.someletters.com . They work fine in Chrome, IE, and Firefox. In

Wildcards in a Windows hosts file

走远了吗. 提交于 2019-12-17 00:19:09
问题 I want to setup my local development machine so that any requests for *.local are redirected to localhost . The idea is that as I develop multiple sites, I can just add vhosts to Apache called site1.local , site2.local etc, and have them all resolve to localhost , while Apache serves a different site accordingly. I am on Windows XP. I tried adding 127.0.0.1 *.local to my c:\windows\system32\drivers\etc\hosts file, also tried: 127.0.0.1 .local Neither of which seem to work. I know I can set

修改电脑hosts文件

大兔子大兔子 提交于 2019-12-17 00:05:56
1.找到自己hosts文件所在位置进行修改 Windows 在开始屏幕搜索 “notepad”,右键选择 “以管理员身份运行” 记事本程序,按下 Ctrl+O 定位到 hosts 文件修改并直接保存。 OS X 在 Finder 窗口按下[前往][前往文件夹…],输入 /etc 回车,将 hosts 文件拖拽到桌面,双击修改保存,再将其拖拽回 /etc ,鉴定替换。 Linux 在终端运行命令 sudo gedit /etc/hosts 修改。 Android、iOS 使用 iFile 或其它文件管理器应用修改 /etc/hosts ,并照原样修改好权限和所有者。 2.推荐一个获取hosts的网址:奶齿:https://www.netsh.org/ 来源: https://www.cnblogs.com/liuyinghai87/p/7192649.html

Ubuntu启用IPv6上google的方法

我怕爱的太早我们不能终老 提交于 2019-12-16 21:58:31
IPv6就是我们通常所说的互联网协议,是TCP/IP的核心协议,那么在Linux下如何开启IPv6呢?下面以Ubuntu为例,给大家介绍下Ubuntu启用IPv6的方法。 方法:   $sudo apt-get install miredo   $ifconfig   在结果中应该能看见一个叫 teredo 的虚拟网卡。   $ ping6 ipv6.google.com   PING ipv6.google.com(2404:6800:8003::93) 56 data bytes   64 bytes from 2404:6800:8003::93: icmp_seq=2 ttl=57 time=910 ms.。。。。。。。。。。。。。。。。。。。。。。   现在您的浏览器应该可以访问 https://ipv6.google.com 了。   $sudo gedit /etc/hosts   把host列表拷贝进去,hosts列表发布地址:https://serve.netsh.org/pub/ipv6-hosts/   现在应该可以正常访问: http://www.youtube.com/   修改下防火墙设置:( 这一步一般不用)   $sudo gedit /etc/default/ufw   把IPV6=no 改成 yes   最后禁用/启用防火墙来使刚刚的改动生效:

GitHub访问速度慢的解决方法

故事扮演 提交于 2019-12-16 19:08:24
1. 打开 https://www.ipaddress.com/ 查询 github.global.ssl.fastly.net 和 github.com 两个地址 多查几次,选择一个稳定,延迟较低的 ip 按如下方式添加到host文件的最后面 2. host文件 windows系统的hosts文件的位置如下: C:\Windows\System32\drivers\etc\hosts mac/linux系统的hosts文件的位置如下: /etc/hosts 3. 重启浏览器,或刷新DNS缓存,告诉电脑hosts文件已经修改, linux/mac执行sudo /etc/init.d/networking restart命令; windows在cmd中输入ipconfig /flushdns命令即可。 4. github-production-release-asset-2e65be.s3.amazonaws.com 服务器的连接 在首次运行 react naticve 项目时, 遇到了如下的问题: Failed to connect to github-production-release-asset-2e65be.s3.amazonaws.com port 443: Operation time out Command /bin/sh failed with exit code

借助工具解决DNS污染

半世苍凉 提交于 2019-12-16 09:38:47
我第一次接触到DNS污染,是在GitHub上面进行学习的时候,发现头像加载出问题,加载失败,而且文档里面的图片也无法显示...... 百度了很多内容,差不多都试了一下,最终选择了使用DNS工具去解决 工具名称:DNScrypt 官网链接>>> 下载地址: Windows:https://github.com/opendns/dnscrypt-win-client 其他: 直接clone到本地并打开,相关的执行文件的目录为 /DNSCrypt/dnscrypt-proxy.exe,运行即可 其他解决方法(不详细讲述): 1、使用各种SSH加密代理,在加密代理里进行远程DNS解析,或者使用VPN上网。 2、修改hosts文件,操作系统中Hosts文件的权限优先级高于DNS服务器,操作系统在访问某个域名时,会先检测HOSTS文件,然后再查询DNS服务器。可以在hosts添加受到污染的DNS地址来解决D NS污染和DNS劫持。 3、通过一些软件编程处理,可以直接忽略返回结果是虚假IP地址的数据包,直接解决DNS污染的问题。 4、如果你是Firefox only用户,并且只用Firefox,又懒得折腾,直接打开Firefox的远程DNS解析就行了。在地址栏中输入: about:config 找到network.proxy.socks_remote_dns一项改成true。 来源: https

linux命令总结

て烟熏妆下的殇ゞ 提交于 2019-12-16 09:28:03
lunix命令 总结 1.vim编辑器 VI是Unix操作系统和类Unix操作系统中最通用的文本编辑器。 VIM编辑器是从VI发展出来的一个性能更强大的文本编辑器。可以主动的以字体颜色辨别语法的正确性,方便程序设计。VIM与VI编辑器完全兼容 1)一般模式 vim/vi 进入模式 yy: 复制光标当前行 y数字y 复制从当前行开始 多少hang 如: y3y p :粘贴 u: 撤销到上一步 dd: 删除当前行 d3d:删除光标开始3行,包括本行数据 yw:复制一个词 dw:删除一个词 x:相当于Delete 向后删除 X:相当于Backspace 先前删除 Shift+^ 移动到行头 Shitf+$ 移动到行尾 gg:移动到页头 G:移动到页尾 数字+G:移动到目标行 1+G表示移动页头 所有行的最前面 2)编辑模式 进入编辑模式的常用语法: i:当前光标前 a:当前光标后 o:当前光标的下一行 I:当前光标所在行最前 A:当前贯标所在行的最后 O:当前光标的后一行 退出编辑模式 Esc 3) 指令模式 基本语法 :w 保存 :q 退出 :! 强制执行 / 查找的词 n找下一个,N找下一个 ? 查找的词 n找上一个,N找上一个 setnu 显示行号 setnonu 取消行号 ZZ 表示文件修改后保存退出,没有修改直接退出 4) 模式间转换 2.网络配置,系统管理操作 1

六、用户角色及权限控制

こ雲淡風輕ζ 提交于 2019-12-14 07:07:31
一、用户角色 1、RabbitMQ的用户角色分类 none、management、policymaker、monitoring、administrator 2、RabbitMQ各类角色描述 none 不能访问 management plugin management 用户可以通过AMQP做的任何事外加: 列出自己可以通过AMQP登入的virtual hosts 查看自己的virtual hosts中的queues, exchanges 和 bindings 查看和关闭自己的channels 和 connections 查看有关自己的virtual hosts的“全局”的统计信息,包含其他用户在这些virtual hosts中的活动。 policymaker management可以做的任何事外加: 查看、创建和删除自己的virtual hosts所属的policies和parameters monitoring management可以做的任何事外加: 列出所有virtual hosts,包括他们不能登录的virtual hosts 查看其他用户的connections和channels 查看节点级别的数据如clustering和memory使用情况 查看真正的关于所有virtual hosts的全局的统计信息 administrator

createResolver() in twisted not working

橙三吉。 提交于 2019-12-14 02:46:17
问题 I have a simple proxy script where I use installResolver function to choose where the script reads its hosts file: from twisted.internet import reactor from twisted.web import proxy, server from twisted.python import log from twisted.names import client def createResolver(servers=None, resolvconf=None, hosts=None): if platform.getType() == 'posix': if resolvconf is None: resolvconf = b'/etc/resolv.conf' if hosts is None: hosts = b'/root/example' theResolver = Resolver(resolvconf, servers)