CentOS 新系統後配置

2022-04-11 07:41:15 字數 947 閱讀 4811

1. 網路配置 

略1.2 ip_froward  

檢視 sysctl -a | grep ip_

修改 vi /etc/sysctl.conf   

net.ipv4.ip_forward = 1

最大使用記憶體

vm.max_map_count=262144

生效 sysctl -p

2. 系統更新

yum -y update

3. 安裝擴充套件及工具

yum -y install epel-release net-tools bind-utils

4. 檔案鏈結限制

檢視 ulimit -n

修改 vi /etc/security/limits.conf

* - nofile 65536

* soft nproc 65536

* hard nproc 65536

* soft nofile 65536

* hard nofile 65536

5 安全

5.1 selinux

檢視 getenforce

修改 臨時 setenforce 0 永久 vi /etc/sysconfig/selinux

5.2 firewalld

5.3 ssh 

禁用root使用者,切換為其他使用者登入

修改22埠

6 系統時間

ntpyum install chrony

systemctl enable chronyd.service

systemctl start chronyd.service

建議使用 yum install ntp

systemctl start ntpd

systemctl enable ntpd

CentOS新系統開啟網路

一般三步就夠了 sudo vi etc sysconfig network scripts ifcfg enp0s3 onboot yes service network restart 路由器設定為dhcp模式,進入cd etc sysconfig network scripts ls查詢有沒有i...

centos 更新系統的步驟

1.備份 mv etc yum.repos.d centos base.repo etc yum.repos.d centos base.repo.backup例如 centos 7 wget o etc yum.repos.d centos base.repo3.執行 yum makecache ...

CentOS 7 新系統 手動配置網路 簡要步驟

一 配置網絡卡檔案 1.修改網絡卡檔案 進入網絡卡配置檔案目錄 cd etc sysconfig network scripts 2.檢視網絡卡檔案 ls centos中網絡卡檔案一般為 ifcfg ens 這樣的檔案,多塊網絡卡會有多個類似檔案 3.編輯網絡卡檔案 vim 檔名 修改或新增檔案 b...