This Location is not available for subscription when i try to create a Azure SQL DB

Oggi da varie sottoscrizioni azure (anche non FREE)  mi ritorna questo errore (ho provato con tutte le location a disponibili x verificare quali utilizzate Get-AzureRmLocation | select displayname  da powershell)

Da alcuni BLOG sembra che sia dovuto a un sovraccarico dei servizi Azure…apriamo un ticket al supporto e vediamo …

This Location is not available for subscription when i try to create a Azure SQL DB

Impostare esclusioni in windows defender su Windows 2016 Core

Add-MpPreference -ExclusionPath “C:Program FilesSystem Center Operations ManagerGatewayHealth Service State”
Add-MpPreference -ExclusionExtension “.edb”
Add-MpPreference -ExclusionExtension “.chk”
Add-MpPreference -ExclusionExtension “.log”
Add-MpPreference -ExclusionProcess “C:Program FilesSystem Center Operations ManagerGatewayMonitoringHost.exe”

Verificare che le esclusion sono state inserite

$EsPath = Get-MpPreference
$EsPath.ExclusionProcess
$EsPath.ExclusionExtension
$EsPath.ExclusionPath

Impostare esclusioni in windows defender su Windows 2016 Core

Command for Storage EqualLogic Dell


Visualizzare il lead di un gruppo di storage


SANPROD> su exec hostname
You are running a support command, which is normally restricted to PS Series Tec
hnical Support personnel. Do not use a support command without instruction from
Technical Support.
SAN05

SANPROD> su exec pm member
You are running a support command, which is normally restricted to PS Series Tec
hnical Support personnel. Do not use a support command without instruction from
Technical Support.
 SAN05           [1.293392196] 8-cb2b76-00041b068-3ff001929de00000  pssId(1) Hazelburn(14)
         total space :  160415 pages   2349.83GB RAID-50
         free space  :   20604 pages    301.82GB (13%)
         snap space  :       0 pages      0.00MB (0%)
         repl space  :       0 pages      0.00MB (0%)
         vol space   :  139811 pages   2048.01GB (87%)
      status:  (Online GL )
 SAN04           [1.716095382] 0-1cb196-0003e8643-48d000b42c000000  pssId(2) Hazelburn(14)
         total space : 3563666 pages   52202.14GB RAID-6
         free space  :  383801 pages   5622.08GB (11%)
         snap space  :       0 pages      0.00MB (0%)
         repl space  :       0 pages      0.00MB (0%)
         vol space   : 3179865 pages   46580.05GB (89%)
      status:  (Online )


Backup delle configurazioni di tutti i membri di un gruppo 

SANPROD> save-config
Genera un file nominato config.cli con le impostazioni dei membri del gruppo nella root dello storage
Per recuperarlo bisogna utilizzare il protocollo FTP.
Configuration saved to config.cli.
You can retrive the file using ftp or scp 
Y
Command for Storage EqualLogic Dell

OVFTOOL Deploy OVA o OVF from command line

I needed to deploy ova to esxi without vsphere web client or classic client.
For this operation i have used the OVFTOOL.
The tool is vmware tool and it is possible do download :

https://www.vmware.com/support/developer/ovf/

– Download file   VMware-ovftool-4.1.0-2459827-lin.x86_64.bundle (64bit version)
– Install on redhat  use this command sh vmware
          sh VMware-ovftool-4.1.0-2459827-lin.x86_64.bundle
– Copy to esxi over ssh the /usr/lib/vmware-ovftool/
           scp -r /usr/lib/vmware-ovftool/ root@*.*.*.*:/vmfs/volumes/<datastoreESXi>
– On esxi on  the datastore into directory /vmware-ovftool/ change the used shell for ovftool command.

#!/bin/sh
# ————————
# Start Script for ovftool
# ————————

– For test the tool use this command:

/vmfs/volumes/<datastoreESXi>/vmware-ovftool/ovftool /vmfs/volumes/<datastoreEsxi>/<image>.ova

The file .ova need reside in the datastore esxi

In the output you see the ova info (es. use UEB .ova  unitrend enterprise backup) 

Now you are ready to deploy the ova appliance with this command:

/vmfs/volumes/datastore1/vmwareovftool/ovftool dm=thin ds=datastore1 “–net:access333=VM Network” “http://air.primp-industries.com/SLES-VM/SLES-VM.ovf” “vi://root:vmware123@172.30.0.192”

OVFTOOL Deploy OVA o OVF from command line