After adding a custom startup command as per the docs I began receiving error rsync: rename ... -> ...: No such file or directory (2). The first deployment worked but consecutive deployments failed. Upon further inspection I observed that the startup script was locked and indicated permission denied when opening. This was because I included apache2ctl -D FOREGROUND which is blocking and held the startup script open.
rsync: rename ... -> ...: No such file or directory (2) Azure Linux App Service
289 Views Asked by vdidxho At
1
There are 1 best solutions below
Related Questions in AZURE-WEB-APP-SERVICE
- How To Update a Web Application In Azure and Keep The App Up the whole time
- How do I deploy a node.js app to azure if it contains private npm modules
- Redirecting subdomain to directory on Azure
- Expected Compatibility Issues with upcoming TLS/SSL Cipher Suite update on Azure WebApps?
- Azure Wordpress deny xmlrpc
- Deploy yeoman angular-fullstack project to Azure
- Change load-balanced server for Azure web site?
- Run MSBuild from powershell without specifying .Net version
- Access to my Azure web site without ftp
- Access Registry From WebJob/WebApp
- 403 Access denied for DELETE Request .Net Web Api Rest Service on Azure
- Azure web app - cookie cached on server
- Azure WebApps - cannot load ServiceRuntime after upgrade to Azure 2.6
- Azure publishsettings file Fails to Import Using Eclipse
- npm install -g fibers fails on Azure Web App
Related Questions in APACHE2
- How to redirect an incoming request to specific serverName to different server in apache2?
- phpinfo() uses old version. What am I missing after "make install"?
- Why does open() fails every time with EAGAIN?
- Problems with mod_auth_token installation
- Where is that folder /etc/apache2/sites-available on mac os yosemite?
- Keel alive mysql, php and apache2
- Apache2- need multiple projects with same domain that use different path after domain name
- Create vhost-file from mysql via shell script
- How can I access localhost upload.php using apache2 proxy setting from my locally running AngularJS application
- Redirecting subdomain to its sub folder, Safari showing too many redirect occured trying to open
- Redirect http to https and then redirect it to subdomain's folder?
- OctoberCMS : Have to go to index.php
- Image Magick on OpenSUSE: Fatal error: Class 'Imagick' not found
- Vagrant synced folder issue on windows?
- How to process argument with dot in .htaccess?
Related Questions in AZURE-LINUX
- Deploying Azure function to linux consumption plan
- Is Azure App Service editor available on Linux App Service?
- Azure VM FTP Server Error: 550 Create directory operation failed
- Issue running .NET 8 in Azure App Service running Linux
- The current deployment branch is ''main'', but nothing has been pushed to it
- How can I install my own Python package in Azure Web App Service Linux environment?
- Azure Linux Web App Downloading files directly from URL not working
- Puppeteer on Linux Azure Web Apps
- How to get another folder in same Project in Azure Linux Function
- How to use `GoToAsync()` from PuppeteerSharp to support local path but not with https?
- Azure web app on Linux stoped working suddenly
- Change Azure VM authentication to ssh key
- How to generate PGP key in Azure Linux host
- Error when deploying Azure app service on linux : disk quota exceeded
- Azure Linux Startup Command ignored
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It appears that somewhere along the way oryx was updated to automatically append apache start and the azure docs don't seem to indicate this fact. So simply do NOT include
apache2ctl -D FOREGROUNDin your startup script and you should be fine. Note I'm using PHP 7.4 in linux and I specified the startup command through the portal Configuration - General Settings (not via cli).