摘要:
本文将基于centos7搭建 predixy 的redis集群。流程如下: 1、下载编译好的predixy wget https://github.com/joyieldInc/predixy/releases/download/1.0.5/predixy-1.0.5-bin-amd64-linux 阅读全文
摘要:
本文将基于centos7搭建 twemproxy 的redis集群。流程如下: 1、安装twemproxy a、下载twemproxy: git clone https://github.com/twitter/twemproxy.git b、安装依赖: yum -y install autocon 阅读全文
摘要:
1、集群配置: node1、node2、node3 2、redis下载: wget https://download.redis.io/releases/redis-6.2.5.tar.gz 3、redis安装: #gcc 用于make 、tcl 用于 make test a、yum install 阅读全文
摘要:
本文将基于centos7搭建 keepalived 的高可用服务集群。流程如下 1、node1~node4安装centos7, 配置好网络。 /etc/sysconfig/network-scripts/ifcfg-eth0 TYPE=Ethernet PROXY_METHOD=none BROWS 阅读全文
摘要:
1.修改网卡配置 编辑:vi /etc/sysconfig/network-scripts/ifcfg-eth0,内容信息如下: DEVICE=eth0 #描述网卡对应的设备别名,例如ifcfg-eth0的文件中它为eth0 BOOTPROTO=static #设置网卡获得ip地址的方式,可能的选... 阅读全文
摘要:
一、配置ip ubuntu的网络配置信息放在 /etc/network/interfaces 中, 如果配置动态获取ip,则在上述文件中加入以下内容: auto eth0 iface eth0 inet dhcp 如果配置静态ip,则添加如下内容: auto eth0 iface eth0 ine... 阅读全文
摘要:
在终端中输入curl ipinfo.io或者curl ifconfig.me即可通过IP地址检测网站提供的api获得取本机的外网IP,或者以 JSON 格式返回全部结果。 阅读全文