by skufel | Mar 17, 2016 | Development, Linux, Web Servers
In previous article “How-to : Introduction to Laravel : Create a Laravel Framework project on openSUSE Leap 42.1” we’ve created Laravel project called demo-project. However, this project is not available on web server, so we can’t open it in...
by skufel | Mar 17, 2016 | Development, Linux
It’s a simple step-by-step tutorial, how to setup Laravel project on openSUSE 42.1. First some requirements to be able to proceed with all steps: openSUSE server (I have it as virtual machine with openSUSE LEap 42.1) Apache web server install on openSUSE (#...
by skufel | Mar 14, 2016 | HA/DR, Infrastructure, Messaging, SysAdmin
Set of screenshots from old archives. It shows how to setup DAG on Microsoft Exchange Server 2010. If there will be interest in that subject I will put some description around that, just request that in comments. Otherwise, enjoy step-by-step screenshot guide for DAG...
by skufel | Mar 14, 2016 | Automation, Databases, Infrastructure, Scripting, SysAdmin, Windows
Code snippet from old archives. It shows how to import Windows event log entries to database. Important is to setup database and table accordingly, so it contains apropriate columns. Set objConn = CreateObject("ADODB.Connection") Set...
by skufel | Mar 14, 2016 | Directory Services, Network
In this article will go through configuration of Cisco Easy VPN along with Microsoft NPS RADIUS on Windows Server 2008 R2. Article covers: Basic information about Cisco Easy VPN Cisco IOS router configuration for Easy VPN Windows Server 2008 R2 NPS and RADIUS...
by skufel | Mar 14, 2016 | Scripting, Windows
Quick side note, not to forget for future. Rename computer Netdom renamecomputer %computername% /newname:Test-Server Join computer to domain Netdom join %computername% /domain:domain.com /UserD:Administrator...
by skufel | Mar 14, 2016 | Network, Scripting, Windows
When you need to use your computer as wireless hotspot, you can easily enable that functionality with PowerShell: Windows PowerShell Copyright (C) 2013 Microsoft Corporation. All rights reserved. PS C:\windows\system32> netsh wlan set hostednetwork...
by skufel | Sep 11, 2015 | Infrastructure, Scripting, SysAdmin, Windows
To remove Event Log Source use this: Remove-EventLog -Source "Desktop Window Manager" Replace Desktop Window Manager with Event Log Source you want to...
by skufel | Sep 11, 2015 | Automation, Infrastructure, Scripting, SysAdmin, Windows
To list all Event Logs and sources associated with them use: Get-EventLog -LogName * |ForEach-Object {$LogName = $_.Log;Get-EventLog -LogName $LogName -ErrorAction SilentlyContinue |Select-Object @{Name= "Log Name";Expression = {$LogName}}, Source...
by skufel | Sep 7, 2015 | HA/DR, Infrastructure, Linux, Network, SysAdmin, Web Servers
Many times there is a need to publish multiple websites from internal network, but there is only one public IP address available. How this can be done easy way? HAProxy can help us with it. In example configuration I have 2 URLs registered to same public IP address:...