Linux之普通用户ssh到指定目录

前言

为了保障Linux系统的安全性,有时候需要为一台主机创建不同的用户,每个用户具有SSH权限,并且只具有访问固定目录的权限。

步聚

  1. 创建用户
useradd test
chown -R test  /data/wyfcg/mhwz/
echo passwd | passwd --stdin test
  1. 配置ssh权限
cat /etc/ssh/sshd_config | grep AllowUsers
AllowUsers root test

注意:一定要把root也加入,否则root也无法远程

posted @ 2024-05-27 19:28  *一炁化三清*  阅读(87)  评论(0编辑  收藏  举报