Chào mọi người. Mình gặp phải vấn đề kết nối FTP ở Docker cần nhờ mọi người giúp đỡ.
Mình có một con app spring boot, dùng thư viện apache common net
Và một con FTP Server ở AWS EC2
Mình kết nối FTP Server ở filezilla và upload file lên bình thường
Con app của mình cũng upload bình thường khi chạy ở local.
Nhưng khi mình chạy con app này trong docker thì bị lỗi, kết nối thành công nhựng không upload file được
Reply code là 500
Cấu hình như sau:
Dockerfile:
FROM openjdk:11
RUN mkdir /app
COPY build/libs/aws-batch1-1.0.0.jar /app/aws-batch1.jar
ENTRYPOINT ["java","-jar","/app/aws-batch1.jar","Test"]
Image build command:
docker build -t aws-batch1 .
Image run command:
docker run aws-batch1
Code connect FTP:
private boolean connectFTPServer() throws IOException {
LOGGER.info("CONNECT");
boolean flg = true;
try {
ftpClient.connect(FTP_SERVER_ADDRESS, FTP_SERVER_PORT_NUMBER);
ftpClient.login(FTP_USERNAME, FTP_PASSWORD);
} catch (IOException e) {
LOGGER.error("CONNECT FAILED", e);
flg = false;
}
int replyCode = ftpClient.getReplyCode();
LOGGER.info("replyCode: " + replyCode);
if (!FTPReply.isPositiveCompletion(replyCode)) {
flg = false;
}
if (!flg) {
throw new IOException();
}
return flg;
}
Code upload file:
public boolean uploadFile(byte[] content, String fileName)
throws IOException {
boolean flg = false;
LOGGER.info("uploadFile");
if (connectFTPServer()) {
LOGGER.info("connectFTPServer success");
LOGGER.info("content: " + new String(content));
try (InputStream is = new ByteArrayInputStream(content)) {
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
boolean storeFile = ftpClient.storeFile(fileName, is);
LOGGER.info("storeFile: " + storeFile);
LOGGER.info("ftpClient.getReplyCode(): " + ftpClient.getReplyCode());
flg = storeFile &&
ftpClient.getReplyCode() ==
FTPReply.CLOSING_DATA_CONNECTION;
if (!flg) {
throw new IOException("FTP error");
}
} finally {
closeConnectionFTPClient();
}
}
return flg;
}
Log when upload on local successful:
uploadFile
CONNECT
replyCode: 230
connectFTPServer success
content: test
storeFile: true
ftpClient.getReplyCode(): 226
Log when upload on Docker failed:
uploadFile
CONNECT
replyCode: 230
connectFTPServer success
content: test
storeFile: false
ftpClient.getReplyCode(): 500
Nhờ mọi người xem giúp mình có thiếu config hay code ở chỗ nào không
Thanks.