7.0版本服务管理
采用了systemd的管理思想
/usr/lib/systemd/system
查看系统中所有服务的开机启动状态
如:systemctl list-unit-files grep ssh
服务的命名方式:进程名.service 配置时只需要写进程名即可
例:sshd.service
#systemctl restart sshd 重启服务
#systemctl start sshd 开启服务
#systemctl stop sshd 停用服务
#systemctl status sshd 服务状态
#systemctl enable sshd 开机自动启动
#systemctl disable sshd 开机禁用服务
图形化的网络配置
#systemctl status NetworkManager 支持图形化网络配置的服务
#systemctl restart NetworkManager
#nmtui 进入图形化配置菜单 Automatic自动获取;Manual手动配置
直接修改了配置文件,但不能马上生效,需要重启网络服务
#systemctl restart network
1、查看网络参数
1)IP地址、子网掩码
ifconfig -a查看网卡信息(活动的网卡和未活动的网卡)
ifconfig 网卡名 down 禁用网卡
ifconfig 网卡名 up 启用网卡
2)网关
route -n 查看本机路由表查看网关
destination到达目标网络段
gateway网关
genmask网络段掩码
flags标记(u代表网卡正在启用,ug代表网关)
3)DNS
配置文件:/etc/resolv.conf 编辑:nameserver + 名称服务器
2、主机名
查看主机名 hostname
永久修改主机名 /etc/hostname
3、静态解析文件 /etc/hosts
IP地址 主机名
IP地址 FQDN(全称域名)
4、设置网络参数
ifconfig 网卡名 IP地址
例:ifconfig eno33554960 192.168.10.3 根据IP地址的分类自动分配掩码
永久生效修改配置文件
/etc/sysconfig/network-scripts/ifcfg-eno16777736
TYPE = Ethernet (类型是以太网)
BOOTPROTO = none (指定网卡获取IP地址的方式。) none静态ip;DHCP动态获取
NAME = eno16777736 (网卡名)
UUID = 设备id
ONBOOT = yes (是否自动连接网卡)
IPADDR0 = IP地址
PREFIX0 = 32 (子网掩码:位数)
GATEWAY0 = 网关
DNS1 = DNS
7.0以前版本 系统服务
1.setup 进入图形化配置菜单
service network restart 重启网络服务,配置文件生效
新添加一块网卡,驱动自动装,但是配置文件不能够自动生成
2.采用init.d记录所有的系统服务
/etc/rc.d/init.d/
3.例:sshd.service
#service sshd restart 重启服务
#service sshd start 开启服务
#service sshd status 服务状态
#service sshd stop 停止服务
#chkconfig sshd off 开机自动启动
#chkconfig sshd on 禁用服务
修改主机名
/etc/sysconfig/network