Parth Patel
Parth Patel

Reputation: 292

How to access azure web app console or kudu console locally using putty or mac terminal?

I have hosted a web app in azure and I am able to use console through kudu console or azure dashboard but for better development workflow, accessing it through mac terminal is essential.

I don't know how to access azure's web console (not azure server management console) through mac terminal.

Its not linux vm. Its default web app using windows.

Upvotes: 2

Views: 7976

Answers (1)

Shui shengbao
Shui shengbao

Reputation: 19195

No, it is not possible.

On Mac, if you want to access Kudu Console, you could use a browser open http://<yoursite>.scm.azurewebsites.net. But you could not do it on mac terminal.

On Mac terminal, you could call Kudu API to manage your web app, see this link.

On Mac terminal, you also could use Azure CLI 2.0 to manage your web app.

Upvotes: 2

Related Questions