在运行脚本中拒绝许可



我正在运行一个脚本,但是有一个不寻常的警告:这就是我的控制台中发生的事情

#whoami
root
#ls -l test.sh
-rwxr-xr-x. 1 root root 1894 Feb  2 01:58 test.sh*
#./test.sh
-bash: ./test.sh: Permission denied

编辑:我的脚本:

#!/bin/bash
while read pass port user ip file; do
  echo "startt------------------------------------" $ip
  ping $ip -c 4
  if [ $? -eq 0 ]; then
    echo $ip ok...
  else
    echo $ip failed...
  fi
  echo "finish------------------------------------" $ip
done <<____HERE
pass  22  root  1.1.1.1  test.txt
____HERE

有什么想法吗?谢谢

我在/tmp目录中运行脚本如您所见,LS的结果是:

-rwxr-xr-x. 1 root root 1894 Feb  2 01:58 test.sh*

权限后有.,这表明SELINUX安全上下文适用于该文件。所以我在目录中复制了test.sh ...

解决了问题

ls -l /
drwxrwxrwt.   8 root root  1024 Feb  2 07:44 tmp/

我在一个目录中,在这个目录中,可执行文件可能是一个坏主意

这些也可能工作:

setenforce 0 | reboot

echo 0 > /selinux/enforce | reboot

或:

putting SELINUX=disabled in /etc/selinux/config and reboot (making sure to comment out anything in that file enabling selinux)

selinux状态:sestatus

相关内容

  • 没有找到相关文章

最新更新