Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
So I create a storage account on azure and started using a file share for some days, but then I noticed some activity any hour during any day, even after stopping using the file share and deleted it:
I'm showing tables activity here because is where there's activity every hour, on other resources like tables and queues there's sporadic activity too, but I don't have anything on this storage account
After noticed this I try some things thinking about a security hole:
I tried to rotate access keys, several times
I even deleted and recreated the storage account with no avail, this was still showing the previous activity (can this be related that I used the same storage account name?)
This is not running in a production environment but still I don't know what is going on
Is this some background process of azure or do I need to worry about it?
As #David Makogon said, it turned out that was diagnostic activity, i disabled it in Diagnostic logs (classic) and the activity was gone.
Glad to know that my account wasn't hacked or something like that.
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 days ago.
Improve this question
How can I create an unlimited account on Azure Video Indexer and access it from videoindexer.ai?
My Observation
Although a solid service, some things are quite complicated, e.g.,
sign up/in and account management, where a single email address
could create different accounts based on whether the
authentication was done with AAD or Personal Microsoft or Google
account.
The workflow seems confusing for an Azure newbie. A first time user
should just be able to create an unlimited account without going down the
rabbit hole reading different disconnected documentations which are
usually not helpful.
I created unlimited (paid) accounts but couldn't find them on videoindexer.ai. I had to switch between tenants to resolve the issue.
Reference: https://learn.microsoft.com/en-us/azure/azure-video-indexer/switch-tenants-portal
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
Looking for a solution to schedule daily shutdown for vms at night 8PM and auto start the vms by morning 8 AM. Is there any way to get it done from Azure itself?
We tried the VM capability option under VMs overview page, But there is no option to auto restart. ANy help highly apprecicated..
I recommend you to use Azure Logic Apps. All you need is a scheduler and the action. There is also already a template for your requirement. Additionally, Azure helps you set up the logic app.
Check out this, it's really simple.
https://learn.microsoft.com/en-us/azure/logic-apps/logic-apps-examples-and-scenarios
A few notes:
Use consumption plan for the app.
A runbook would also work, but it takes longer to set up and you need
some PowerShell.
Do not confuse Stop with Deallocate. You need Deallocate
if you want to save money.
What you have to pay attention to with a logic app as well as an
automation account: You need a user / a service principal who has the
right to start and stop the VM. For this you should use Manged
Identity (exists for both resources). You then grant this identity
the right to start and stop the VMs via IAM.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I'm trying to start/stop my Linux VM on Azure but I can neither start nor stop my VM. It stucks at "Starting virtual machine..." when starting and "Stopping virtual machine..." when stopping then throws an error and says "Failed". In my overview screen of my VM, IP address of the VM won't go away so it looks like VM is not stopping at all. How can I fix this?
We are currently experiencing an outage in South Central US
https://azure.microsoft.com/en-us/status/
You will want to monitor the Azure Status Page for further updates. Unfortunately we cannot do anything until the problem has been mitigated by engineering.
As a side note, we have multiple backups of all customer data so no data loss should occur. Once the issue has mitigated all Virtual Machines and data should be restored and fully functional. After the issue has been mitigated and if you are still seeing issues let us know.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
Hi i was discussing the "on premises data-gateway" with a colleague and we where discussing whether the gateway had to be installed in every instance of a on premises system or it only had to be installed in one throughout the network for the system.
We had some different understanding regarding the documentation specified.
He understood it that installing it on a test server/instance it would be able to reach a database in another "virtual" system in that server.
I had the one understanding that it should be installed in every virtual system where you have a DB you want to reach?
Is there any clarification around this that we have missed?
Hope i made myself somewhat clear on what i'm asking? And please excuse the question if its written in clear text somewhere, we both must have missed it, if so sorry for that...
as per document although intended for analysis services, which is practically the same with other services as well,
source: https://learn.microsoft.com/en-us/azure/analysis-services/analysis-services-gateway
The on-premise data gateway needs to be installed for each instance of Azure Analysis Services server. In short, if you have two servers that connects to on-premise data sources, you will need two data gateway as well.
In this premise, we both have the same understanding that it needs to be installed for each instance that you need to connect.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I want a virtual system Large (A3) and I am going to use it occasionally. Pricing says $0.308/hr. Does this mean if the system is shutdown, then I don' play anything? What about the storage? I pay extra for that? How much storage I get along with OS?
You need to shutdown the VM (either in the Azure Portal or via PowerShell). It will show as "Stopped (deallocated)". At this point the only charges you would incur would be for the VHD disk images sitting in Azure Blob Storage.
The default VHD sizes are listed on MSDN under "Virtual Machines". These are "thin provisioned" which means you only pay for the actual data contained on the disk image and not the entire size (i.e. you can create a 1TB VHD but if it contains only 10GB of data you would only pay for 10GB).