centos 常用配置

2021-07-22 21:37:57 字數 1921 閱讀 3723

一、安裝openssh

openssh是對ssh的實現

centos7.0之前

chkconfig sshd on------設定開機啟動

/etc/init.d/sshd help-----檢視ssh的常用操作

/etc/init.d/sshd start

/etc/init.d/sshd stop

centos7.0之後 

(一)、centos6.5

1.修改linux主機名

vim /etc/sysconfig/network

vim /etc/udev/rules.d/70-persistent-net.rules --檢視網絡卡位址(如果是複製的虛擬機器,需要在這裡吧eth0網絡卡刪掉,並把eth1改為eth0)

2.修改ip

vim /etc/sysconfig/network-scripts/ifcfg-eth0

device="eth0"

bootproto="static" #static為靜態ip

hwaddr="00:0c:29:0a:9d:f1" #網絡卡mac位址

ipv6init="yes"

nm_controlled="yes"

onboot="yes"

type="ethernet"

uuid="133b8797-c5d5-4f71-b61c-813d9d40ad24"

ipaddr="192.168.0.200"

netmask="255.255.255.0"

gateway="192.168.0.1"

dns1="8.8.8.8" #google提供的免費dns1

dns2="8.8.4.4"#google提供的免費dns2

3.修改主機名和ip的對映關係(如果是阿里雲伺服器,/etc/hosts裡面要配置的是內網ip位址和主機名的對映關係)vim /etc/hosts192.168.0.200 centos 

(二)、centos7.2

1.修改linux主機名

vim /etc/hostname

centos

2.修改ipvim /etc/sysconfig/network-scripts/ifcfg-eth0

type=ethernet

bootproto=static

defroute=yes

ipv4_failure_fatal=no

ipv6init=yes

ipv6_autoconf=yes

ipv6_defroute=yes

ipv6_failure_fatal=no

name=eno16777736

uuid=922220cd-60d3-4e6c-aff8-945af902461b

device=eno16777736

onboot=yes

peerdns=yes

peerroutes=yes

ipv6_peerdns=yes

ipv6_peerroutes=yes

ipaddr="192.168.1.201"

netmask="255.255.255.0"

gateway="192.168.1.1"

dns1=8.8.8.8

dns2=8.8.4.4

3.修改主機名和ip的對映關係(如果是阿里雲伺服器,/etc/hosts裡面要配置的是內網ip位址和主機名的對映關係)

vim /etc/hosts

192.168.0.200 centos

4.關閉防火牆

service iptables stop

chkconfig iptables off

說明:如果是centos6,需要設定chkconfig networkmanager off,否則重啟後,固定ip不能生效

Cent OS 常用配置命令

1 ifconfig 檢視網路介面狀態 2 ifconfig a 檢視主機所有介面的情況 3 ifconfig eth0 192.168.1.106 netmask 255.255.255.0 用ifconfig 來配置eth0的ip位址 網路掩碼 機器重啟之後將會丟失 4 route add de...

Cent OS 常用配置命令

1 ifconfig 檢視網路介面狀態 2 ifconfig a 檢視主機所有介面的情況 3 ifconfig eth0 192.168.1.106 netmask 255.255.255.0 用ifconfig 來配置eth0的ip位址 網路掩碼 機器重啟之後將會丟失 4 route add de...

Cent OS 常用配置命令

1 ifconfig 檢視網路介面狀態 2 ifconfig a 檢視主機所有介面的情況 3 ifconfig eth0 192.168.1.106 netmask 255.255.255.0 用ifconfig 來配置eth0的ip位址 網路掩碼 機器重啟之後將會丟失 4 route add de...