1.先关闭这两节省资源
2.对于新主机修改主机名,配置网络
一、配置网络
1.推荐图形化界面nmtui
修改完成后测试
在redhat ping一下
在redhat远程登录severa
2、使用nmcli来修改网络配置
2.1、配置要求:主机名: node1.domain250.example.com
ip:172.25.250.100
子网掩码:255.255.255.0/24
dns:172.25.250.254
网关:172.25.250.254
nmcli device status //查看设备状态
nmcli connection show //查看设备的标识
nmcli connection modify "name" ipv4.method manual ipv4.address 172.25.250.100/24 ipv4.dns 172.25.250.254 ipv4.gatway 172.25.250.254
nmcli connection up "name" //激活网卡
nmcli connection modify "name" connection.autoconnect yes //开机自动激活网卡
二.默认RHEL9中不允许root身份ssh node节点,所以需要更改ssh配置文件
输入vim /etc/ssh/sshd_config
找到这个
修改为
最后一行
ESC
:wq
或者法二:不能SSH到node1的root,先创建普通用户,su到普通用户,再从普通用户SSH到node1的root用户.
首先在node1创建一个普通用户,设置密码
回到redhat
另外,在VMware里输入不方便,可以在cmd里先登录redhat,在通过redhat的远程操作登录servera
这样就可以粘贴复制了