The java project under Linux uses JCIFS to access windows's attachment server connection timeout?

problem description

use jcifs to connect to the attachment server of windows, which can be accessed when the native eclipes is started. The linux of the official server always reports connection timeout, but if the attachment is started and manipulated locally, the official server can also be accessed at this time

the platform version of the problem and what methods you have tried

related codes


    
    NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(null, adminName, adminPassword);
    SmbFile remoteFile = new SmbFile(smbUrl.toString()+url,auth);
    
    remoteFile.connect();
 
    response.setCharacterEncoding("utf-8");
    response.setContentType(type);
    InputStream smbInputStream = new BufferedInputStream(new SmbFileInputStream(remoteFile));
    try{
        StreamUtils.copy(smbInputStream,response.getOutputStream());
    }finally{
        smbInputStream.close();
    }


Dec.06,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3edc8-409d4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3edc8-409d4.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?