中间件FTP搭建与账户赋权
Posted Linux常用命令
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了中间件FTP搭建与账户赋权相关的知识,希望对你有一定的参考价值。
(5)FTP服务与账号都已具备,我们在Linux上安装客户端工具,测试下FTP是否可以正常使用。
[root@yaomm ~]# yum install -y ftp ## 安装FTP客户端
……
已安装:
ftp.x86_64 0:0.17-67.el7 ## ftp客户端版本号
完毕!
[root@yaomm ~]# cd /opt/ ## 进入opt目录,查看ftp_linuxido用户主目录
[root@yaomm opt]# touch 123.txt ## 创建测试文件
[root@yaomm opt]# ftp 192.168.1.208 ## 连接FTP服务器
Connected to 192.168.1.208 (192.168.1.208).
220 (vsFTPd 3.0.2)
Name (192.168.1.208:root): ftp_linuxido ## 输入刚刚配置的FTP账户
331 Please specify the password.
Password: ## 输入密码
230 Login successful. ## 登录成功
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> help ## 获取客户端操作命令
ftp> put 123.txt ## 上传文件,当前在/opt目录下,事先在此目录下创建123.txt
local: 123.txt remote: 123.txt
227 Entering Passive Mode (192,168,1,208,210,34).
150 Ok to send data. ## 上传成功
226 Transfer complete.
ftp> mkdir linuxdir ## 创建目录
257 "/linuxdir" created ## 创建目录成功
ftp> ls ## 查看文件,上传的文件与新建的目录都展示出来了
227 Entering Passive Mode (192,168,1,208,202,22).
150 Here comes the directory listing.
-rw-r--r-- 1 1001 1001 0 Feb 24 09:21 123.txt
drwxr-xr-x 2 1001 1001 6 Feb 24 09:27 linuxdir
226 Directory send OK.
FTP其他配置可参考文档:https://security.appspot.com/vsftpd/vsftpd_conf.html。
安装文档可详见:https://linuxize.com/post/how-to-setup-ftp-server-with-vsftpd-on-centos-7/。
以上是关于中间件FTP搭建与账户赋权的主要内容,如果未能解决你的问题,请参考以下文章
Linux系统下vsftpd虚拟ftp用户账号存放在mysql数据库的FTP搭建