Oracle 11gR1 RAC安裝過程中遇到的問題:網路卡的裝置名
(1)第二個虛擬機器第一次啟動後網路裝置名改變的問題:
第二個虛擬機器第一次啟動後,檢查網路裝置,發現名稱不是RAC1機的eth0和eth1,而變為了eth2和eth3。檢查發現在/etc/udev/rules.d/70-persistent-net.rules檔案中,名稱為eth0和eth1的對應了原RAC1機的MAC地址,多出了名稱為eth2和eth3的幾行,對應的MAC地址正是RAC2機的現在的網路卡的MAC,修改eth0和eth1的地址為新MAC地址,並刪除eth2和eth3的行,重啟系統後,名稱恢復正常。
# This file was automatically generated by the /lib/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:8e:56:86", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:8e:56:85", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:8e:56:98", ATTR{type}=="1", KERNEL=="eth*", NAME="eth3"
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:8e:56:97", ATTR{type}=="1", KERNEL=="eth*", NAME="eth2"
修改為:
# This file was automatically generated by the /lib/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:8e:56:98", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:8e:56:97", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/81227/viewspace-721514/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORACLE RAC TO RAC DG搭建過程中可能遇到的問題Oracle
- PYTORCH安裝過程以及遇到的問題PyTorch
- 安裝gcc過程中遇到相互依賴的問題GC
- 關於ubuntu安裝中過程遇到問題Ubuntu
- 安裝yeoman,grunt過程中的問題
- 安裝 Laravel Mix 中遇到的問題Laravel
- 安裝kylin遇到的問題
- Laravel 安裝遇到的問題Laravel
- Python安裝cx_Oracle模組遇到的問題PythonOracle
- python中安裝qtdesigner、pyuic遇到的問題PythonQTUI
- 安裝部署hzero遇到的問題
- PaddleOCR 安裝使用遇到的問題
- 記錄VMware安裝VMware Tools過程及遇到的一些問題
- Nebula 2.5.0安裝過程及遇到的坑
- Oracle11g RAC安裝GI時會遇到INS-06006報錯處理過程Oracle
- 安裝pygame和pip的問題以及過程GAM
- windows2003 的安裝以及安裝時遇到的問題Windows
- 爬蟲過程中遇到的問題爬蟲
- Flutter-安裝步驟及安裝遇到的問題Flutter
- lumen安裝orangehill/iseed遇到的問題
- 安裝rac時需要注意的問題
- oracle rac資料庫的安裝Oracle資料庫
- nuxtjs 安裝過程中出現問題UXJS
- 關於centos 7安裝binwalk的過程中產生的問題CentOS
- 整理debian安裝過程中的一些問題與方法
- 學習vue過程中遇到的問題Vue
- Veritas Storage Foundation for Oracle RAC(VCS4.0 + VxVM4.0 ..)安裝過程Oracle
- 安裝Oracle 11G RAC 遇到的2個問題——Failed to run "oifcfg" 和 找不到叢集節點OracleAI
- 【Redis】redis-cluster 安裝遇到的問題Redis
- Centos7安裝greenplum遇到的問題CentOS
- mac11.2安裝air遇到的問題MacAI
- oracle 11.2.0.4 DataGuard Broker配置過程中可能遇到的問題及解決方法Oracle
- Oracle 18c rpm 安裝及解析安裝過程Oracle
- Visual Studio Code中Python安裝庫檔案遇到的問題Python
- macbook 下安裝Goglang 以及安裝svn外掛所遇到的問題MacGo
- RIDE匯入AutoItLibrary的安裝以及遇到的問題IDE
- 解決macbook安裝burp suite遇到的問題MacUI
- webpack的安裝過程Web
- 安裝wampserver的過程Server