filezilla

windows下FileZilla使用sftp(SSH-2)

谁说我不能喝 提交于 2019-12-03 15:28:48
puttygen.exe生成的密钥文件( SSH-2 RSA ) 分别有公钥和私钥 服务器端:~/.ssh/authorized_keys 把公钥复制到这个openssh认证文件里面。 客户端FileZilla: 编辑->设置->SFTP->添加密码文件->选择刚才生成的私钥文件。 文件->站点管理器->新建站点->填写ip和端口->选择sftp->登录类型"一般" ,然后用户填写root,密码留空即可。 点击连接,出现下面错误: 命令: keyfile "rsa-key-FileZilla.ppk" 命令: open "root@XXX.XXX.XXX.XXX" 22 命令: Pass: 错误: 认证失败。 错误: 严重错误 错误: 无法连接到服务器 关键是同样的私钥,放在winscp和pageant都可以正常认证连接啊。 难道是这种加密类型FileZilla不支持??? 寻找wiki 果然是 SSH-2 RSA加密的问题,FileZilla如果要支持 SSH-2 RSA加密,需要Putty的其他工具,首先要把密钥转换成Putty的ppk格式,这个我之前就是用这个工具做的密钥,所以没有问题,然后还需要用pageant做代理才能正常使用,在pageant中托管密钥,然后开启FileZilla就可以选择sftp并正常使用了。 http://wiki.filezilla-project

Day4-软件测试环境搭建——Linux测试环境搭建

与世无争的帅哥 提交于 2019-12-03 14:54:59
一、工具   1、VM虚拟机(已安装CentOS)   2、CRT   3、FileZilla   4、JDK   5、TOMCAT   6、jsp源码 二、VM虚拟机(已安装CentOS)   1、   2、      3、   4、   5、   6、   7、   8、运行虚拟机      9、   10、   11、   12、   13、按照如图设置,点击完成 接受更改、开始安装      14、设置root密码为123456 等待安装完成即可    三、配置linux网络设置   1、系统网络配置文件位置/etc/sysconfig/network-scripts/ifcfg-ens33 修改内容如下图:      2、(1)保存后查询正确无误后重启一下网卡    Service network restart     (2)Ping本地电脑IP是否接通      (3)如果不通,关闭防火墙重新ping     systemctl stop firewalld.service #停止firewall     systemctl disable firewalld.service #禁止firewall开机启动      firewall-cmd --state #查看默认防火墙状态(关闭后显示notrunning,开启后显示running) 四、 CRT连接测试环境  

Accidentally deleted /var/log/apache2 and now can't restart apache [closed]

隐身守侯 提交于 2019-12-03 14:20:59
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. I'm using Ubuntu 14.04 and apache2 and ispconfig 3. Just a few hours ago I accidentally deleted /var/log/apache2 folder include files, now my server can't restart apache2, how can I restore them? or is that log folder and file will auto create by system, when reboot server? When I restart apache2 * Restarting web server apache2 [fail] * The apache2 configtest failed. Output of config test was: AH00548: NameVirtualHost

Connection attempt failed with “ECONNREFUSED - Connection refused by server” [closed]

十年热恋 提交于 2019-12-03 02:34:26
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I am trying to connect to a networked machine's FileZilla server but my FileZilla Client is giving the following error while connecting. The error is: "Connection attempt failed with ECONNREFUSED - Connection refused by server" Windows Firewall is turned off on that machine and i had provided the valid

How can I stop Filezilla changing my linebreaks?

匿名 (未验证) 提交于 2019-12-03 02:00:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I'm downloading a perl CGI file from a Linux web server. It has Unix linebreaks. I edit it on a Windows PC with a decent text-editor (Geany) which preserves those linebreaks. I then upload it again with Filezilla and it has DOS linebreaks, which stop it working. I know it's Filezilla, not Geany because even if I just download it, and re-upload it, the problem recurs. Filezilla asks me, every time, if I'm OK to upload the local file (3611) bytes and overwrite the remote file (3753 bytes), and the difference between those numbers is

FTP:FileZilla无法连接到服务器,不安全的服务器

匿名 (未验证) 提交于 2019-12-03 00:32:02
之前讲了用Windows Server开启FTP服务。 Review: Windows Server下开启FTP服务 问题描述 :本来用得好好的,结果我在文件夹里放了几个*.sql文件(数据库备份文件),再用FileZilla就无法列出那个目录了。 解决办法 :去掉加密的选项,使用普通FTP;或者在服务器端开启证书验证。 本文用第一种做法。 但这样做,有什么问题吗(数据用明文传递?) 文章来源: FTP:FileZilla无法连接到服务器,不安全的服务器

Ubuntu链接服务器

匿名 (未验证) 提交于 2019-12-02 23:55:01
本篇文章介绍,如何在Ubuntu系统下连接远程Ubuntu系统并传输文件。 一. 连接远程Ubuntu服务器。 1. 打开命令行,输入 : sudo apt-get update , 对系统进行更新。 2. 安装 OpenSSH Server,输入 : sudo apt-get install openssh-server 3. 确认 SSH Server 是否启动, 输入: sudo ps -e |grep ssh。如果正确启动, 命令行中会显示sshd。如图所示: 4. 安装Putty, 输入: sudo apt-get install putty 。 其中,Putty是一款远程登录工具,用它可以非常方便的登录到Linux服务器上进行各种操作(命令行的方式) 5. 使用Putty 连接到远程服务器, 输入: sudo putty 。 会弹出一个登录页面。 如图所示: 在 Host Name 中, 填入要连接的服务器的ip地址。 再点击Open, 就可以连接服务器啦。 6. 测试服务器能否正常使用。如输入python. >> print 'hello' 二. 传输文件 在这里,使用FileZilla进行文件传输。FileZilla是一个免费开源的FTP软件。 1. 在本机上安装FileZilla客户端。 输入: sudo apt-install filezilla 2.

FTP 读取目录列表失败 permission denied 传输文件失败

匿名 (未验证) 提交于 2019-12-02 23:43:01
问题描述: ftp软件读取fileZilla读取目录失败;传输文件失败; ftp软件读取fileZilla能连接正常,有一些目录读取失败; ftp软件有些目录打不开;文件传不上去; 报错信息: 错误: permission denied 错误: 读取目录列表失败 错误:write:permission denied 错误: 传输文件失败 解决方法: 这两天在服务器上配置JavaWeb环境。安装好Tomcat,在使用fileZilla往webapps文件夹里放web项目的时候,遇到了这个问题。 推测可能是fileZilla没有拿到管理员权限,所以部分文件夹权限不够进不去。 在服务器重设无法读取的目录的权限: $ sudo chmod -R 777 目录名/ -R 应用到此文件夹下所有子目录和文件 -777 所有用户都拥有最高权限 执行完这一步,就可以在ftp软件上正常读取这个文件夹了。 *思考: 777并不是一个好的操作,会增加服务器的风险,也让文件权限变得难以维护。 应该有更好的方法,例如在ftp软件上获得管理员权限、或是为本机IP白名单。 但目前的学习重点在javaweb,这些只能放在以后慢慢去学习。 文章来源: https://blog.csdn.net/saltsoul/article/details/92392872

阿里云安装filezilla

匿名 (未验证) 提交于 2019-12-02 23:43:01
1、连接服务器 ssh 或者 远程连接 到服务器; 2、安装相应软件 安装EPEL,EPEL是yum的一个软件源,里面包含了许多基本源里没有的软件; 1 yum -y install epel-release 安装filezilla 1 yum -y install filezilla 安装 1 #安装vsftpd 2 yum -y install vsftpd 3 #设置开机启动 4 chkconfig vsftpd on 5 #修改配置 注释掉/etc/vsftpd/ftpusers文件中的root,因为这一行禁止root登录,然后启动vsftpd服务 6 systemctl start vsftpd 3、客户端与服务器端连接 4、测试