1. 程式人生 > >Centos7基本設置

Centos7基本設置

hosts http script 分享圖片 網卡 重命名 height restart gre

1.修改主機名

可以使用vi /etc/hosts命令進行修改,在文件裏添加一行,加上本機的IP與主機名的綁定(重啟機器後生效).
技術分享圖片

2.配置靜態ip地址

先使用ifconfig -a查看一下;
技術分享圖片
然後在/etc/sysconfig/network-scripts目錄下找到名為ens32的網卡,用vi /etc/sysconfig/network-scripts/ifcfg-ens32打開文件並修改。

技術分享圖片
保存,退出,然後

/etc/init.d/network restart      #重啟網卡

3.關閉、禁用centos7默認防火墻

CentOS 7.0默認使用的是firewall作為防火墻,現在把firewall關閉並禁用(禁止開機啟動)。

技術分享圖片

systemctl status firewalld.service           #查看firewall狀態
systemctl stop firewalld.service             #關閉firewall
systemctl list-unit-files |grep firewalld    #查看firewalld是否開機自動啟動,若顯示enabled為開機自啟,顯示disable為開機不自啟
systemctl disable firewalld.service       #禁止開機自啟

4.關閉selinux

需要修改/etc/selinux/config的文件,把enforcing改成disabled即可(重啟後生效)。或者使用命令

sed -i 7s/enforcing/disabled/  /etc/selinux/config     # 把/etc/selinux/config文件下第7行的enforcing改成disabled

技術分享圖片

5.更換yum源

centos7默認的源的網址mirrorlist.centos.org,屬於國外的網站,可能出現連不上或者網速很慢,反正我用yum安裝軟件的時候感覺比較慢,所以打算換成國內163網易的yum源。

cd /etc/yum.repos.d               # 切換到yum倉庫目錄下
mv CentOS-Base.repo CentOS-Base.repo.bak       # 把原來的源重命名備份
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo    #下載163源
mv CentOS7-Base-163.repo CentOS-Base.repo     #更改網易的源為默認的系統yum源
yum  makecache    #生成緩存,將服務器上的軟件包信息在本地緩存,提高搜索安裝軟件的速度

6.關閉系統郵件提示

  • 在終端操作界面總是出現You have new mail in /var/spool/mail/root提示,如果想關閉提示,可以在/etc/profile文件裏設置。
    echo "unset MAILCHECK">> /etc/profile
    source /etc/profile

Centos7基本設置