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 11gR1 RAC安裝過程中遇到的問題:OCR裝置大小的問題Oracle
- Oracle 11gR1 RAC安裝過程中遇到的問題:OCR裝置的許可權問題Oracle
- Oracle 11gR1 RAC安裝過程中遇到的問題:LINUX系統版本的問題OracleLinux
- STATSPACK安裝過程中遇到的問題
- [轉]RAC 安裝配置過程中的問題
- Oracle11g安裝過程遇到的問題Oracle
- ORACLE RAC TO RAC DG搭建過程中可能遇到的問題Oracle
- Sybase和Oracle安裝過程中常遇到的問題(轉)Oracle
- 安裝gcc過程中遇到相互依賴的問題GC
- 關於ubuntu安裝中過程遇到問題Ubuntu
- Oracle RAC之--安裝過程中碰到的問題及解決方法Oracle
- PYTORCH安裝過程以及遇到的問題PyTorch
- 【RAC】 RAC For W2K8R2 安裝--安裝過程中碰到的問題(九)
- Mysql安裝過程中遇到的問題及解決辦法MySql
- vue-cli安裝過程遇到問題Vue
- 安裝yeoman,grunt過程中的問題
- elk(單機)安裝過程中遇到的問題及解決方法
- oracle 雙網路卡遇到的問題Oracle
- 也遇到安裝裝置出現怪問題!
- ambari安裝過程中的問題彙總
- veritas cfs for oracle rac安裝過程。Oracle
- linux安裝和配置 mysql、redis 過程中遇到的問題記錄LinuxMySqlRedis
- 安裝 Laravel Mix 中遇到的問題Laravel
- 安裝mysql中遇到的問題1MySql
- 安裝和解除安裝clusterware過程中的各種問題分析
- oracle安裝使用裸裝置問題Oracle
- AIX安裝oracle遇到的問題彙總AIOracle
- oracle11g rac安裝過程Oracle
- oracle 10g R2 安裝過程遇到的問題及解決方法Oracle 10g
- GridControl 11gR1 在Linux安裝遇到的問題Linux
- Laravel 安裝遇到的問題Laravel
- 安裝mysql遇到的問題MySql
- 安裝rails遇到的問題AI
- 記一次wordpress安裝過程中遇到的問題及解決辦法
- 【mysql】配置MySQL,解決安裝過程中的問題MySql
- jive2.5安裝過程的問題
- ElasticSearch安裝中遇到的一些問題Elasticsearch
- 爬蟲過程中遇到的問題爬蟲