NetBeans Remote Connection

I am trying to install a remote netBeans project and I am having problems with it. I started the PHP application from a remote server, and in the last step of confirmation, it changes the error.

There are no files available for download. Try checking Passive mode in the remote configuration.

The output log does not work:

> 215 UNIX Type: L8
> PORT 192,168,5,217,196,73
> 500 Illegal PORT command.

Has anyone had a problem setting up a remote connection? Please, help.

+3
source share
7 answers

To establish an FTP connection, select one of the following options:

  • Disable Windows Firewall.
  • Configure Windows Firewall for the passive mode FTP server as follows:

    • Open the admin command prompt.
    • "" > " " > "".
    • .
    • :

      netsh advfirewall firewall add rule name=FTPService action=allow service=ftpsvc protocol=TCP dir=in
      
    • FTP , FTP-:

      netsh advfirewall set global StatefulFTP disable
      
+3

, - , netbeans . , " ftp " , Mac OS Netbeans, , , .

  • ""
  • " "
  • ""
  • your_ftp_connection

NetBeans FTP Connection

+5

, , - SFTP. , , , SFTP (FTP SSH) .

, :

  • ""
  • "..."
  • SFTP
  • , FTP-.
+3

FTP Netbeans .

+3

; ; ; .

+2

Unable to find passive mode in OSX. This is a Netbeans error ... Therefore, I will not be able to develop on netbeans using my Mac. Already tried to download the latest version.

0
source

For me, the solution was to check Passive mode on the client and perform the following actions on the server side

in the file /etc/vsftpd.conf

pasv_enable=Yes
pasv_max_port=10100
pasv_min_port=10090

then in the terminal

iptables -I INPUT -p tcp --destination-port 10090:10100 -j ACCEPT
service iptables save
service vsftpd restart
0
source

All Articles