Linuxは、FTPファイルサーバの下に設定しました

1、ダウンロードしてvsftpd.rpmをインストール

vsftp.rpmダウンロード

#查看系统是否安装了ftp,若安装了vsftp,使用这个命令会在屏幕上显示vsftpd的版本 
rpm  -qa|grep vsftpd

#卸载ftp
rpm -e vsftpd

#安装vsftp,先cd去所在目录
rpm -ivh --nodeps --force vsftpd-2.2.2-24.el6.x86_64.rpm

#设置开机启动
chkconfig vsftpd on

管理vsftpd相关命令:
启动vsftpd:  service vsftpd start
停止vsftpd:  service vsftpd stop
重启vsftpd:  service vsftpd restart


#关闭sellinux
1、立即关闭
setenforce 0

2、重启也关闭
vi /etc/selinux/config

    #修改
    SELINUX=disabled

3、查看是否关闭
getenforce

2、ファイアウォール、開いているポート21を設定します

vi /etc/sysconfig/iptables
在REJECT行之前添加如下代码

-A INPUT -p tcp -m state --state NEW -m tcp --dport 21 -j ACCEPT
保存和关闭文件,重启防火墙
service iptables start

3、vsftpdはサーバの設定

useradd ftpUser -s /sbin/nologin -d /home/yangxi #1、创建个普通用户用于连接ftp,-d的家目录是ftp连接上默认访问的。这个禁止登录,是禁止远程连接服务器,不是禁止登录ftp

passwd ftpUser #敲回车,设置密码

ftpusers 是黑名单,禁止使用vsftpd的用户列表文件。记录不允许访问FTP服务器的用户名单

user_list   禁止或允许使用vsftpd的用户列表文件。这个文件中指定的用户缺省情况(即在/etc/vsftpd/vsftpd.conf中设置userlist_deny=YES)

 メインの設定ファイルでvsftpd.conf

# Example config file /etc/vsftpd/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=YES
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
anon_upload_enable=YES
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# The target log file can be vsftpd_log_file or xferlog_file.
# This depends on setting xferlog_std_format parameter
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
#
# The name of log file when xferlog_enable=YES and xferlog_std_format=YES
# WARNING - changing this filename affects /etc/logrotate.d/vsftpd.log
#xferlog_file=/var/log/xferlog
#
# Switches between logging into vsftpd_log_file and xferlog_file files.
# NO writes to vsftpd_log_file, YES to xferlog_file
xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120
#
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
#
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
#
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
# predicted this attack and has always been safe, reporting the size of the
# raw file.
# ASCII mangling is a horrible feature of the protocol.
ascii_upload_enable=YES
ascii_download_enable=YES
#
# You may fully customise the login banner string:
ftpd_banner=Welcome to blah FTP service.
#
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd/banned_emails
#
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
chroot_local_user=YES
#chroot_list_enable=YES
# (default follows)
#chroot_list_file=/etc/vsftpd/chroot_list
#
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
#
# When "listen" directive is enabled, vsftpd runs in standalone mode and
# listens on IPv4 sockets. This directive cannot be used in conjunction
# with the listen_ipv6 directive.
listen=YES
#
# This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6
# sockets, you must run two copies of vsftpd with two configuration files.
# Make sure, that one of the listen options is commented !!
#listen_ipv6=YES

pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
local_root=/var/ftp

 再起動:サービスvsftpdの再起動、私はここに持っている自分の写真を追加します

 

 4、Javaのドッキング

#添加依赖
<dependency>
	<groupId>commons-net</groupId>
	<artifactId>commons-net</artifactId>
	<version>3.3</version>
	<classifier>ftp</classifier>
</dependency>
public class FTPUtils {
	
	private static final Logger logger = LoggerFactory.getLogger(FTPUtils.class);

	public static char separator= IOUtils.DIR_SEPARATOR_UNIX;
	private static String ftpIp = "192.168.0.222";
	private static String ftpUser = "ftpUser";
	private static String ftpPass = "ftpUser";
	public static String DATA_ROOT_PATH=  "";
	private static Integer ftpPort = 21;
	public static String imgtemporaryUrl= "";
	
	private static FTPClient ftpClient = null;

	
	public static String getPhotoPath(String userId) {
		return DATA_ROOT_PATH + separator + "photos" + separator+userId+separator;
	}
	
	public static boolean upload(InputStream input, String ftpFileName, String ftpDirectory) {
		try {
			if (FTPUtils.open()) {
				FTPUtils.put(input, ftpFileName, ftpDirectory);
				FTPUtils.close();
			}
		} catch (Exception e) {
			e.printStackTrace();
			return false;
		}
		return true;
	}
	/**
	 * 链接到服务器
	 * @return
	 * @throws Exception
	 */
	public static boolean open() {
		if (ftpClient != null && ftpClient.isConnected()) {
			return true;
		}
		try {
			ftpClient = new FTPClient();
			// 连接
			ftpClient.connect(ftpIp, ftpPort);
			ftpClient.login(ftpUser, ftpPass);
			// 检测连接是否成功
			int reply = ftpClient.getReplyCode();
			if (!FTPReply.isPositiveCompletion(reply)) {
				close();
				logger.error("FTP server refused connection.");
			}
			logger.info("open FTP success:" + ftpIp + ";port:" + ftpPort
					+ ";name:" + ftpUser + ";pwd:" + ftpPass);
			ftpClient.setFileType(ftpClient.BINARY_FILE_TYPE); // 设置上传模式.binally
			// or ascii
			return true;
		} catch (Exception ex) {
			// 关闭
			close();
			logger.error(ex.getMessage(), ex);
			return false;
		}
	}
	/**
	 * 上传文件到FTP服务器
	 * 
	 * @param input
	 *            本地文件目录和文件名
	 * @param ftpFileName
	 *            上传后的文件名
	 * @param ftpDirectory
	 *            FTP目录如:/path1/pathb2/,如果目录不存在回自动创建目录
	 * @throws Exception
	 */
	public static boolean put(InputStream input, String ftpFileName,String ftpDirectory) {
		if (!ftpClient.isConnected()) {
			return false;
		}
		boolean flag = false;
		if (ftpClient != null) {
			try {
				// 创建目录
				FTPUtils.mkDir(ftpDirectory);
				ftpClient.setBufferSize(1024);
				ftpClient.setControlEncoding("UTF-8");
				// 设置文件类型(二进制)
				ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
				ftpClient.enterLocalPassiveMode();
				// 上传
				flag = ftpClient.storeFile(new String(ftpFileName.getBytes(),"iso-8859-1"), input);
				
			} catch (Exception e) {
				FTPUtils.close();
				logger.error(e.getMessage(), e);
				return false;
			} finally {
				IOUtils.closeQuietly(input);
			}
		}
		logger.info("success put file " + " to " + ftpDirectory + ftpFileName);
		return flag;
	}
	public static boolean mkDir(String ftpPath) {
		if (!ftpClient.isConnected()) {
			return false;
		}
		try {
			// 将路径中的斜杠统一
			char[] chars = ftpPath.toCharArray();
			StringBuffer sbStr = new StringBuffer(256);
			for (int i = 0; i < chars.length; i++) {
				if ('\\' == chars[i]) {
					sbStr.append('/');
				} else {
					sbStr.append(chars[i]);
				}
			}
			ftpPath = sbStr.toString();
			if (ftpPath.indexOf('/') == -1) {
				// 只有一层目录
				ftpClient.makeDirectory(new String(ftpPath.getBytes(), "iso-8859-1"));
				ftpClient.changeWorkingDirectory(new String(ftpPath.getBytes(), "iso-8859-1"));
			} else {
				// 多层目录循环创建
				String[] paths = ftpPath.split("/");
				// String pathTemp = "";
				for (int i = 0; i < paths.length; i++) {
					ftpClient.makeDirectory(new String(paths[i].getBytes(),"iso-8859-1"));
					ftpClient.changeWorkingDirectory(new String(paths[i].getBytes(), "iso-8859-1"));
				}
			}
			return true;
		} catch (Exception e) {
			logger.error(e.getMessage(), e);
			return false;
		}
	}
	/**
	 * 关闭链接
	 */
	public static void close() {
		try {
			if (ftpClient != null && ftpClient.isConnected())
				ftpClient.disconnect();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
	/**
     * 通过文件名删除Ftp服务器上的文件
     * @param fileName 文件名,该文件名从ftp服务器根路径开始
     *                 例:"/root/sample/sample.txt"
     * */
    public static boolean deleteFileOnFtp(String fileName){
    	open();
    	if (!ftpClient.isConnected()) {
			return false;
		}
        try {
            
            boolean flag = ftpClient.deleteFile(fileName);
            
            return  flag;
        }catch (IOException e) {
            e.printStackTrace();
            return false;
        } finally {
        	close();
        }
    }
    public static String uploadForMultipartFile(MultipartFile file, String ftpFileName, String ftpDirectory){
    	String reFileName = "";
		if (!file.isEmpty()) {
			String str[] = file.getContentType().split("/");								
			// 判断是否是图片文件
		    if(str[1].equals("png")||str[1].equals("jpeg")||str[1].equals("jpg")||str[1].equals("bmp")||str[1].equals("gif")){			    	
		    	
	            try {  
	            	String OriginalFilename = file.getOriginalFilename();
					String fileSuffix = OriginalFilename.substring(OriginalFilename.lastIndexOf(".") + 1).toLowerCase();
				    String fileName = ftpFileName+"."+fileSuffix;  
				    
		            
		            boolean flag = upload(file.getInputStream(), fileName, ftpDirectory);
	            	
		            if(flag){
		            	reFileName = fileName;
		            }
	            }catch(Exception e) {
	            	e.printStackTrace();
	            }  
             }else{
             }
        }
		return reFileName;
	}
    public static FTPClient getFTPClient() {
        FTPClient ftpClient = new FTPClient();  
        try {  
            ftpClient = new FTPClient();  
            ftpClient.connect(ftpIp, ftpPort);
			ftpClient.login(ftpUser, ftpPass);// 登陆FTP服务器  
            if (!FTPReply.isPositiveCompletion(ftpClient.getReplyCode())) {  
            	logger.info("未连接到FTP,用户名或密码错误。");
            	//System.out.println("未连接到FTP,用户名或密码错误。");
                ftpClient.disconnect();  
            } else {
            	logger.info("FTP连接成功。。");
            	//System.out.println("FTP连接成功。");
            }  
        } catch (SocketException e) {
            e.printStackTrace();  
            logger.info("FTP的IP地址可能错误,请正确配置。");
           // System.out.println("FTP的IP地址可能错误,请正确配置。");
        } catch (IOException e) {  
            e.printStackTrace();  
            logger.info("FTP的端口错误,请正确配置。");
            //System.out.println("FTP的端口错误,请正确配置。");
        }  
        return ftpClient;  
    }
	/**
	 * 根据地址返回流
	 * @param filePath
	 * @return
	 * @throws Exception
	 */
	public static InputStream getInputStream(String filePath) throws Exception{
		if(StringUtils.isNotBlank(filePath)) return new FileInputStream(new File(filePath));
		return null;
	}
	public static void main(String[] args) {
		FileInputStream inputStream = null;
		try {
			inputStream = new FileInputStream(new File("C:\\FileSystem\\72035b95379844a09506ab11b7f1edf3.png"));
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		}
		boolean upload = FTPUtils.upload(inputStream, "72035b95379844a09506ab11b7f1edf3.png", "photos\\111111");
		System.out.println(upload);
	}

}
nginx添加路由配置:
location /photos/ {
    alias /var/ftp/photos/;
}

访问上传图片的地址:http://192.168.0.222/photos/123456/72035b95379844a09506ab11b7f1edf3.png

 

公開された130元の記事 ウォンの賞賛379 ビュー470 000 +

おすすめ

転載: blog.csdn.net/qq_31122833/article/details/103362040