useradd: warning: the home directory already exists.

ε祈祈猫儿з 提交于 2020-03-01 14:10:25

useradd: warning: the home directory already exists.
Not copying any file from skel directory into it.
Creating mailbox file: File exists

解决useradd:warning:the home directory already...的问题

 

在RHEL 5或CentOS5中安装oracle11g时,

  www.2cto.com  

groupadd oinstall

 

groupadd dba

 

mkdir -p /u01/oracle ( /u01/oracle 就在这里安装Oracle 11g)

建立用户:

useradd -g oinstall -G dba -d /u01/oracle oracle

结果报错:

useradd: warning: the home directory already exists.

Not copying any file from skel directory into it.

 

进入/u01/oracle目录,没有.bash_profile',.bashrc,bash_logout

 

原因:

 

系统添加用户的标准步骤

1.编辑/etc/passwd与/etc/group

2.创建用户主目录

3.从/etc/skel拷贝文件与目录

4.让新用户获得其主目录与文件的拥有权限

5.给新用户一个密码

 

 

 

解决办法:

依旧使用上面的脚本建用户,然后手动拷贝配置文件到/u01/oracle下。

 

cp /etc/skel/.bash_profile /u01/oracle

 

cp /etc/skel/.bashrc /u01/oracle

 

cp /etc/skel/.bash_logout /u01/oracle

 

这样既可。

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!