Could not chdir to home directory /home/nomiji: Pe

Could not chdir to home directory /home/nomiji: Permission denied
1.[我们要远程nomiji用户]
[[email protected] ~]# ssh [email protected]
[email protected]‘s password:
Last login: Mon Aug 13 21:18:55 2018 from shell.com
Could not chdir to home directory /home/nomiji: Permission denied
-bash: /home/nomiji/.bash_profile: Permission denied

2.这种报错是对方的用户的家目录 里的.bash_profile 的拥有者和所属组 的问题
【ls -la 我们可以看到.bash_profile的拥有者和所属组 都是cat 而不是nomiji】
[[email protected] nomiji]# ls -la
total 16
drwx------. 2 cat cat 83 Aug 13 21:17 .
drwxr-xr-x. 4 root root 31 Aug 13 21:18 ..
-rw-------. 1 cat cat 5 Aug 13 21:17 .bash_history
-rw-r--r--. 1 cat cat 18 Apr 10 20:53 .bash_logout
-rw-r--r--. 1 cat cat 193 Apr 10 20:53 .bash_profile
-rw-r--r--. 1 cat cat 231 Apr 10 20:53 .bashrc

3.修改家目录的拥有者和所属组
chown -R nomiji:nomiji /home/nomiji/
此时远程登录就OK了

-bash: /home/nomiji/.bash_logout: Permission denied
Connection to 192.168.122.84 closed.
[[email protected] ~]# ssh [email protected]
[email protected]‘s password:
Last login: Mon Aug 13 21:20:32 2018 from shell.com
[[email protected] ~]$ whoami
nomiji

原文地址:http://blog.51cto.com/11685018/2159514

时间: 2024-11-13 00:00:29

Could not chdir to home directory /home/nomiji: Pe的相关文章

Could not chdir to home directory /home/USER: Permission denied

Could not chdir to home directory /home/USER: Permission denied  2 years ago davidzhang We changed the home folder to /data/home/USER. When I ssh to our centos server. It shows error “Could not chdir to home directory /home/USER: Permission denied”,

Process Kill Technology && Process Protection Against In Linux

目录 0. 引言 1. Kill Process By Kill Command 2. Kill Process By Resource Limits 3. Kill Process By Code Injection Into Running Process Via GDB 4. Kill Process By Using Cross Process Virtual Memory Modify 5. Kill Process By Using ptrace To Inject .so 6. P

Nginx 0.8.x + PHP 5.2.13(FastCGI)搭建胜过Apache十倍的Web服务器(第6版)[原创]

mkdir -p /data0/software cd /data0/software wget http://sysoev.ru/nginx/nginx-0.8.46.tar.gz wget http://www.php.net/get/php-5.2.14.tar.gz/from/this/mirror wget http://php-fpm.org/downloads/php-5.2.14-fpm-0.5.14.diff.gz wget http://dev.mysql.com/get/D

php+mysql+nginx在linux上的环境部署

一直在linux上鼓捣,还没有完整在linux下配置过nginx服务器环境部署呢,这几天没什么事就部署了一下,遇到的问题也很多,现在把我的环境部署文档发出了,有什么问题大家可以一起讨论一下,希望大家采用后遇到问题多多沟通. || 安装所需各种依赖包 sudo -s LANG=C yum -y install gcc gcc-c++ autoconf libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2

记录一次配置unix网络编程环境的过程和遇到的问题

记录一次搭建unix网络编程环境过程中遇到的问题和总结 计算机环境虚拟机 linuxmint-18-xfce-64bit 1.打开unix网络编程.iso 把目录下的文件夹复制到某一目录,修改权限,可命令可鼠标操作. 2. [email protected] ~/unix/unpv13e $ sudo su [sudo] s 的密码: ss-Linux unpv13e # ./configure checking build system type... x86_64-unknown-linux

unix网络编程卷1:套接字联网 源码编译

QUICK AND DIRTY Execute the following from the src/ directory: 一: ./configure # try to figure out all 结果是: ........ checking for struct addrinfo... yes checking for struct if_nameindex... yes checking for struct sockaddr_dl... no checking for struct

RedHat5.7+ice3.4.2+php5.2.17+nginx1.8.1环境配置

ICE的通讯结构: ICE有分为提供服务的一方Server和寻求服务的一方Client,两台机子上都需要安装ICE组件,他们的通信结构如上图 Client端应该事先知道Server端能提供的服务是什么,有什么格式?这就是图中的Proxy Code,在Proxy Code中定义好了类和接口.Server端中接口定义的就是 Skeleton,具体实现接口的是Server Application,Server Application可以是C++,java,C#等写的,但是ICE不提供PHP写Serve

Django Web部署平台

一.基础环境Django Web部署平台 1.角色.ip.版本.内核.软件 serverA 10.1.10.236 3.16.0-4-amd64 8.1 nginx uwsgi django python python-2.7.9 nginx-1.6.2 uwsgi-2.0.11.2 django-1.8.6 2.安装基础包 1)安装基础包 apt-get -y install gcc make python-dev python-setuptools python curl tree 2)使用

用python操作文件和文件夹

我有一堆层级3到4级的文件夹,这里面存有的一些文件是我需要的,一些是我不需要的.需要的文件都存储在名字中有'Data'的文件夹内.现在我需要把这些文件提取(拷贝)到一个指定的文件夹里. 一个文件夹一个文件夹去点开是一种方法,但是对于层级比较深的文件夹是一件很枯燥的事情. 本着一切尽量自动化的原则,我用python来做这件事情. 这个需求归纳下来需要: 从一个起始目录开始 遍历每一个文件夹 如果文件夹的名字中有'Data',拷贝它的内容至目标文件夹 python对文件.文件夹的操作是非常常见的需求