Hi, I need to upload files larger than 4.4Gb (iso DVD) on CentOS (5.5 x64) http server (httpd-2.2.3-43.el5.centos) On the apache server set in my /etc/php.ini upload_max_filesize = 4900M post_max_size = 5000M In my httpd.conf I set : LimitRequestBody 0 I'm using firefox and/or chrome client for upload a file with 4.2gb size on the server. But it doesn't work. Everything work fine and I can upload my file if it's not greater than 2gb. I see that there are a technical apache limitation. http://httpd.apache.org/docs/current/mod/core.html#limitrequestbody how to get around this limitation for upload a DVD iso (4.2Gb)? Regards. __________________________ Avant d'imprimer, pensez ? l'environnement ! Please consider the environment before printing ! Ce message et toutes ses pi?ces jointes sont confidentiels et ?tablis ? l'intention exclusive de ses destinataires. Toute utilisation non conforme ? sa destination, toute diffusion ou toute publication, totale ou partielle, est interdite, sauf autorisation expresse. IFP Energies nouvelles d?cline toute responsabilit? au titre de ce message. This message and any attachments are confidential and intended solely for the addressees. Any unauthorised use or dissemination is prohibited. IFP Energies nouvelles should not be liable for this message. __________________________
On Mon, Jan 13, 2014 at 9:05 AM, MOKRANI Rachid <rachid.mokrani at ifpen.fr>wrote:> Hi, > > > > I need to upload files larger than 4.4Gb (iso DVD) on CentOS (5.5 x64) > http server (httpd-2.2.3-43.el5.centos) >If you have shell access, why don't you just rsync the file? Either normal rsync or rsync via ssh. Or ftp.> > > > On the apache server set in my /etc/php.ini > > upload_max_filesize = 4900M > > post_max_size = 5000M > > > > In my httpd.conf I set : > > LimitRequestBody 0 > > > > I'm using firefox and/or chrome client for upload a file with 4.2gb size > on the server. > > > > But it doesn't work. > > > > Everything work fine and I can upload my file if it's not greater than > 2gb.> > > I see that there are a technical apache limitation. > > http://httpd.apache.org/docs/current/mod/core.html#limitrequestbody > > > > how to get around this limitation for upload a DVD iso (4.2Gb)? >See my suggestions above.> > > > Regards. > > > > __________________________ > Avant d'imprimer, pensez ? l'environnement ! Please consider the > environment before printing ! > Ce message et toutes ses pi?ces jointes sont confidentiels et ?tablis ? > l'intention exclusive de ses destinataires. Toute utilisation non conforme > ? sa destination, toute diffusion ou toute publication, totale ou > partielle, est interdite, sauf autorisation expresse. IFP Energies > nouvelles d?cline toute responsabilit? au titre de ce message. This message > and any attachments are confidential and intended solely for the > addressees. Any unauthorised use or dissemination is prohibited. IFP > Energies nouvelles should not be liable for this message. > __________________________ > _______________________________________________ > CentOS mailing list > CentOS at centos.org > http://lists.centos.org/mailman/listinfo/centos >-- ---~~.~~--- Mike // SilverTip257 //
On 13/01/14 3:05 PM, MOKRANI Rachid wrote:> Hi, > > I need to upload files larger than 4.4Gb (iso DVD) on CentOS (5.5 x64) > http server (httpd-2.2.3-43.el5.centos)Maybe this is overkill for you but I run file sender for very similar tasks: https://www.assembla.com/spaces/file_sender/wiki And have shunted a couple of hundred gig over it no problems. Its great for shunting volumes of university and research data around. <snip>> Everything work fine and I can upload my file if it's not greater than > 2gb.Wouldn't be an underlying files system and/or volume limit your hitting would it? Also +1 for just sftp/rsync if you already have shell access. Cheers -pete -- Peter Brady Email: pdbrady at ans.com.au Skype: pbrady77 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 946 bytes Desc: OpenPGP digital signature URL: <http://lists.centos.org/pipermail/centos/attachments/20140113/ffb360ff/attachment-0001.sig>
From: MOKRANI Rachid <rachid.mokrani at ifpen.fr>> I need to upload? files larger than 4.4Gb (iso DVD) on CentOS (5.5 x64) > http server (httpd-2.2.3-43.el5.centos)? ?Maybe try the answer there: http://stackoverflow.com/questions/13574542/4gb-http-file-uploads-using-jquery-file-upload-apache-and-php JD