I cant' access my virtual machine files on azure portal - magento2

I have set up a Virtual Machine on Windows Azure and deployed my Magento.
I want to access files in the server, I used RDP but it gives me a connection error.
How to solve that?

Related

How to add new local user in Azure VM through the PowerShell?

I have VM machine running which is not part of the domain and I would like to add the new local user through the PowerShell. Is this possible to do?
Once you have created your VM in Azure you will be able to interact with it as any other windows machine via PowerShell.
You will create a New-PSSession to the machine (you will use the ip adress for the VM as the computername):
https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/new-pssession?view=powershell-6
You will then enter the session and create the local user: https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.localaccounts/new-localuser?view=powershell-5.1
The main issue you may run into is, depending on firewall rules, you may not be able to directly access your azure VM. You will likely need to create a VPN in azure, include your Azure VM in that VPN, and then access the VPN from your local machine before you are able to establish a connection to the Azure VM. Please see the documentation for setting this up here: https://learn.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-howto-point-to-site-resource-manager-portal.

mongoDB remote connection is not working with new VM on azure where its working on VM classic

I have new VM and old VM(classic) both in my azure account. I want to install mongoDB in my new VM for database hosting. I have installed the mongoDB in my VM, created inbound rules from firewall, created inbound rules from azure new VM networ security portal but its still not working. i am not able to connect to my mongoDB from my local machine. However its working locally on VM.
i have applied same settings in Classic VM and its working smoothly. But i want to go ahead with the new VM only.
Please check this image to validate the inbound settings
Inbound settings screenshot

How do I create a route on Azure to pass data from my Azure virtual network to a network attached to my corporate network?

I have recently setup an Azure virtual network (10.10.10.0/24) and successfully connected it with a site-site VPN to our corporate network (192.168.150.0/24) using VPN connection configured in RRAS on Windows Server 2012. We have another network (192.168.251.0/24) we access through a gateway (192.168.150.254) on our local network, but I can't access this from Azure... I've tried creating routes on VMs on Azure and also via powershell using Set-AzureRoute but I still can't access this network... Anyone got any ideas?
You probably need to add the second network as a second local network on the VPN Gateway.

Manually configure routing tables for azure virtual network (point-to-site)

I am having trouble connecting to my virtual network using the azure VPN client on windows 10 (I get an error about the certificate not found).I found a way to manually configure the VPN, I can successfully connect to it, ping my virtual machines from my local machine, ping my local machine from my virtual machines, remote desktop to it with the virtual network IP address (or hostname) and even connect to my shared folders on my local machine from the Virtual machines. What I can't do, and want to do is to connect to my shared drives on the VMs from my local machine (it works perfectly when I connect with the azure vpn client from windows 7). I've noticed when you connect through the vpn client it actually sets up the routing tables for you. So my question is: How do you configure it manually with powershell?
PS: For some reason you can't go to the IPV4/6 or any properties on your VPN connection on windows 10, So i have to do everything through powershell.
The problem wasn't the routing tables. The problem was that there was credentials stored in my my Credential Manager (Control Panel\All Control Panel Items\Credential Manager) for the VM which was incorrect, I think, I cleared it, and all worked. And by the way, I got the Azure VPN client to work on my windows 10 machine with help from this article

Cannot access Azure VM throught rdp but remote powershell works

I need your help, any idea is welcome.
[skipable]
Here's the situation : i was working on a VM hosted in Microsoft cloud (Azure), everything was fine. This VM was supposed to be a Domain Controller (Active Directory), which was link to many VMs (i was working on grid computing with many compute nodes). Everything was setup correctly. The next step was to host a WCF service on a IIS server accessible through https. Therefore i opened port 443 on firewall as well as an valid endpoint for the VM (azure portal). From there things get weird. Opening endpoint 443 on the azure portal didn't work as expected, i needed to reboot the VM. Then i cannot access through RDP connection anymore :-(. However i succeed to take control of the VM via powershell remoting.
[Question]
How can i restore rdp connection via powershell remoting ONLY ? I tried to disabled firewall, open port 3389, capture an image of the vm to recreate it etc.. but nothing worked. Any idea ? i don't want to loose all my work, my fresh service etc..
Thanks you!