Подключение к серверу ftps из node.js
Я установил простой ftps-сервер в Ubuntu, используя vsftpd, и смог без проблем получить доступ к серверу из filezilla. Но я хочу иметь возможность подключиться к нему из скрипта node.js, чтобы я мог читать / записывать файлы через него. Я пробовал 2 библиотеки, но до сих пор не вижу результатов. я использовал JSFTP
а также ftps
библиотеки, но я не вижу никаких результатов.
JSFTP
var JSFtp = require("jsftp");
var Ftp = new JSFtp({
host: "192.168.1.3",
port : 21,
user: "ftpuser", // defaults to "anonymous"
pass: "somepassword", // defaults to "@anonymous"
debugMode : true
});
Ftp.ls("./files", function(err, res) {
console.log('the result ' + res + err);//prints nothing
res.forEach(function(file) {
console.log(file.name);
});
});
ftps (я установил модуль lftp перед запуском кода)
var FTPS = require('ftps');
var ftps = new FTPS({
host: '192.168.1.3', // required
username: 'ftpuser', // required
password: 'somepassword', // required
protocol: 'ftps', // optional, values : 'ftp', 'sftp', 'ftps',... default is 'ftp'
// protocol is added on beginning of host, ex : sftp://domain.com in this case
port: 21 // optional
// port is added to the end of the host, ex: sftp://domain.com:22 in this case
});
ftps.raw('ls -l').exec(function(err,res) {
console.log(err);//nothing
console.log(res);//nothing
});
ftps.cd('./files').ls().exec(function(err,res){
console.log(err);//nothing
console.log(res);//nothing
})
Как настроить скрипт node.js для доступа к файлам?
Но с помощью curl ( http://www.binarytides.com/vsftpd-configure-ssl-ftps/) я смог вывести каталог. Но единственное, чего я не понял, это почему мы использовали порт 6003
и не 21
?
curl --ftp-ssl --insecure --ftp-port 192.168.1.3:6003 --user ftpuser:somepassword ftp://192.168.1.3
Обновление- решено с помощью node-ftp
var Client = require('ftp');
var fs = require('fs');
var c = new Client();
c.on('ready', function() {
c.list("./files",function(err, list) {
if (err) throw err;
console.dir(list);
c.end();
});
});
// connect to localhost:21 as anonymous
//var c = new Client();
c.on('ready', function() {
c.get('./files/iris.data.txt', function(err, stream) {
if (err) throw err;
stream.once('close', function() { c.end(); });
stream.pipe(fs.createWriteStream('foo.local-copy.txt'));
});
});
c.connect(
{
host: "192.168.1.3",
port : 21,
user: "ftpuser", // defaults to "anonymous"
password: "somepassword", // defaults to "@anonymous"
secure : true,
pasvTimeout: 20000,
keepalive: 20000,
secureOptions: { rejectUnauthorized: false }
});
Я понимаю, что мы используем secure
свойство здесь, но что я делал не так в предыдущем коде?