CentOS7安装服务器基础环境

命令安装

1
yum install -y vim unzip zip tcpdump lrzsz net-tools sysstat iptables wget
1
yum install -y libaio gcc gcc-c++ autoconf make

网卡配置

根据实际情况配置

1
2
3
4
5
6
7
8
vim /etc/sysconfig/network-scripts/ifcfg-em1
# 修改以下内容后保存
BOOTPROTO=static
ONBOOT=yes
IPADDR=
GATEWAY=
NETMASK=
DNS=

配置完毕,重启网络服务

1
systemctl restart network

防火墙和selinux配置

关闭服务并禁用开机自启

1
2
systemctl stop firewalld
systemctl disable firewalld

永久关闭SELINUX(重启生效)

1
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config

最大打开文件数

1
2
sed -i '$a \\nulimit -n 65535'
source /etc/profile

常用命令

含义 命令
查看ip地址 ip -s addr show
查看网卡链路 ip -s link show
查看端口 ss -lp | grep 3306