Skip to content

Instantly share code, notes, and snippets.

View ShepardToTheStars's full-sized avatar

Vanessa ShepardToTheStars

  • Target
  • Minneapolis, MN
View GitHub Profile
@ShepardToTheStars
ShepardToTheStars / solrconfig.xml
Last active February 10, 2018 17:59
Simple Solr ReplicationHandler Snippet
<config>
<!-- ... -->
<requestHandler name="/replication" class="solr.ReplicationHandler" >
<!--
Simple Replication Parameters
Solr Master
* replication.master.enabled (Default: false)
@ShepardToTheStars
ShepardToTheStars / Install-TeamCityBuildAgents.ps1
Last active September 21, 2022 13:19
TeamCity Build Agent Automated Install
#https://vanessa.louwagie.io/2017/09/08/automated-teamcity-build-agent-install-for-windows-server/
#Agent requires Java to be installed, and have the java bin directory exist in the path directory.
Param(
#The parent installation directory. Will create [$NumberOfBuildAgents] directories, one for each build agent.
[Parameter(Mandatory=$true)]
$InstallationDiskDrive = "C:\",
#The path to the Java Runtime Environment which the build agent runs on top of.
[Parameter(Mandatory=$true)]
$JavaPath = "C:\JRE",