我在桌面上通過VMWare運行Ubuntu作爲來賓操作系統。它是Turnkey Linux的虛擬設備。我一直在與FTP搏鬥一段時間。我安裝了ProFTPd。有一次,我能夠使用filezilla從桌面進行FTP傳輸,但無法安裝joomla,因爲joomla應用程序無法通過ftp進入localhost,這是Linux上安裝過程中的一個步驟。需要幫助解決Ubuntu Linux上的FTP問題
我不認爲FTP服務甚至跑步,因爲我沒有看到任何偵聽端口21
[email protected]:~# sudo netstat -l
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 *:12320 *:* LISTEN
tcp 0 0 *:12321 *:* LISTEN
tcp 0 0 *:12322 *:* LISTEN
tcp 0 0 localhost:mysql *:* LISTEN
tcp 0 0 *:www *:* LISTEN
tcp 0 0 localhost:smtp *:* LISTEN
tcp 0 0 *:https *:* LISTEN
tcp6 0 0 [::]:ssh [::]:* LISTEN
udp 0 0 *:12321 *:*
udp 0 0 192.168.3.20:ntp *:*
udp 0 0 localhost:ntp *:*
udp 0 0 *:ntp *:*
udp6 0 0 fe80::20c:29ff:feee:ntp [::]:*
udp6 0 0 ip6-localhost:ntp [::]:*
udp6 0 0 [::]:ntp [::]:*
什麼是我的下一個步驟?如果我發出啓動命令沒有改變。
這裏是我的proftpd.conf中的文件
#
# /etc/proftpd/proftpd.conf -- This is a basic ProFTPD configuration file.
# To really apply changes reload proftpd after modifications.
#
# Includes DSO modules
Include /etc/proftpd/modules.conf
# Set off to disable IPv6 support which is annoying on IPv4 only boxes.
UseIPv6 on
ServerName "Debian"
ServerType inetd
DeferWelcome off
MultilineRFC2228 on
DefaultServer on
ShowSymlinks on
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayChdir .message true
ListOptions "-l"
DenyFilter \*.*/
# Use this to jail all users in their homes
# DefaultRoot ~
# Users require a valid shell listed in /etc/shells to login.
# Use this directive to release that constrain.
# RequireValidShell off
您是否嘗試關閉IPv6? – Aputsiaq
它仍然是,我只是添加了主機名稱,並幫助。 – JBeckton