注意退出所有python进程,可能是在使用中导致权限不足以删除…
今晚要写搜索引擎作业,搭scrapy环境,遇到了下面问题: windows下安装pywin32报错:close failed in file object destructor:sys.excepthook is missing lost sys.stderr 解决方法: 1.右键管理员身份运行cmd命令提示符: 2. 切换到C:\Python27\Scripts文件夹下,命令为:cd C:\Python27\Scripts 3. 运行python pywin32_postinstall.py…
最近在使用idea开发时,使用git拉取远程仓库的代码时,报错Permission denied (publickey),原因是因为ssh的密钥失效,必须得重新设置下ssh的密钥即可. 命令很简单,在idea里面找到terminal终端,输入命令: ssh-keygen -t rsa -C "your_email@example.com" 命令后半部分的邮箱就是你在git远程仓库登录的邮箱,设置好后,重新拉取代码即可.…
在使用GitHub的时候,为了避免每次输入用户名密码,都会使用SSH方式代替Https. 按网上教程,大多数使用SSH-KeyGen生成公私钥对,而后上传公钥至Github,并切换Repositorie为SSH. 使用SSH-KeyGen输出如下: Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): Created directory ‘/root/.ss…
解决办法: 1.检查账号密码是否错误 2.检查freeSSHD是否是以管理员身份运行的 3.检查sftp路劲有没有配置错误,java通过sftp将图片文件传输到指定文件夹,如果这个文件夹在配置的当前目录找不到,则会报错Permission denied 2017/5/2 今天就是路径配置错误,调试了半天,差点放弃,幸好我坚持了下来,这是一个很小的错误,下次谨记要仔细一点,不要轻言放弃.…
linux 调用 jmap  报错Permission denied 解决方案: 分别对java安装目录,java的bin目录以及jmap命令设置权限 chmod jdk1..0_79 chmod bin chmod jmap…
Windows下使用ssh-add报错 Error connecting to agent: No such file or directory 环境信息 操作系统:windows 10 终端:Windows PowerShell 问题 使用ssh-add时报错 PS D:\code> ssh-add -l Error connecting to agent: No such file or directory 处理步骤 检查ssh-agent服务是否启动成功 PS D:\code> get-…
转自:http://blog.sina.com.cn/s/blog_16eaf6b940102x66q.html 有个朋友,他们那边windows虚拟机重启后,数据库不能起来报错ORA-12705无法访问NLS数据文件,或指定的环境无效,网上说的修改注册表中的NLS,发现都不管用,后来,在cmd命令行下输入set NLS出现NLS_LANG=SIMPLIFIED CHINESE_CHINA ZHS16GBK在命令行下输入set  NLS_LANG=SIMPLIFIED CHINESE_CHINA…
环境:win7  eclipse    hadoop 1.1.2 当执行创建文件的的时候, 即: String Path = "hdfs://host2:9000"; FileSystem fileSystem = FileSystem.get(new URI(Path),new Configuration()); String DIR_PATH = "hdfs://host2:9000/user/hadoop/ok"; fileSystem.mkdirs(new…
不多说,直接上干货! 问题现象 当执行创建文件的的时候, 即: String Path = "hdfs://host2:9000"; FileSystem fileSystem = FileSystem.get(new URI(Path),new Configuration()); String DIR_PATH = "hdfs://host2:9000/user/hadoop/ok"; fileSystem.mkdirs(new Path(DIR_PATH));/…