版本:centos 7.2.1511
注:本文紅色部分是需要修改的內容,特殊標註出來。
一 . 配置ip位址,接通網路。網路一通,萬事ok
type=ethernet
bootproto=static
defroute=yes
peerdns=yes
peerroutes=yes
ipv4_failure_fatal=no
ipv6init=yes
ipv6_autoconf=yes
ipv6_defroute=yes
ipv6_peerdns=yes
ipv6_peerroutes=yes
ipv6_failure_fatal=no
name=ens32
uuid=f35197ae-0aef-4525-9c7b-804de7b41bcd
onboot=yes
ipaddr=10.1.8.152
netmask=255.255.255.0
gateway=10.1.8.1
dns1=10.1.3.10
dns2=10.1.3.11
dns3=8.8.8.8
二. 修改網絡卡名稱。
centos7之後,網絡卡的命名令我們不爽,所以我們有必要改回我們習慣的名稱。
2.1 修改網絡卡配置檔案名稱.
mv ifcfg-ens32 ifcfg-eth0
修改網絡卡配置檔案內容
name=eth0
三. 關閉防火牆。
systemctl stop firewalld.service
systemctl disable firewalld.service
四. 關閉selinux.
檢視狀態
getenforce
臨時關閉
setenforce 0
徹底關閉: vim /etc/selinux/config
selinux=disabled
五. 掛載資料磁碟。
使用fdisk工具分割槽,根據提示
fdisk /dev/sdb
此處不詳細描述,可參考:
格式化mkfs.ext4 /dev/sdb1
掛載mkdir -p /opt/gildata
mount /dev/sdb1 /opt/gildata
寫入fstab檔案中,系統啟動之後,會自動掛載上去。
/dev/sdb1 /opt/gildata ext4 defaults 0 0
六. 安裝需要的軟體。
yum install vim redhat-lsb net-tools.x86_64 iptables-services ntpdate wget -y
七. 通過crontab 設定時間同步。
/usr/sbin/ntpdate ntp.sjtu.edu.cn>> /var/log/ntp.log 2>&1; /sbin/hwclock -w
八. 優化系統引數
8.1 vim /etc/security/limits.conf 編輯
* soft nofile 65536
* hard nofile 65536
8.2 vim /etc/security/limits.d/20-nproc.conf
* soft nproc 10240
root soft nproc unlimited
延伸。。。。。。。。。。。。。。。。。。。
關於centos7服務啟動的改變
centos 7系統服務啟動、重啟、設定服務啟動項命令以合併為,systemctl . 現在用service 或/etc/init.d/命令,重啟,重新啟動,停止等沒效果,因為命令合併為systemctl. 新命令具體內容如下:
以啟動httpd和設定apache httpd為服務啟動為例子:
centos7之前的命令是這樣:
service httpd start 啟動apache httpd
service httpd restart 重新啟動
service httpd stop 停止服務
chkconfig –levels 235 httpd on 開機啟動httpd
或是:/etc/init.d/ httpd start 啟動
/etc/init.d/ httpd restart 重新啟動
/etc/init.d/ httpd stop 停止服務
centos7吧這些命令全部合併了,使用也更加方便,當然也是習慣問題,如果習慣了之前命令,centos新命令還得適應適應,其實很簡單,只要這樣記憶,使用就比較方便了.
systemctl 動作 服務名.service
一些centos7 systemctl命令簡單實用例項:
systemctl start httpd.service /啟動apache httpd
systemctl restart httpd.service /重新啟動
systemctl stop httpd.service /停止服務
systemctl enable httpd.service /開機啟動httpd
systemctl disable httpd.service /禁止開機啟動httpd
centos7最小化安裝沒有pstree
最小化安裝centos之後,使用pstree顯示程序樹,提示沒有此命令 原來是沒有安裝,需要安裝psmisc yum install psmisc接下來介紹一下psmisc psmisc 22.21 psmisc的內容 psmisc軟體包包含三個幫助管理 proc目錄的程式。安裝下列程式 fuser...
CentOS 7最小化安裝配置
檢視網路狀態,因為ifconfig沒有安裝,所以使用如下命令 ip addr進入目錄 cd etc sysconfig network scripts編輯網絡卡檔案 vi ifcfg eno16777736修改或增加如下內容 bootproto static dhcp改為static 修改 onbo...
CentOS7 最小化安裝完配置
防火牆 yum install y net tools systemctl stop firewalld systemctl disable firewalld.service yum install y iptables services systemctl restart iptables.se...