python - 使用 cat 时权限被拒绝 - 即使作为 root?

标签 python bash ubuntu cat

我怎么可能使用以下方法获得拒绝的权限?我正在使用 python 2.7 和 ubuntu 12.04

下面是我的mapper.py文件

import sys
import json

for line in sys.stdin:
    line = json.loads(line)
    key = "%s:%s" % (line['user_key'],line['item_key'])
    value = 1
    sys.stdout.write('%s\t%s\n' % (key,value))

下面是我的数据文件

{"action": "show", "user_key": "heythat:htuser:32", "utc": 1368339334.568242, "id": "d518b7c5-a180-439b-8036-2bb40ca080cd", "item_key": "heythat:htitem:1000"}
{"action": "click", "user_key": "heythat:htuser:32", "utc": 1368339334.573988, "id": "cc8c35ec-9e67-4ef8-a189-6116c7d0336a", "item_key": "heythat:htitem:1001"}
{"action": "click", "user_key": "heythat:htuser:32", "utc": 1368339334.575226, "id": "6c457f9a-afc2-4b61-be2f-d4ea2863aa69", "item_key": "heythat:htitem:1002"}
{"action": "show", "user_key": "heythat:htuser:32", "utc": 1368339334.575315, "id": "e0b08c30-459b-4f77-b9a4-05939457ab99", "item_key": "heythat:htitem:1000"}
{"action": "click", "user_key": "heythat:htuser:32", "utc": 1368339334.57538, "id": "90084ea2-75c6-4b8a-bc22-9d9f2da1c0de", "item_key": "heythat:htitem:1002"}
{"action": "show", "user_key": "heythat:htuser:32", "utc": 1368339334.57538, "id": "2f76a861-2b66-430a-b70d-2af6e1b9f365", "item_key": "heythat:htitem:1001"}
{"action": "show", "user_key": "heythat:htuser:32", "utc": 1368339334.57538, "id": "282eec8a-7f6d-4ad3-917a-aae049062d87", "item_key": "heythat:htitem:1002"}
{"action": "show", "user_key": "heythat:htuser:32", "utc": 1368339334.575447, "id": "bc48a6bc-f8f8-420e-9b80-0bd0c2bbde0d", "item_key": "heythat:htitem:1000"}
{"action": "show", "user_key": "that:htuser:32", "utc": 1368339334.575513, "id": "14b49763-e2fe-4beb-bff6-f4b34b3d2ef3", "item_key": "that:htitem:1001"}
{"action": "show", "user_key": "that:htuser:32", "utc": 1368339334.575596, "id": "983cbcf3-4375-4b3b-86ed-a8fbc86ff4b3", "item_key": "that:htitem:1002"}

下面是我的错误

 cat /home/ubuntu/workspace/logging/data.txt | /home/ubuntu/workspace/logging/mapper.py
bash: /home/ubuntu/workspace/logging/mapper.py: Permission denied

最佳答案

你的 mapper.py 文件需要是可执行的(在一些可执行分区上)所以 chmod a+x mapper.py

标的execve(2)系统调用失败

   EACCES Execute permission is denied for the file or a script or ELF
          interpreter.

   EACCES The file system is mounted noexec.

关于python - 使用 cat 时权限被拒绝 - 即使作为 root?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16504990/

相关文章:

Python从列表的索引中获取值

python - 在不使用 while 循环的情况下获取数据帧列中的平均值

python - 有些模块以前可以在python中导入,但现在只能在ipython2中导入

linux - 编写 shell 脚本以将一个文件的内容查找到另一个文件中并显示所有出现的情况

python - Python 中的动态单行打印(时间?)

mysql - 如何使用 MySQL Docker 镜像中的脚本执行查询?

bash - GOLANG 检查mongodb是否正在运行

Selenium 无法从 Jenkins 运行 Firefox 浏览器

linux - 我在 ubuntu 中更新和安装新 paquet 时遇到问题

php - PHP 7.0 FastCGI 进程管理器启动失败