linux6配置永久IP报错

全新以最小化包安装了64位的CentOS6.5系统,作为本地的Web服务器使用,现记录全过程
第一步,配置并启用网上eth0

ifcfg-ethx网卡配置 文件路径,假设配置的是eth0网卡

[[email protected] ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0 #网卡设备名称
ONBOOT=yes #启动时是否激活 yes|no
BOOTPROTO=static #协议类型 dhcp bootp none
IPADDR=192.168.1.90 #网络IP地址
NETMASK=255.255.255.0 #网络子网地址
GATEWAY=192.168.1.1 #网关地址
BROADCAST=192.168.1.255 #广播地址
HWADDR=00:0C:29:FE:1A:09#网卡MAC地址
TYPE=Ethernet #网卡类型为以太网

:wq 保存配置
[[email protected] ~]#service network restart
发现居然报错如下,百思不得其解,只能baidu了
bringing up interface eth0 error ... device not managed by networkmanager or unavailable
解决办法:
1[[email protected] ~]#chkconfig NetworkManager off
2[[email protected] ~]#chkconfig network on
3 [[email protected] ~]#service NetworkManager stop
4 [[email protected] ~]#service network start

英文原文如下(大体意思是停掉NetworkManager,启用默认的Manager):
================================================
1. Remove Network Manager from startup Services.
chkconfig NetworkManager off
2. Add Default Net Manager
chkconfig network on
Stop NetworkManager first
service NetworkManager stop
and then start Default Manager
service network start
or you can change it easy:
system-config-network
uncheck the box that sets the eth0 as managed by NetworkManager and set IP info from there.
system-config-services
stop and disable NetworkManager , start and enable network
you have problem because both of NetworkManager and Network using same
Network driver and default network blocking access for NetworkManager.
if you disable NetworkManager your problem will disappeared after
restart.

时间: 2024-11-06 14:18:00

linux6配置永久IP报错的相关文章

虚拟化--002 VCAC vcac配置sso一直报错

002 VCAC  vcac配置sso一直报错 1.选择用ia的sso失效,一直提示端口不能连接,用ip地址直接连,可以连接,但是还是会报错Error communicating to the remote server https://x.x.x.x..... 2.最后用的是vc的sso来连接,结果成功了,用的也是ip地址.

配置MySQL主从复制报错Last_IO_Error: Fatal error: The slave I/O thread stops because master and slave have equal MySQL server ids; these ids must be different for replication to work

配置MySQL主从复制报错 Last_IO_Error: Fatal error: The slave I/O thread stops because master and slave have equal MySQL server ids; these ids must be different for replication to work (or the --replicate-same-server-id option must be used on slave but this do

Exception occurred while processing this request, check the log for more information!安装ActiveMq-5.14.1 配置安全验证报错解决

安装ActiveMq-5.14.1  并配置了安全验证成功后,客户端也连接成功了.服务端也能通过http://IP:8161登录到控制台. 但是在点击队列,想要查看队列视图时报错,如下图: 查看日志发现有如下报错: 那么我就开始找配置这个用户的地方,发下时conf目录下的credentials.properties文件中. 内容如下: 这里有这个账户的配置,那么是哪里引用这个配置文件呢? 在主配置文件 activemq.xml 查看,发现如下: 大概了解了下,这段配置的作用,是在控制台中查看,删

配置eureka 老是报错connected time out 或者 refused connected

报错信息总是连接错误,我指定了端口号,却不按照我指定的端口进行访问,而是访问eureka-server 的端口号是8761 ,这是因为配置有问题. 查看 类 EurekaClientConfigBean 发现有默认配置 不难发现,如果配置不对会使用默认配置.要注意serviceUrl 的 defaultZone,配置好了这个参数才会生效. 例如:我的一个eureka-client 配置片段 eureka: instance: hostname: 127.0.0.1 preferIpAddress

关于nginx配置的一个报错connect() to unix:/tmp/php-cgi.sock failed (2: No such file or directory)

针对配置php的情况: linux服务器一般提示这个 connect() to unix:/tmp/php-cgi.sock failed (2: No such file or directory) while connecting to upstream, client: x.x.x.x, server: xxx.xxx.xxx, request: "GET /index.php HTTP/1.1", upstream: "fastcgi://unix:/tmp/php-

centos7 升级php7 添加配置epel源 报错:Cannot retrieve metalink for repository: epel. Please verify its path and try again

文章来自:循序渐渐linux:基础知识 一书 7.3章LAMP服务器搭建 日常故障 centos上好多软件升级需要配置epel源 其中有一点小插曲 需要手动更改 1.很多时候,对PHP环境要求较新的版本,例如,PHP 7环境,如果通过源码编译.安装,将会非常麻烦.这里提供一种通过yum工具安装最新PHP 版本的方法.首先,需要在系统上安装一个扩展yum源,即epel源, 可从http://fedoraproject.org/wiki/EPEL 网站下载针对CentOS 7版本的epel文件,然后

mysql8 修改my.ini配置 重启服务 报错

mysql8 修改my.in 配置重启服务之后 报错:本地计算机上的MySQL服务启动后停止.某些服务在未由其他服务或程序使用时将自动停止 解决方案:1.备份mysql数据目录 整个目录备份到其他地方,然后清空该目录 2.找到之前下载的安装文件 例如:mysql-installer-community-8.0.16.0.msi 双击打开 然后重新配置安装 重新安装成功之后 3.把刚才备份的 data目录 全部拷贝 覆盖回来,覆盖之前先停止mysql服务 4.覆盖之后重启mysql服务 原文地址:

vue cli3使用官方方法配置sass全局变量报错ValidationError: Invalid options object. Sass Loader has been initialised using an options object that does not match the API schema.

我使用官方文档提供的配置sass全局变量,但是报错! vue.config.js代码如下: module.exports = { css: { loaderOptions: { sass: { data: `@import "[email protected]/assets/scss/variables.scss";`, }, } } } variables.scss的代码如下: $color:#fff; 组件代码如下: <style lang="scss"

mybatis配置,idea报错:java.sql.SQLException: No suitable driver found for jdbc://localhost:3306/mybatis_test

报错信息: "C:\Program Files\Java\jdk1.8.0_211\bin\java.exe" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2019.3.4\lib\idea_rt.jar=54826:C:\Program Files\JetBrains\IntelliJ IDEA 2019.3.4\bin" -Dfile.encoding=UTF-8 -classpath "C