当前位置: 代码迷 >> 综合 >> CentOS 7 Minimal ISO 最小安装后的配置网络及Xshell连接
  详细解决方案

CentOS 7 Minimal ISO 最小安装后的配置网络及Xshell连接

热度:80   发布时间:2023-12-12 15:51:35.0

1.CentOS 7 Minimal 安装后配置网络

[root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens33# 修改ONBOOT=yes[root@localhost network-scripts]# vi ifcfg-ens33
[root@localhost network-scripts]# service network restart

2. 配置Xshell使用SSH远程连接虚拟机

# 查找ifconfig
[root@localhost ~]# yum search ifconfig
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile* base: mirrors.aliyun.com* extras: mirrors.163.com* updates: mirrors.163.com
================================ Matched: ifconfig ================================
net-tools.x86_64 : Basic networking tools# yum安装该包
[root@localhost ~]# yum -y install net-tools.x86_64# 查找宿主机的IP地址
[root@localhost ~]# ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500inet 192.168.65.128  netmask 255.255.255.0  broadcast 192.168.65.255inet6 fe80::3427:13b9:da79:c539  prefixlen 64  scopeid 0x20<link>ether 00:0c:29:1e:a0:cd  txqueuelen 1000  (Ethernet)RX packets 235  bytes 21138 (20.6 KiB)RX errors 0  dropped 0  overruns 0  frame 0TX packets 147  bytes 16040 (15.6 KiB)TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536inet 127.0.0.1  netmask 255.0.0.0inet6 ::1  prefixlen 128  scopeid 0x10<host>loop  txqueuelen 1000  (Local Loopback)RX packets 0  bytes 0 (0.0 B)RX errors 0  dropped 0  overruns 0  frame 0TX packets 0  bytes 0 (0.0 B)TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

 

看到当前虚拟机相对于宿主机的IP为192.168.65.128,所以如下图配置Xshell连接,

CentOS 7 连接网络成功 且 使用Xshell连接成功~ 

 

没事最好关停 SELINUX,因为 会莫名其妙的连不上数据库
echo 0 > /selinux/enforce 
setenforce 0
sestatus

 

  相关解决方案