JMeter FTP tests failing on Linux FTP for 1000 users -


We are firing JMeter FTP Test (1000 users) from Windows VM to an FTP server (RHEL 6.2). (FTP 1 CPU, 60 GB HDD, 4GB RAM), and we are getting below errors after some time: Reply Message: Java.O.FileNotefxAxception: 128KFile (Requested Operation A User Mapped Section Can not open on file with)

And 12% errors were reported in the report, which is a test scheme to be used here after the investigation: There are 1000 threads in the thread group. The length of the ramp up is 600 seconds. Total duration is 780 seconds. FTP request has server IP, port number 21, remote file and local file. Receipt of request (RETR) Username and PWD are given.

The file given below is the vsftpd.conf file of RHEL FTP

  anonymous_enable = YES local_enable = yes write_enable = YES local_umask = 022 dirmessage_enable = yes xferlog_enable = Yes connection_from_port_20 = yes xferlog_std_format = yes listen = yes pam_service_name = vsftpd userlist_enable = yes tcp_wrappers = yes max_per_ip = 5000 # max no IP addresses allowed per connection Max_clients = 5000 # Max no. Addresses of different IPs that are allowed to connect Anon_max_rate = 3600 use_localtime = YES idle_session_timeout = 1800 data_connection_timeout = 1800  

and the test itself closes, we forcefully stop the application We would have tried it from a command prompt and faced with the same problem.

  jmeter -n -t FTPTest.jmx -l FTPTest_itr1.jtl  

Please suggest ways to delete errors so that tests will have a 100% pass rate .


Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -