[root@VM-20-14-centos lighthouse]# sudo systemctl restart vsftpd
Job for vsftpd.service failed because the control process exited with error code. See "systemctl status vsftpd.service" and "journalctl -xe" for details.
[root@VM-20-14-centos lighthouse]# sudo netstat -antup | grep ftp
我已经在centos 7上配置了vsftpd服务器,它在本地主机(centos 7计算机)上运行得很好。但是,当我试图从windows机器访问浏览器中的ftp服务器时,它无法工作。
vsftpd is working on port no 21.
[root@centos ~]# netstat -tulpn |grep 21
tcp6 0 0 :::21 :::* LISTEN 29312/vsftpd
如何从浏览器访问它?
我试图同时安装proftpd(手动)和vsftpd(通过yum),但我仍然无法得到我想要的。我希望允许用户访问他们的主文件夹。这是典型的目标。安装这两台服务器时都没有出现错误,我配置了它,但我无法重新启动正常情况下的任何人:
service vsftpd restart
但失败了。如果通过浏览器转到ftp://localhost,我可以看到唯一一个名为"pub“的文件夹,它是空的。我现在甚至不知道现在运行哪个服务器(vsftpd或proftpd)。我对Linux和CentOS完全陌生,不知道如何找到它。如何纠正其中一台服务器的启动?
我正在尝试创建一个映像,它将在centos上运行ftp服务器。Dockerfile内容如下:
FROM centos
RUN \
yum update -y && \
yum install vsftpd -y
EXPOSE 21
CMD vsftpd -DFOREGROUN
我在命令下跑:
docker build -f webserver .
它要求我输入如下:
Please select the geographic area in which you live. Subsequent configuration
questions will narro
[root@VM_81_36_centos vsftpd_user_conf]# systemctl start vsftpd
Job for vsftpd.service failed because the control process exited with error code. See "systemctl status vsftpd.service" and "journalctl -xe" for details.
我使用powershell来创建docker容器,所以我找到了dockerfile,并尝试使用dockerfile构建镜像,这样我就可以创建我的docker容器了,一旦运行,它就会给我这个错误"COPY failed: stat /var/lib/docker/tmp/docker-builder246732598/vsftpd.conf: no so file or directory“。另外,我如何创建与ftp服务器的码头容器,一旦这项工作?
这是我的dockerfile中的内容
FROM centos:7
ARG USER_ID=14
ARG GROUP_ID=50
MAIN
我有一个CentOS服务器,在那里我安装了vsftpd服务,但是我收到了错误。
bash: sftp:命令未找到
即使是which sftp命令也找不到这个服务。
具体步骤如下:
作为根:
yum install vsftpd
Total download size: 139 k
Is this ok [y/N]: **y**
配置:
vi /etc/vsftpd/vsftpd.conf
将anonymous_enable=YES更改为anonymous_enable=NO
在userlist_deny=NO之后添加userlist_enable
添加允许的用户:
vi /etc/vsft
我正在尝试使用FTP在Java中部署一个测试容器,
private final static ImageFromDockerfile imageDockerFile = new ImageFromDockerfile().withFileFromClasspath("Dockerfile",
"ftp_container/Dockerfile")