Azure App fails to push: kudu.dll: not found - azure

I've been using git to deploy a PHP Azure WebApp from Visual Studio.
Suddenly, when I try to push, I get the following error:
Ivans-MacBook-Pro-4:myapp ivan$ git push azure master
Enumerating objects: 13, done.
Counting objects: 100% (13/13), done.
Delta compression using up to 8 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (7/7), 537 bytes | 537.00 KiB/s, done.
Total 7 (delta 4), reused 0 (delta 0)
remote: hooks/post-receive: 4: hooks/post-receive: /opt/Kudu/KuduConsole/kudu.dll: not found
To https://ivandemoapp.scm.azurewebsites.net/ivandemoapp.git
76c077f..ed6bddd master -> master
I haven't found any valid suggestions in other questions.
What can I do?

Visit your kudu website, https://ivandemoapp.scm.azurewebsites.net/newui .
Use rm to delete everything inside /home folder. Then try to redeploy your web app.

Related

Dyno won't show up when I push Procfile to master to deploy the app

When trying to deploy my app; (an app for posting 18,982 screenshots to Twitter with a twitterbot I made, trying to run it in the background), I use Windows Command Prompt and I utilize node for pushing code to the master of my app but it I keep getting an error message and my dyno won't show up (even though the Procfile I made includes worker: node server.js
Here is the error message whenever I try to push to master.
F:\xxxxxxxxxxxxxxxx>git push heroku master
Enumerating objects: 18996, done.
Counting objects: 100% (18996/18996), done.
Delta compression using up to 12 threads
Compressing objects: 100% (18988/18988), done.
Writing objects: 100% (18996/18996), 4.38 GiB | 108.26 MiB/s, done.
Total 18996 (delta 6), reused 18992 (delta 5)
remote:
remote: ! Size of checkout and restored submodules exceeds 1 GB. Reduce size and try pushing again.
remote:
To https://git.heroku.com/xxxxxxxxxxxxxxxxx.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/xxxxxxxxxxxxxxxxx.git'
I followed instructions from these tutorials:
Tutorial blog
Video Tutorial
The problem is not in your code.
The problem is that you are trying to upload code which exceeds 1GB....
Size of checkout and restored submodules exceeds 1 GB. Reduce size and try pushing again.
Heroku limit your size to 500MB

Cannot deploy a build in heroku (NODEJS)

I'm trying to deploy a build in heroku but isn't not possible, the console stays like this for a long time when it supposed to deploy immediately.
Enumerating objects: 12, done.
Counting objects: 100% (12/12), done.
Delta compression using up to 4 threads
Compressing objects: 100% (9/9), done.
Writing objects: 100% (9/9), 1.22 KiB | 124.00 KiB/s, done.
Total 9 (delta 5), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
Herkou web says this.
Heroku services is down for some reasons now https://status.heroku.com/

Git push command getting stuck after 100%

I am on branch fsp .I have used Following commands:
git pull origin master
git add .
git commit -m "message"
and then
abc#abc689:~/Workspace2/M-Egal(fsp)$ git push origin fsp
Counting objects: 103, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (87/87), done.
Writing objects: 100% (103/103), 20.31 KiB | 0 bytes/s, done.
Total 103 (delta 34), reused 0 (delta 0)
After this it is not responding. It is stuck at this point can anyone help ?
I have ssh connection with account and have used these steps several time before also.
The issue has been resolved after I switched the Internet connection from local cafe's Wi-Fi to mobile data

GitHub cloning - unable to access attributes from another linux account

I have a repository on GitHub. I tried to to connect to this repository from my laptop with Debian. I want to connect from one of my linux accounts: php-ocsclient. But I did not succeed.
The strange thing is that the error message said that there was no access to /home/gameboy/.config/git/attributes. Why does it need the access to another account?
I purged git completelly from my laptop an reinstall but this strange thing remained.
php-ocsclient#localhost:~/public_html$ git clone https://github.com/trzczy/php-ocsclient.git
Cloning into 'php-ocsclient'...
remote: Counting objects: 47, done.
remote: Total 47 (delta 0), reused 0 (delta 0), pack-reused 47
Unpacking objects: 100% (47/47), done.
Checking connectivity... done.
warning: unable to access '/home/gameboy/.config/git/attributes': Brak dostępu
php-ocsclient#localhost:~/public_html$
How to fix it?

max object size in GIT HUB

I am trying to push my EAR into GIT repo on Blue mix Dev Ops.
I tried force push as well. Git push fails with below error
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (4/4), 17.35 MiB | 48.00 KiB/s, done.
Total 4 (delta 1), reused 0 (delta 0)
error: unpack failed: error Object too large (108,624,080 bytes), rejecting the pack. Max object size limit is 104,857,600 bytes.
To https://hub.jazz.net/git/poem/InspectionsPOEM
! [remote rejected] master -> master (n/a (unpacker error))
error: failed to push some refs to 'https://hub.jazz.net/git/poem/InspectionsPOEM'
Please let me know how to set the max limit, size for the file in GIT and who has the access to do it
Thanks
Mathangi

Resources