Redhat(03):Linux 初始化配置

Ryan_Bai發表於2019-02-06

一、virbr0虛擬網路卡的解除安裝方法

在使用雙機軟體過程中,如果系統是centos 5.x 預設系統安裝完成後為xen核心,那麼xen核心引導啟動後就會有虛擬網路卡(vethx、vif0.x、virbr0、xenbr1等)存在。

這就會直接導致雙機軟體的兩臺機器中都會有相同的IP地址存在(virbr0網路卡的IP地址都為192.168.122.1)。所以會導致雙機系統中的主機關機時,備機不會接管的現象。所以,需要將virbr0解除安裝掉:

  1. 執行命令:yum remove -y libvirt*,用ifconfig -a檢視網路卡virbr0是否解除安裝。

  2. 如果執行yum報錯, 可以vi /etc/yum/plugincon.d/rhnplugin.conf然後將檔案中的enable=1改成enable=0,目的是先禁用此功能,再執行yum remove libvirt進行解除安裝。

  3. 重啟系統

二、解除安裝network manager

  1. yum remove NetworkManager –y

  2. 設定關閉圖形化介面(安裝圖形化介面,是為了可以應用eclipse,一般應用伺服器不會選擇安裝圖形化)

    systemctl set-default multi-user.target

三、關閉不必要的服務

chkconfig nfs off
chkconfig pcmcia off
chkconfig lpd off
chkconfig autofs off
chkconfig anacron off
chkconfig portmap off
chkconfig isdn off
chkconfig nfslock off
chkconfig sendmail off
chkconfig cups off
chkconfig smartd off
chkconfig bluetooth off
chkconfig netfs off
chkconfig rpcgssd off
chkconfig rpcidmapd off
chkconfig rpcbind off
chkconfig pcscd off
chkconfig smolt off
chkconfig cups off
chkconfig isdn off
chkconfig ip6tables off
systemctl disable nfs
systemctl disable pcmcia
systemctl disable lpd
systemctl disable autofs
systemctl disable anacron
systemctl disable portmap
systemctl disable isdn
systemctl disable nfslock
systemctl disable sendmail
systemctl disable cups
systemctl disable smartd
systemctl disable bluetooth
systemctl disable netfs
systemctl disable rpcgssd
systemctl disable rpcidmapd
systemctl disable rpcbind
systemctl disable pcscd
systemctl disable smolt
systemctl disable cups
systemctl disable isdn
systemctl disable ip6tables
systemctl disable firewalld

四、常用包安裝

yum -y install gcc
yum -y install gcc-c++
yum -y install net-snmp
yum -y install ntp
yum -y install unzip
yum -y install vim-enhanced
yum -y install wget
yum -y install telnet
yum -y install kernel-devel
yum -y install finger
yum -y install ssh
yum -y install nslookup
yum -y install zlib-devel
yum -y install krb5-devel
yum -y install sysstat
yum -y install lsof
yum -y install fuser
yum -y install bind-utils
yum -y install glances
yum -y install dstat
yum -y install net-tools
yum -y install vim
yum -y install wget

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31490526/viewspace-2583101/,如需轉載,請註明出處,否則將追究法律責任。

相關文章