Windows Azure Ubuntu - 500 OOPS Errors: priv_sock_get_cmd When Performing FTP Connection

I created a virtual machine on Windows Azure and launched Ubuntu on this I was able to successfully communicate using the http protocol on port 80

However, I cannot successfully use the FTP connection. Here is what I have done so far

  • Created an endpoint with open and closed ports as 21
  • Installed vsftp on the server
  • Made configuration changes in the vsftpd.conf file; local_enable=YES, write_enable=YES

Now, when I try to make a normal FTP connection on Filezilla, I have an error that says 500 OOPS: priv_sock_get_cmd

Can someone please let me know what I am missing

Help will be greatly appreciated Thanks

+4
source share
2 answers

The following steps may help:

 seccomp_sandbox=NO 
+11
source

As suggested by adding:

seccomp_sandbox=NO

This problem should be fixed in your vsftpd.conf file (usually located in / etc) (make sure that you "sudo service vsftpd restart" afterwards).

VSFTPD uses the kernel module of the kernel in a way that creates this error for specific kernels. See this post for more information: http://chemdroid.net/en/ubuntu/23-vsftpd-500-oops-priv-sock-get-cmd .

I wanted to add this detail to the reto post, but I don't have enough reputation to comment ...

+5
source

Source: https://habr.com/ru/post/1481191/


All Articles