安装oracle之后,没有自动生成/home/oracle目录
原因在于/home目录被mount到autofs
mount | grep home
auto.home on /home type autofs (rw,relatime,fd=11,pgrp=6900,timeout=60,minproto=5,maxproto=5,indirect,pipe_ino=42127)
systemctl list-unit-files | grep autofs
autofs.service enabled
systemctl disable autofs.service
Removed symlink /etc/systemd/system/multi-user.target.wants/autofs.service.
service autofs status
active
service autofs stop
如果/home 目录没有自动umount成功,可以用lsof /home查看占用情况
手动umount /home
手动创建/home/oracle
mkdir /home/oracle
chown oracle:oinstall -R /home/oracle
usermod -d /home/oracle oracle
本文档详细介绍了在安装Oracle后,由于/home目录被挂载为autofs导致/home/oracle目录未自动生成的状况。通过检查autofs服务状态,禁用并停止autofs服务,手动umount/home目录,然后创建/home/oracle目录并设置权限,确保oracle用户拥有该目录。此过程对于正确配置Oracle环境至关重要。
7698

被折叠的 条评论
为什么被折叠?



