Linux安装oracle 10g常见问题之——OUI-25031

OUI-25031:Some of the configuration assistants failed/cancelled.

这是安装过程中常见的错误之一。
引起此错误的原因:/etc/hosts、/etc/sysconfig/network与主机名不一致。

解决此错误的过程如下:
1、检查主机名
[root@toughhou tough]# hostname
toughhou

2、检查network配置中主机名是否与hostname相同
[root@toughhou tough]# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=localhost

3、检查hosts配置中的主机名是否与network配置中的相同,若不同,必须改过来。
1)这里设置的是localhost,而network中设置的是toughhou,须更改。
[root@toughhou tough]# cat /etc/hosts
127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1              localhost localhost.localdomain localhost6 localhost6.localdomain6
[root@toughhou tough]# vi /etc/hosts
127.0.0.1   toughhou toughhou.localdomain localhost4 localhost4.localdomain4
::1              toughhou toughhou.localdomain localhost6 localhost6.localdomain6

2)更改后ping主机名,看是否通。通了就说明已经设置好了。
[root@toughhou tough]# ping toughhou
PING toughhou (127.0.0.1) 56(84) bytes of data.
64 bytes from toughhou (127.0.0.1): icmp_req=1 ttl=64 time=0.044 ms
64 bytes from toughhou (127.0.0.1): icmp_req=2 ttl=64 time=0.039 ms

4、重试此问题消失。

 

原文地址:https://www.cnblogs.com/toughhou/p/3778762.html