Password reset for Azure database

后端 未结 9 1784
悲&欢浪女
悲&欢浪女 2020-11-29 21:18

I have a new Azure account. I am able to log into the \'manage\' page as admin, but I forgot the password to one of my databases. I would like to reset the password on that

9条回答
  •  野性不改
    2020-11-29 21:53

    You can use the following command with the Azure CLI 2.0 to change / reset the password for Azure SQL Database:

    az sql server update -n {database server name}
        -g {resource group name}
        -p {password}
    

    Source: https://buildazure.com/2017/05/18/azure-cli-2-0-reset-azure-sql-database-password/

提交回复
热议问题