服务器网卡配置,ssh
centos7
一、进入默认不开启网卡
开启网卡
vi /etc/sysconfig/network-scripts/ifcfg-ens33
ONBOOT=yes #开启
sudo service network restart 重启网络服务
改为静态地址
BOOTPROTO=static
IPADDR=192.168.1.160 # ip 根据实际情况
NETMASK=255.255.255.0 # 子网掩码
GATEWAY=192.168.1.1 # 网关
DNS1=119.29.29.29 # dns1
DNS2=8.8.8.8 # dns2
二、开启ssh远程连接
centos7 默认安装ssh服务
netstat -anp| grep sshd # 查看sshd 进程
service sshd restart # 重启sshd服务
三、开机自启服务
一般来说 用 yum install 安装的程序可以执行下面命令执行开机自启动服务
systemctl enable nginx.service 开启nginx服务
如果是编译安装则需要手动 添加自启文件 详见nginx-supervisor
四、yum install 报错
yum提示Another app is currently holding the yum lock; waiting for it to exit...
# yum -y install vixie-cron
Loaded plugins: fastestmirror, refresh-packagekit, security
Existing lock /var/run/yum.pid: another copy is running as pid 25960.
Another app is currently holding the yum lock; waiting for it to exit...
可以通过强制关掉yum进程
执行 rm -f /var/run/yum.pid
五、安装linux系统
在安装Linux系统时,安装信息摘要显示 配置安装选项,选择为服务器模式