简体   繁体   中英

AWS CLI eb create error LargeZipFile

Getting the following error when trying to create an environment in AWS using eb create:

$ eb create django-env

Creating application version archive "app-XXXXXX_XXXXXX". ERROR: LargeZipFile :: Filesize would require ZIP64 extensions

When you use eb commands, it first tries to create the zip file using the contents of your git repository (if I remember correctly with git ls-files ), then if it doesn't find one, send the contents of the folder. Try:

  • creating a new folder

  • copy your code

  • git init

  • git commit

and then

  • eb create django-dev

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM