[Proftpd-user] 回复: An issue about prof tp ask for help
"格调" <[email protected]>
| Newsgroups | gmane.network.proftpd.user |
|---|---|
| Message-ID | <[email protected]> |
hello my OS is CentOS 6.7 (2.6.32-573.18.1.el6.toav2.x86_64) proftp version is 1.3.5a i saw the error from "/var/log/message": 2020-06-11T14:32:10.181820+08:00 proftpd[44064]: 100.70.155.16 (100.70.155.16[100.70.155.16]) - FTP session opened. 2020-06-11T14:32:10.251005+08:00 proftpd[44064]: 100.70.155.16 (100.70.155.16[100.70.155.16]) - Out of memory! 2020-06-11T14:32:11.254426+08:00 proftpd[44065]: 100.70.155.16 (100.70.155.16[100.70.155.16]) - FTP session opened. And the attachment are my proftp config file and compile-time settings. Thanks for helping me! ------------------ 原始邮件 ------------------ 发件人: "Matus UHLAR - fantomas"<[email protected]>; 发送时间: 2020年6月11日(星期四) 晚上7:54 收件人: "proftp-user"<[email protected]>; 主题: Re: [Proftpd-user] An issue about proftp ask for help On 11.06.20 19:34, 格调 wrote: >hello!&nbsp; >&nbsp; &nbsp; I am a user of proftp. please get better mail client. "&nbsp;" tags don't belong to >when i get the files from ftp using wget command, if the data files > are big enough,(at lest more than 55G)the ftp server encountered > "out of memory" error . i really wonder why! >Here is my command line: >"wget -nH --cut-dirs=5 -r&nbsp; --ftp-user=XXX --ftp-password=XXX ftp://{server_address}/{path}/" does the server say that and do you see it in its logs or does wget say that? if it's the server, please post proftpd version and the OS proftpd runs on. -- Matus UHLAR - fantomas, [email protected] ; http://www.fantomas.sk/ Warning: I wish NOT to receive e-mail advertising to this address. Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu. "The box said 'Requires Windows 95 or better', so I bought a Macintosh". _______________________________________________ ProFTPD Users List <[email protected]> Unsubscribe problems? http://www.proftpd.org/list-unsub.html _______________________________________________ ProFTPD Users List <[email protected]> Unsubscribe problems? http://www.proftpd.org/list-unsub.html
proftpd.conf
(application/octet-stream, 1.9 KB)
ServerName "ProFTPD" ServerType standalone DefaultServer on timesGMT off # Port 21 is the standard FTP port. Port 21 # Umask 022 is a good standard umask to prevent new dirs and files # from being group and world writable. WtmpLog on Umask 022 IdentLookups off UseReverseDNS off # To prevent DoS attacks, set the maximum number of child processes # to 30. If you need to allow more than 30 concurrent connections # at once, simply increase this value. Note that this ONLY works # in standalone mode, in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service # (such as xinetd) MaxInstances 30 PassivePorts 52501 52735 AuthOrder mod_auth_file.c RequireValidShell off AuthUserFile /usr/local/proftpd/ftp.passwd # Set the user and group that the server normally runs at. User nobody Group nobody # http://www.proftpd.org/docs/directives/linked/config_ref_TransferRate.html # NOTE it seems mod_xfer will be useless after mod_shaper enabled, so following line will not be in effect TransferRate APPE,RETR,STOR,STOU 10000:15000 # http://www.proftpd.org/docs/contrib/mod_shaper.html ShaperEngine on ShaperTable /usr/local/proftpd/var/shaper.tab ShaperAll downrate 900000 uprate 900000 # Normally, we want files to be overwriteable. <Directory /home> <Limit CWD RETR DIRS READ> AllowAll </Limit> </Directory> <Directory /data*> <Limit CWD RETR DIRS READ> AllowAll </Limit> </Directory> <Directory /flash> <Limit CWD RETR READ DIRS> AllowAll </Limit> </Directory> <Directory /> <Limit CWD PWD> AllowAll </Limit> <Limit ALL> DenyAll </Limit> </Directory>
Compile-time Settings
(application/octet-stream, 1.7 KB) - not displayed