热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

ParamikoPython:IOError:[Errno13]权限被拒绝

问题:我可以这样做:self.sftp.put(sourceFilePath,final_destination,use_sudo = True)我可以制作文件夹,但不能制作文件?我是否需要在para

问题:

我可以这样做:

self.sftp.put(sourceFilePath,final_destination,use_sudo = True)

我可以制作文件夹,但不能制作文件?我是否需要在paramiko中明确调用sudo或设置一些内容?我应该将文件复制到允许的空间和chowning吗?有没有办法让paramikko sudoer不使用键或不得不乱用ssh.exec_command(“sudo mv”)?我错过了什么?

代码:

class Ssh(object):
def __init__(self):
super(Ssh, self).__init__()
def setup(self):
'''Setup connection'''
try:
# DEBUG
paramiko.common.logging.basicConfig(level=paramiko.common.DEBUG)
#set username & password
username = 'sgdevbox'
password = MainFrame.ssh_pass
host = '192.168.0.170'
port = 22
self.transport = paramiko.Transport((host, port))
self.transport.connect(username = username, password = password)
self.sftp = paramiko.SFTPClient.from_transport(self.transport)
print(self.sftp.sock)
except Exception, e:
print(traceback.format_exc())
def putFiles(self, sources, listingSku):
'''
Upload images to server along with all currentItemInfo, plus initials and date
Basically build the auction and put it into the queue for verification
'''
print('\n# Ssh.putFiles() #')
if isinstance(sources, unicode):
sources = {sources,'True'}
try:
self.setup()
destination = '/var/www'
cwd = os.getcwd()
for source in sources:filename = os.path.split(source)[-1]destinatiOnFolder= listingSkufinal_path = posixpath.join(destination,destinationFolder)try: self.sftp.mkdir(final_path, mode=777)except: print(traceback.format_exc())final_destination = posixpath.join(final_path, filename)sourceFilePath = os.path.join(cwd,source)print('\n# Source Path: {}\n# Destination Path: {}\n\n'.format(sourceFilePath,final_destination))self.sftp.put(sourceFilePath, final_destination)
except Exception, e:
print(traceback.format_exc())
return

追溯:

# Source Path: C:\A\Long\Path\622-402_01.JPEG
# Destination Path: /var/www/WOOBLE-WAMBLER-SPAM-1235/622-402_01.JPEG
DEBUG:paramiko.transport.sftp:[chan 1] open('/var/www/WOOBLE-WAMBLER-SPAM-1235/622-402_01_swatch.JPEG', 'wb')
Traceback (most recent call last):
File "display_image.py", line 67, in putFiles
self.sftp.put(sourceFilePath, final_destination)
File "C:\Python27\lib\site-packages\paramiko\sftp_client.py", line 565, in put
fr = self.file(remotepath, 'wb')
File "C:\Python27\lib\site-packages\paramiko\sftp_client.py", line 245, in open
t, msg = self._request(CMD_OPEN, filename, imode, attrblock)
File "C:\Python27\lib\site-packages\paramiko\sftp_client.py", line 635, in _request
return self._read_response(num)
File "C:\Python27\lib\site-packages\paramiko\sftp_client.py", line 682, in _read_response
self._convert_status(msg)
File "C:\Python27\lib\site-packages\paramiko\sftp_client.py", line 710, in _convert_status
raise IOError(errno.EACCES, text)
IOError: [Errno 13] Permission denied

我看过的其他帖子:

> http://www.lag.net/paramiko/docs/paramiko.SFTPClient-class.html#put
> I’m trying to understand why I’m getting a “Permission Denied” error when using paramiko 1.7.6
> ‘Put’ in SFTP using PAramiko
> IOError: [Errno 13] Permission denied:
> IOError: [Errno 13] Permission denied
> Why am I getting IOError: [Errno 13] Permission denied?
> Python – IOError: [Errno 13] Permission denied:
> using shutil.copyfile I get a Python IOError: [Errno 13] Permission denied:
> https://github.com/fabric/fabric/issues/257
> https://github.com/fabric/fabric/issues/828
> https://github.com/fabric/fabric/issues/257
> http://code.activestate.com/recipes/576810-copy-files-over-ssh-using-paramiko/
> How to run sudo with paramiko? (Python)

有些帖子有些陈旧,但似乎表明paramiko没有实现它? Fabric已实现版本,但我不确定是否添加了更多依赖项.

(Pdb) import pkg_resources
(Pdb) pkg_resources.get_distribution('paramiko').version
'1.13.0'

解决方法:

1)Cron任务将文件夹从/ home / user / Desktop移动到/ var / www

2)以root用户身份登录. (明显的安全问题)

在主机服务器上运行sudo passwd root后,我现在可以使用root将文件传输到/ var / www.

我还添加了用户到www-data并递归地追踪文件和目录,但我认为设置root密码就可以了.

编辑不要做上述事情:

更改权限和/或所有权

在linux上:如果你可以ssh:

ls -ld / path / to / location

查看谁拥有该目录并具有r / w权限.

bob@bob-p7-1298c:~$ls -ld /var/www
drwxr-xr-x 3 root root 4096 Sep 24 10:39 /var/www

然后看看使用:

> usermod
> addgroup
> useradd
> chown
> chmod

给用户r / w权限.

这可以通过以下方式完成:

>更改谁拥有该目录
>将用户添加到目录组
>创建新组并更改目录上的组
>改变主人
>更改所有者,组或公共的r / w权限.

看到:

> https://askubuntu.com/questions/6723/change-folder-permissions-and-ownership
> https://askubuntu.com/questions/19898/whats-the-simplest-way-to-edit-and-add-files-to-var-www


推荐阅读
  • 本文介绍了如何使用Python的Paramiko库批量更新多台服务器的登录密码。通过示例代码展示了具体实现方法,确保了操作的高效性和安全性。Paramiko库提供了强大的SSH2协议支持,使得远程服务器管理变得更加便捷。此外,文章还详细说明了代码的各个部分,帮助读者更好地理解和应用这一技术。 ... [详细]
  • 在 Ubuntu 中遇到 Samba 服务器故障时,尝试卸载并重新安装 Samba 发现配置文件未重新生成。本文介绍了解决该问题的方法。 ... [详细]
  • Spring框架中枚举参数的正确使用方法与技巧
    本文详细阐述了在Spring Boot框架中正确使用枚举参数的方法与技巧,旨在帮助开发者更高效地掌握和应用枚举类型的数据传递,适合对Spring Boot感兴趣的读者深入学习。 ... [详细]
  • JUC(三):深入解析AQS
    本文详细介绍了Java并发工具包中的核心类AQS(AbstractQueuedSynchronizer),包括其基本概念、数据结构、源码分析及核心方法的实现。 ... [详细]
  • DAO(Data Access Object)模式是一种用于抽象和封装所有对数据库或其他持久化机制访问的方法,它通过提供一个统一的接口来隐藏底层数据访问的复杂性。 ... [详细]
  • 原文网址:https:www.cnblogs.comysoceanp7476379.html目录1、AOP什么?2、需求3、解决办法1:使用静态代理4 ... [详细]
  • com.hazelcast.config.MapConfig.isStatisticsEnabled()方法的使用及代码示例 ... [详细]
  • 本文详细介绍了 PHP 中对象的生命周期、内存管理和魔术方法的使用,包括对象的自动销毁、析构函数的作用以及各种魔术方法的具体应用场景。 ... [详细]
  • poj 3352 Road Construction ... [详细]
  • 本文总结了一些开发中常见的问题及其解决方案,包括特性过滤器的使用、NuGet程序集版本冲突、线程存储、溢出检查、ThreadPool的最大线程数设置、Redis使用中的问题以及Task.Result和Task.GetAwaiter().GetResult()的区别。 ... [详细]
  • 本文将详细介绍如何在Mac上安装Jupyter Notebook,并提供一些常见的问题解决方法。通过这些步骤,您将能够顺利地在Mac上运行Jupyter Notebook。 ... [详细]
  • 本文详细介绍了 InfluxDB、collectd 和 Grafana 的安装与配置流程。首先,按照启动顺序依次安装并配置 InfluxDB、collectd 和 Grafana。InfluxDB 作为时序数据库,用于存储时间序列数据;collectd 负责数据的采集与传输;Grafana 则用于数据的可视化展示。文中提供了 collectd 的官方文档链接,便于用户参考和进一步了解其配置选项。通过本指南,读者可以轻松搭建一个高效的数据监控系统。 ... [详细]
  • SecureCRT是一款功能强大的终端仿真软件,支持SSH1和SSH2协议,适用于在Windows环境下高效连接和管理Linux服务器。该工具不仅提供了稳定的连接性能,还具备丰富的配置选项,能够满足不同用户的需求。通过SecureCRT,用户可以轻松实现对远程Linux系统的安全访问和操作。 ... [详细]
  • 本文介绍了如何利用Shell脚本高效地部署MHA(MySQL High Availability)高可用集群。通过详细的脚本编写和配置示例,展示了自动化部署过程中的关键步骤和注意事项。该方法不仅简化了集群的部署流程,还提高了系统的稳定性和可用性。 ... [详细]
  • 深入剖析Java中SimpleDateFormat在多线程环境下的潜在风险与解决方案
    深入剖析Java中SimpleDateFormat在多线程环境下的潜在风险与解决方案 ... [详细]
author-avatar
高度的寂寞
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有