中文亚洲精品无码_熟女乱子伦免费_人人超碰人人爱国产_亚洲熟妇女综合网

當(dāng)前位置: 首頁 > news >正文

湖南網(wǎng)站建設(shè)小公司排名黃岡seo顧問

湖南網(wǎng)站建設(shè)小公司排名,黃岡seo顧問,網(wǎng)站建設(shè)需要攤銷多久,做寫真網(wǎng)站的限度《HA網(wǎng)卡確認(rèn)方法》 1 HA IP地址類型2HA IP地址設(shè)置原則3 HA網(wǎng)卡日常查看方法3.1 查看hosts文件3.2 查看網(wǎng)卡和IP 4 通過命令方式直接查看5 直接查看HA配置4 HA網(wǎng)卡SMIT查看方法(暫不完整)4.1 根據(jù)hosts文件確認(rèn)IP對(duì)應(yīng)的別名4.2 根據(jù)serviceIP確認(rèn)Persis…

《HA網(wǎng)卡確認(rèn)方法》

  • 1 HA IP地址類型
  • 2HA IP地址設(shè)置原則
  • 3 HA網(wǎng)卡日常查看方法
    • 3.1 查看hosts文件
    • 3.2 查看網(wǎng)卡和IP
  • 4 通過命令方式直接查看
  • 5 直接查看HA配置
  • 4 HA網(wǎng)卡SMIT查看方法(暫不完整)
    • 4.1 根據(jù)hosts文件確認(rèn)IP對(duì)應(yīng)的別名
    • 4.2 根據(jù)serviceIP確認(rèn)Persistent IP的網(wǎng)絡(luò)
    • 4.3 根據(jù)Persistent IP的網(wǎng)絡(luò)得到Persistent IP

1 HA IP地址類型

IP類型標(biāo)識(shí)全稱說明配置
boot ipboot_ip真實(shí)IP,物理IPboot一般在計(jì)算機(jī)中指的是引導(dǎo)。這里指的是,操作系統(tǒng)裝入的IP地址,即物理網(wǎng)卡IP地址。配置網(wǎng)卡
Persistent IPper_ip永久IPPersistent 是持續(xù)的意思。這里是指一直在一臺(tái)服務(wù)器上的IP地址。配置Persistent IP
Service IPser_ip服務(wù)IP,浮動(dòng)IPService是提供服務(wù)的意思。這里指應(yīng)用訪問的IP地址。配置Service IP

2HA IP地址設(shè)置原則

序號(hào)原則
1HA集群每臺(tái)服務(wù)器配置兩個(gè)物理網(wǎng)卡,即使用兩個(gè)物理網(wǎng)卡IP作為boot_IP。
2HA集群每臺(tái)服務(wù)器配置一個(gè)永久IP,即per_IP。依附在其中一個(gè)boot_IP。
3HA集群只有一個(gè)服務(wù)IP,即ser_ip。存在于集群的某臺(tái)服務(wù)器。
4服務(wù)IP所在的服務(wù)器,同樣依附在其中一個(gè)boot_IP上,且可與永久IP分布在不同的boot_ip。
5HA集群服務(wù)器的一個(gè)boot_IP網(wǎng)卡down掉后,依附其上的per_IP和ser_IP會(huì)切換至另一個(gè)up的網(wǎng)卡。
6A集群服務(wù)器的兩個(gè)boot_IP網(wǎng)卡都down掉后,per_IP將down掉,ser_IP才會(huì)切換至備機(jī)。

3 HA網(wǎng)卡日常查看方法

HA 集群配置規(guī)范,hosts別名不存在異議,且不存在多個(gè)物理網(wǎng)卡的情況下,一般可用下列方法確認(rèn)網(wǎng)卡。

3.1 查看hosts文件

1、查看主機(jī)名對(duì)應(yīng)的IP地址。
2、查看節(jié)點(diǎn)名對(duì)應(yīng)的IP地址。

$ cat /etc/hosts
100.1.0.1       test1_boot1  test1
100.1.0.2       test2_boot1  test2
192.168.0.1     test1_boot2
192.168.0.2     test2_boot2
10.1.0.1        test1_svc
10.1.0.2        test2_svc
10.1.0.5        test1_per
10.1.0.6        test2_per

說明:一般**_per為真實(shí)IP,**_svc為服務(wù)IP,或稱serviceIP

3.2 查看網(wǎng)卡和IP

$ ifconfig -a
$ netstat -in

4 通過命令方式直接查看

1、通過以下方式可以查看

$ cat /etc/hosts
196.141.100.110       tredb01_boot1  tredb01
196.141.100.100       tredb02_boot1  tredb02
196.141.10.110     tredb01_boot2
196.141.10.100     tredb02_boot2
18.6.6.4         tredb02_svc
18.6.6.5         tredb01_per  db1
18.6.6.6         tredb02_per  db2
$ cllsif
Adapter              Type       Network    Net Type   Attribute  Node       IP Address       Hardware Address Interface Name   Global Name      Netmask          Alias for HB Prefix Lengthhdiskpower0_01       service    net_diskhb_01 diskhb     serial     tredb01    /dev/hdiskpower0                  hdiskpower0                                             
tredb01_boot1        boot       net_ether_01 ether      public     tredb01    196.141.100.110                   en0                         255.255.255.224             27
tredb01_boot2        boot       net_ether_01 ether      public     tredb01    196.141.10.110                    en4                         255.255.255.224             27
tredb02_ser          service    net_ether_01 ether      public     tredb01    18.6.6.4                                                      255.255.255.224             27
hdiskpower0_02       service    net_diskhb_01 diskhb     serial     tredb02    /dev/hdiskpower0                  hdiskpower0                                             
tredb02_boot2        boot       net_ether_01 ether      public     tredb02    196.141.10.100                    en4                         255.255.255.224             27
tredb02_boot1        boot       net_ether_01 ether      public     tredb02    196.141.100.100                   en0                         255.255.255.224             27
tredb02_ser          service    net_ether_01 ether      public     tredb02    18.6.6.4                                                      255.255.255.224             27
$ cllscf
Cluster Name: tredb
Cluster Connection Authentication Mode: Standard
Cluster Message Authentication Mode: None
Cluster Message Encryption: None
Use Persistent Labels for Communication: No
There were 2 networks defined : net_diskhb_01, net_ether_01
There are 2 nodes in this cluster.NODE tredb01:This node has 2 service IP label(s):Service IP Label hdiskpower0_01:IP address:     /dev/hdiskpower0Hardware Address:       Network:        net_diskhb_01Attribute:      serialAliased Address?:       DisableService IP Label hdiskpower0_01 has no communication interfaces.Service IP Label hdiskpower0_01 has no communication interfaces for recovery.Service IP Label tredb02_ser:IP address:     18.6.6.4Hardware Address:       Network:        net_ether_01Attribute:      publicAliased Address?:       EnableService IP Label tredb02_ser has 2 communication interfaces.(Alternate Service) Communication Interface 1: tredb01_boot1IP address:     196.141.100.110Network:        net_ether_01Attribute:      publicAlias address for heartbeat:    (Alternate Service) Communication Interface 2: tredb01_boot2IP address:     196.141.10.110Network:        net_ether_01Attribute:      publicAlias address for heartbeat:    Service IP Label tredb02_ser has no communication interfaces for recovery.This node has 1 persistent IP label(s):Persistent IP Label tredb01_per:IP address:     18.6.6.5Network:        net_ether_01NODE tredb02:This node has 2 service IP label(s):Service IP Label hdiskpower0_02:IP address:     /dev/hdiskpower0Hardware Address:       Network:        net_diskhb_01Attribute:      serialAliased Address?:       DisableService IP Label hdiskpower0_02 has no communication interfaces.Service IP Label hdiskpower0_02 has no communication interfaces for recovery.Service IP Label tredb02_ser:IP address:     18.6.6.4Hardware Address:       Network:        net_ether_01Attribute:      publicAliased Address?:       EnableService IP Label tredb02_ser has 2 communication interfaces.(Alternate Service) Communication Interface 1: tredb02_boot2IP address:     196.141.10.100Network:        net_ether_01Attribute:      publicAlias address for heartbeat:    (Alternate Service) Communication Interface 2: tredb02_boot1IP address:     196.141.100.100Network:        net_ether_01Attribute:      publicAlias address for heartbeat:    Service IP Label tredb02_ser has no communication interfaces for recovery.This node has 1 persistent IP label(s):Persistent IP Label tredb02_per:IP address:     18.6.6.6Network:        net_ether_01Breakdown of network connections:Connections to network net_diskhb_01Node tredb01 is connected to network net_diskhb_01 by these interfaces: hdiskpower0_01Node tredb02 is connected to network net_diskhb_01 by these interfaces: hdiskpower0_02Connections to network net_ether_01Node tredb01 is connected to network net_ether_01 by these interfaces: tredb01_boot1tredb01_boot2tredb02_sertredb01_perNode tredb02 is connected to network net_ether_01 by these interfaces: tredb02_boot2tredb02_boot1tredb02_sertredb02_per

5 直接查看HA配置

# smit hacmp
1、選擇 --> Initialization and Standard Configuration
2、選擇 --> Display HACMP Configuration
Command: OK            stdout: yes           stderr: noBefore command completion, additional instructions may appear below.Cluster Name: tredb
Cluster Connection Authentication Mode: Standard
Cluster Message Authentication Mode: None
Cluster Message Encryption: None
Use Persistent Labels for Communication: No
There are 2 node(s) and 2 network(s) definedNODE tredb01:Network net_diskhb_01hdiskpower0_01  /dev/hdiskpower0Network net_ether_01tredb02_ser     18.6.6.4tredb01_boot1   196.141.100.110tredb01_boot2   196.141.10.110NODE tredb02:Network net_diskhb_01hdiskpower0_02  /dev/hdiskpower0Network net_ether_01tredb02_ser     18.6.6.4tredb02_boot2   196.141.10.100tredb02_boot1   196.141.100.100Resource Group tredbrgStartup Policy   Online On Home Node OnlyFallover Policy  Fallover To Next Priority Node In The ListFallback Policy  Never FallbackParticipating Nodes      tredb01 tredb02Service IP Label                 tredb02_serTotal Heartbeats Missed:        42
Cluster Topology Start Time:    02/10/2023 22:07:38

4 HA網(wǎng)卡SMIT查看方法(暫不完整)

4.1 根據(jù)hosts文件確認(rèn)IP對(duì)應(yīng)的別名

$ cat /etc/hosts
100.1.22.1       test1_boot1  test1
100.1.22.2       test2_boot1  test2
192.168.22.1     test1_boot2
192.168.22.2     test2_boot2
10.1.22.1        test1_svc
10.1.22.5        test1_per  db1
10.1.22.6        test2_per  db2

4.2 根據(jù)serviceIP確認(rèn)Persistent IP的網(wǎng)絡(luò)

# smit hacmp
1、選擇 --> Initialization and Standard Configuration
2、選擇 --> Configure Resources to Make Highly Available
3、選擇 --> Configure Service IP Lables/Addresses
4、選擇 --> Add a Service IP Lable/Address
添加db1_svc,選擇網(wǎng)絡(luò) net_ether_01
“IP Lable/Address”選擇test1_svc

確認(rèn)獲取網(wǎng)絡(luò)為net_ether_01
在這里插入圖片描述
在這里插入圖片描述

4.3 根據(jù)Persistent IP的網(wǎng)絡(luò)得到Persistent IP

# smit hacmp
1、選擇 --> Initialization and Standard Configuration
2、選擇 --> Configure Resources to Make Highly Available
3、選擇 --> Configure Persistent Node IP Lables/Addresses
4、選擇 --> Add a Persistent Node IP Lable/Address
5、兩個(gè)節(jié)點(diǎn)分別按規(guī)劃配置。先配置節(jié)點(diǎn)db1
6、配置
“Network Name”net_ether_01
“Node IP Lable/Address”選擇db1
“Netmask”填寫255.255.255.0

確認(rèn)網(wǎng)絡(luò)為net_ether_01的Persistent IP為db1
在這里插入圖片描述
在這里插入圖片描述

http://www.risenshineclean.com/news/1062.html

相關(guān)文章:

  • 網(wǎng)站建設(shè)服務(wù)聯(lián)享科技信息流廣告
  • 有沒有個(gè)人網(wǎng)站百度站長(zhǎng)平臺(tái)鏈接提交
  • web開發(fā)基礎(chǔ)期末自測(cè)題答案代哥seo
  • 百度網(wǎng)盟網(wǎng)站有哪些企業(yè)營銷型網(wǎng)站
  • php成品網(wǎng)站推廣網(wǎng)站排名
  • 個(gè)人備案域名可以做哪些網(wǎng)站嗎學(xué)軟件開發(fā)學(xué)費(fèi)多少錢
  • 臺(tái)州椒江網(wǎng)站建設(shè)公司騰訊企點(diǎn)官網(wǎng)下載
  • 放網(wǎng)站的圖片做多大分辨率seo內(nèi)部?jī)?yōu)化方案
  • 網(wǎng)站建設(shè)的目前背景西安網(wǎng)絡(luò)優(yōu)化哪家好
  • 商城網(wǎng)站建設(shè)是 什么seo關(guān)鍵字優(yōu)化價(jià)格
  • 開發(fā)一套網(wǎng)站價(jià)格株洲seo排名
  • 淘寶導(dǎo)購網(wǎng)站怎么做it培訓(xùn)機(jī)構(gòu)怎么樣
  • 專業(yè)的營銷型網(wǎng)站建設(shè)競(jìng)價(jià)廣告代運(yùn)營
  • 福州搜索優(yōu)化實(shí)力江蘇seo哪家好
  • 一個(gè)網(wǎng)站 多個(gè)域名新站seo優(yōu)化快速上排名
  • 微網(wǎng)站開發(fā)平臺(tái)免費(fèi)網(wǎng)絡(luò)推廣公司介紹
  • 大連電子商務(wù)網(wǎng)站建設(shè)網(wǎng)絡(luò)營銷的真實(shí)案例分析
  • wordpress更換網(wǎng)站域名seo技術(shù)培訓(xùn)
  • 對(duì)網(wǎng)站備案的認(rèn)識(shí)賬號(hào)seo是什么
  • 北京軟件公司有哪些seo任務(wù)
  • 做視頻網(wǎng)站 買帶寬谷歌廣告聯(lián)盟一個(gè)月能賺多少
  • wordpress站內(nèi)優(yōu)化網(wǎng)絡(luò)營銷評(píng)價(jià)的名詞解釋
  • 嗶哩嗶哩b站肉片免費(fèi)入口在哪里自己可以創(chuàng)建網(wǎng)站嗎
  • 友情網(wǎng)站制作藝人百度指數(shù)排行榜
  • 烏魯木齊住房和城鄉(xiāng)建設(shè)廳網(wǎng)站百度上首頁
  • 在農(nóng)村做相親網(wǎng)站怎么樣百度域名提交收錄網(wǎng)址
  • 網(wǎng)站在其他地區(qū)備案買友情鏈接
  • 最便宜做公司網(wǎng)站app營銷策劃方案
  • 如何進(jìn)入微網(wǎng)站同城引流用什么軟件
  • 怎樣建設(shè)網(wǎng)站是什么意思全網(wǎng)推廣費(fèi)用