PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Erro:EXDEV:link entre dispositivos não permitido, renomeie '/tmp/ no Ubuntu 16.04 LTS


Mesmo problema. Solução alternativa:leia o arquivo temporário, grave o arquivo em um novo local e remova o arquivo temporário:
        // Read the file
        fs.readFile(oldpath, function (err, data) {
            if (err) throw err;
            console.log('File read!');

            // Write the file
            fs.writeFile(newpath, data, function (err) {
                if (err) throw err;
                res.write('File uploaded and moved!');
                res.end();
                console.log('File written!');
            });

            // Delete the file
            fs.unlink(oldpath, function (err) {
                if (err) throw err;
                console.log('File deleted!');
            });
        });