vmware vmdk to azure

  • Category: 電腦相關
  • Last Updated: Tuesday, 20 December 2016 23:29
  • Published: Tuesday, 15 November 2016 17:32
  • Written by sam

When you done with your vm, and upload to azure

Here is

Download tools from Microsoft

Open "Powershell"  with administrator authorization and import

Import-Module "C:\Program Files\Microsoft Virtual Machine Converter\MvmcCmdlet.psd1"

Converto vhd (replace column to fit you setting)

PS C:\Windows\system32> ConvertTo-MvmcVirtualHardDisk -SourceLiteralPath "d:\vm-elk\elk.vmdk" -DestinationLiteralPath "D:\" -VhdType DynamicHardDisk -VhdFormat Vhd

Azure login

Read more: vmware vmdk to azure

Implement ELK Stack

  • Category: 電腦相關
  • Last Updated: Thursday, 12 January 2017 16:37
  • Published: Thursday, 10 November 2016 16:59
  • Written by sam

Test implement ELK to collect windows event log to identify problems with servers.

Install new OS (Debian 8)

Install Java How to install java 8

Install elasticsearch

 wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.0.0.deb

dpkg -i elasticsearch-5.0.0.deb

Modify ad uncomment 

vi /etc/elasticsearch/elasticsearch.yml

 network.host: localhost

/etc/init.d/elasticsearch start

Install Kibana

 wget https://artifacts.elastic.co/downloads/kibana/kibana-5.0.0-amd64.deb

Read more: Implement ELK Stack