Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

99,384

Downloads of v 3.5.1:

55,687

Last Update:

21 Dec 2018

Package Maintainer(s):

Software Author(s):

  • Emil Eifrem
  • Johan Svensson

Tags:

neo4j graph community database nosql admin

Neo4j Community Edition

  • 1
  • 2
  • 3

3.5.1 | Updated: 21 Dec 2018

Downloads:

99,384

Downloads of v 3.5.1:

55,687

Maintainer(s):

Software Author(s):

  • Emil Eifrem
  • Johan Svensson

Neo4j Community Edition 3.5.1

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Neo4j Community Edition, run the following command from the command line or from PowerShell:

>

To upgrade Neo4j Community Edition, run the following command from the command line or from PowerShell:

>

To uninstall Neo4j Community Edition, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade neo4j-community -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade neo4j-community -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install neo4j-community
  win_chocolatey:
    name: neo4j-community
    version: '3.5.1'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'neo4j-community' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.5.1'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller neo4j-community
{
    Name     = "neo4j-community"
    Version  = "3.5.1"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'neo4j-community':
  ensure   => '3.5.1',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 14 Jul 2020.

Description

Neo4j is the world's leading Graph Database. It is a high performance graph store with all the features expected of a mature and robust database, like a friendly query language and ACID transactions. The programmer works with a flexible network structure of nodes and relationships rather than static tables yet enjoys all the benefits of enterprise-quality database. For many applications, Neo4j offers orders of magnitude performance benefits compared to relational DBs.

Note - This chocolatey package is not created or maintained by Neo4j, however the installation media used is an official distribution from Neo4j

  • Requires OpenJDK 8 or Oracle Java 8 to be installed as per http://neo4j.com/docs/stable/deployment-requirements.html#_software
  • This package only installs the 64 bit version
  • This chocolatey package supports Package Parameters;
    /Install:[Install Path]
    /ImportNeoProperties:[Path to file]
    /ImportServiceProperties:[Path to file]
    /HTTPEndPoint:[Host/IP:port]
    /HTTPSEndPoint:[Host/IP:port]
    /ServiceName:[Windows Service Name]

e.g. choco install neo4j-community -version 3.5.1 -packageParameters "/Install:C:\Apps\Neo"

Full information is available at the pacakge project site https://github.com/glennsarti/neo4j-community-chocolatey


tools\chocolateyInstall.ps1
$PackageName = 'neo4j-community'
# Per-package parameters
$downloadUrl = 'http://neo4j.com/artifact.php?name=neo4j-community-3.5.1-windows.zip'
$md5Checksum = 'f66592726d378848c00336d41d53cda5'
$neozipSubdir = 'neo4j-community-3.5.1'
# major.minor.update.build
# Build is always 14
$privateJavaVersion = "8.0.131.11"
$privateJreChecksumMD5 = "9458b62000daac0f48155323185f1c4c"

# START Helper Functions
Function Get-IsJavaInstalled
{
  [cmdletBinding(SupportsShouldProcess=$false,ConfirmImpact='Low',DefaultParameterSetName='Default')]
  param ()
  
  Process
  {
    $javaPath = ''
    $javaVersion = ''
    $javaCMD = ''
    
    $EnvJavaHome = "$($Env:JAVA_HOME)"
    
    # Is JAVA specified in an environment variable
    if (($javaPath -eq '') -and ($EnvJavaHome -ne $null))
    {
      $javaPath = $EnvJavaHome
      # Modify the java path if a JRE install is detected
      if (Test-Path -Path "$javaPath\bin\javac.exe") { $javaPath = "$javaPath\jre" }
    }

    # Attempt to find Java in registry
    $regKey = 'Registry::HKLM\SOFTWARE\JavaSoft\Java Runtime Environment'    
    if (($javaPath -eq '') -and (Test-Path -Path $regKey))
    {
      $javaVersion = ''
      try
      {
        $javaVersion = [string](Get-ItemProperty -Path $regKey -ErrorAction 'Stop').CurrentVersion
        if ($javaVersion -ne '')
        {
          $javaPath = [string](Get-ItemProperty -Path "$regKey\$javaVersion" -ErrorAction 'Stop').JavaHome
        }
      }
      catch
      {
        #Ignore any errors
        $javaVersion = ''
        $javaPath = ''
      }
    }

    # Attempt to find Java in registry (32bit Java on 64bit OS)
    $regKey = 'Registry::HKLM\SOFTWARE\Wow6432Node\JavaSoft\Java Runtime Environment'    
    if (($javaPath -eq '') -and (Test-Path -Path $regKey))
    {
      $javaVersion = ''
      try
      {
        $javaVersion = [string](Get-ItemProperty -Path $regKey -ErrorAction 'Stop').CurrentVersion
        if ($javaVersion -ne '')
        {
          $javaPath = [string](Get-ItemProperty -Path "$regKey\$javaVersion" -ErrorAction 'Stop').JavaHome
        }
      }
      catch
      {
        #Ignore any errors
        $javaVersion = ''
        $javaPath = ''
      }
    }
    
    # Attempt to find Java in the search path
    if ($javaPath -eq '')
    {
      $javaExe = (Get-Command 'java.exe' -ErrorAction SilentlyContinue)
      if ($javaExe -ne $null)
      {
        $javaCMD = $javaExe.Path
        $javaPath = Split-Path -Path $javaCMD -Parent
      }
    }

    if ($javaPath -eq '') { Write-Host "Unable to determine the path to java.exe"; return $false }
    if ($javaCMD -eq '') { $javaCMD = "$javaPath\bin\java.exe" }
    if (-not (Test-Path -Path $javaCMD)) { Write-Error "Could not find java at $javaCMD"; return $false }
 
    return $true
  }
}
function Invoke-ModifyConfig($File,$Key,$Value) {
  Write-Verbose "Setting $($Key)=$($Value) in file $File"
  $RegexKey = $Key.Replace('.','\.')
    
  $fileContent = [IO.File]::ReadAllText($File)
  
  $found = $false
  if ($fileContent -match "(?mi)^$($RegexKey)=") {
    Write-Verbose "Found $Key"
    $fileContent = $fileContent -replace "(?mi)^$($RegexKey)=.+$","$($Key)=$($Value)"
    $found = $true
  }

  if ($fileContent -match "(?mi)^#$($RegexKey)=") {
    Write-Verbose "Found $Key in a comment"   
    $fileContent = $fileContent -replace "(?mi)^#$($RegexKey)=.+$","$($Key)=$($Value)"
    $found = $true    
  }
  
  if (-not $found) {
    Write-Verbose "Adding $key"
    $fileContent += "`n$($Key)=$($Value)"
  }

  $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding($False)
  [IO.File]::WriteAllText($File,$fileContent,$Utf8NoBomEncoding) | Out-NUll
}

function Invoke-InstallPrivateJRE($Destination) {
  # Adpated from the server-jre8 chocolatey package
  # https://github.com/rgra/choco-packages/tree/master/server-jre8

  Write-Host "Installing Server JRE $privateJavaVersion to $Destination"

  #8.0.xx to jdk1.8.0_xx
  $versionArray = $privateJavaVersion.Split(".")
  $majorVersion = $versionArray[0]
  $minorVersion = $versionArray[1]
  $updateVersion = $versionArray[2]
  $buildNumber = $versionArray[3]
  $folderVersion = "jdk1.$majorVersion.$($minorVersion)_$updateVersion"

  $fileNameBase = "server-jre-$($majorVersion)u$($updateVersion)-windows-x64"
  $fileName = "$fileNameBase.tar.gz"

  $url = "http://download.oracle.com/otn-pub/java/jdk/$($majorVersion)u$($updateVersion)-b$buildNumber/d54c1d3a095b4ff2b6607d096fa80163/$fileName"

  # Download location info
  $tempDir = Join-Path -Path $ENV:Temp -ChildPath "choco_jre_$PackageName"
  $tarGzFile = "$tempDir\$fileName"
  $tarFile = "$tempDir\$fileNameBase.tar"

  # Cleanup
  if (Test-Path -Path $tempDir) { Remove-Item -Path $tempDir -Force -Recurse -Confirm:$false | Out-Null }

  New-Item -Path $tempDir -ItemType 'Directory' | Out-Null

  $webClient = New-Object System.Net.WebClient
  $result = $webClient.headers.Add('Cookie','gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie')
  Write-Host "Downloading $url ..."
  $result = $webClient.DownloadFile($url, $tarGzFile)
  Get-ChecksumValid $tarGzFile $privateJreChecksumMD5 | Out-Null

  #Extract gz to .tar File
  Get-ChocolateyUnzip $tarGzFile $tempDir | Out-Null
  #Extract tar to destination
  Get-ChocolateyUnzip $tarFile $Destination | Out-Null

  # Cleanup
  if (Test-Path -Path $tempDir) { Remove-Item -Path $tempDir -Force -Recurse -Confirm:$false | Out-Null }

  # return the JAVA_HOME path
  Write-Output (Get-ChildItem -Path $Destination | Select -First 1).FullName
}
# END Helper Functions

try {
  # Taken from https://github.com/chocolatey/chocolatey/wiki/How-To-Parse-PackageParameters-Argument
  $arguments = @{};
  
  # Now, we can use the $env:chocolateyPackageParameters inside the Chocolatey package
  $packageParameters = $env:chocolateyPackageParameters;

  # Default the install root
  try {
    $InstallDir = Get-ToolsLocation -ErrorAction Stop
  } catch {
    # On older chocolatey versions Get-ToolsLocation may not exist as a function.
    #  Fall back to Get-BinRoot
    $InstallDir = Get-BinRoot
  }
  # Default the values
  $InstallDir = Join-Path -Path $InstallDir -ChildPath $PackageName
  $ImportNeoProperties = ""
  $ImportServiceProperties = ""
  $WindowsServiceName = ""
  $HTTPEndpoint = ""
  $HTTPSEndpoint = ""
    
  # Now, let’s parse the packageParameters using good old regular expression
  if($packageParameters) {
      $MATCH_PATTERN = "\/([a-zA-Z]+):([`"'])?([a-zA-Z0-9- _\\:\.]+)([`"'])?"
      $PARAMATER_NAME_INDEX = 1
      $VALUE_INDEX = 3

      if($packageParameters -match $MATCH_PATTERN ){
          $results = $packageParameters | Select-String $MATCH_PATTERN -AllMatches
          $results.matches | % {
            $arguments.Add(
                $_.Groups[$PARAMATER_NAME_INDEX].Value.Trim(),
                $_.Groups[$VALUE_INDEX].Value.Trim())
        }
      }
      else
      {
        Throw "Package Parameters were found but were invalid (REGEX Failure)";
      }

      if($arguments.ContainsKey("install")) {
          Write-Verbose "Install Argument Found";
          $InstallDir = $arguments["install"];
      }

      if($arguments.ContainsKey("importneoproperties")) {
          Write-Verbose "ImportNeoProperties Argument Found";
          $ImportNeoProperties = $arguments["importneoproperties"];
      }

      if($arguments.ContainsKey("importserviceproperties")) {
          Write-Verbose "ImportServiceProperties Argument Found";
          $ImportServiceProperties = $arguments["importserviceproperties"];
      }

      if($arguments.ContainsKey("servicename")) {
          Write-Verbose "ServiceName Argument Found";
          $WindowsServiceName = $arguments["servicename"];
      }

      if($arguments.ContainsKey("httpendpoint")) {
          Write-Verbose "HTTPEndPoint Argument Found";
          $HTTPEndpoint = $arguments["httpendpoint"];
      }

      if($arguments.ContainsKey("httpsendpoint")) {
          Write-Verbose "HTTPSEndpoint Argument Found";
          $HTTPSEndpoint = $arguments["httpsendpoint"];
      }
  } else {
      Write-Verbose "No Package Parameters Passed in";
  }

  $silentArgs = "/install:" + $InstallDir
  if ($WindowsServiceName -ne "") {
    $silentArgs += " /servicename:" + $WindowsServiceName
  }
  if ($HTTPEndpoint -ne "") {
    $silentArgs += " /httpendpoint:" + $HTTPEndpoint
  }
  if ($HTTPSEndpoint -ne "") {
    $silentArgs += " /httpsendpoint:" + $HTTPSEndpoint
  }
  if ($ImportNeoProperties -ne "") {
    $silentArgs += " /importneoproperties:" + $ImportNeoProperties
  }
  if ($ImportServiceProperties -ne "") {
    $silentArgs += " /importserviceproperties:" + $ImportServiceProperties
  }
  Write-Verbose "This would be the Chocolatey Silent Arguments: $silentArgs"

  # Sanity Checks
  If ($ImportNeoProperties -ne "") {
    If (!(Test-Path -Path $ImportNeoProperties)) { Throw "Could not find the NeoProperties file to import. $ImportNeoProperties" }
  }
  If ($ImportServiceProperties -ne "") {
    If (!(Test-Path -Path $ImportServiceProperties)) { Throw "Could not find the ServiceProperties file to import. $ImportServiceProperties" }
  }

  # Install Neo4j
  Install-ChocolateyZipPackage -PackageName $PackageName -URL $downloadUrl -UnzipLocation $InstallDir -CheckSum $md5Checksum -CheckSumType 'md5'
  $neoHome = "$($InstallDir)\$($neozipSubdir)"
  Install-ChocolateyEnvironmentVariable "NEO4J_HOME" "$neoHome" "Machine"

  # Import config files if required
  If ($ImportNeoProperties -ne "") {
    Write-Verbose "Importing the neo4j.conf from $ImportNeoProperties"
    [void] (Copy-Item -Path $ImportNeoProperties -Destination "$($neoHome)\conf\neo4j.conf" -Force -Confirm:$false)
  }
  If ($ImportServiceProperties -ne "") {
    Write-Verbose "Importing the neo4j-wrapper.conf from $ImportServiceProperties"
    [void] (Copy-Item -Path $ImportServiceProperties -Destination "$($neoHome)\conf\neo4j-wrapper.conf" -Force -Confirm:$false)
  }
    
  # Override with package params
  if ($HTTPEndpoint -ne "") {
    Invoke-ModifyConfig -File "$($neoHome)\conf\neo4j.conf" -Key "dbms.connector.http.address" -Value $HTTPEndpoint | Out-Null
  }
  if ($HTTPSEndpoint -ne "") {
    Invoke-ModifyConfig -File "$($neoHome)\conf\neo4j.conf" -Key "dbms.connector.https.address" -Value $HTTPSEndpoint | Out-Null
  }
  if ($WindowsServiceName -ne "") {
    Invoke-ModifyConfig -File "$($neoHome)\conf\neo4j-wrapper.conf" -Key "dbms.windows_service_name" -Value $WindowsServiceName | Out-Null
  }

  # Check if Java is available
  # This check will not be required once a suitable Java SDK 8 chocolatey package is available in the public feed.
  if (-not (Get-IsJavaInstalled) ) {
    Write-Host "Java was not detected.  Installing a private JRE for Neo4j"
    $privatePath = Invoke-InstallPrivateJRE -Destination "$($neoHome)\java"
    Write-Host "--------------------"
    Write-Host "Before using Neo4j tools, ensure you have set the JAVA_HOME"
    Write-Host "environment variable to $($privatePath)"
    Write-Host ""
    Write-Host "For example, in a command prompt:"
    Write-Host "SET JAVA_HOME=$($privatePath)"
    Write-Host ""
    Write-Host "For example, in a PowerShell console:"
    Write-Host "`$ENV:JAVA_HOME = '$($privatePath)'"
    Write-Host ""
    Write-Host "--------------------"
    $ENV:JAVA_HOME = $privatePath
  }

  # Install the Neo4j Service
  $InstallBatch = "$($neoHome)\bin\Neo4j.bat"
  if (!(Test-Path $InstallBatch)) { throw "Could not find the Neo4j Installer Batch file at $InstallBatch" }
  
  Write-Verbose "Installing Neo4j Service..."
  $args = "install-service"
  $result = Start-Process -FilePath $InstallBatch -ArgumentList $args -Wait -PassThru -NoNewWindow
  
  if ($result.ExitCode -ne 0) { Throw "Neo4j installation returned exit code $($result.ExitCode)"}
  
  Write-Verbose "Starting Neo4j Service..."
  $args = "start"
  $result = Start-Process -FilePath $InstallBatch -ArgumentList $args -Wait -PassThru -NoNewWindow
  
} catch {
  throw "$($_.Exception.Message)"
}
tools\chocolateyUninstall.ps1
$PackageName = 'neo4j-community'

Function Get-IsJavaInstalled()
{
  [cmdletBinding(SupportsShouldProcess=$false,ConfirmImpact='Low',DefaultParameterSetName='Default')]
  param (
    $Neo4jHome
  )
  
  Process
  {
    $javaPath = ''
    $javaVersion = ''
    $javaCMD = ''
    
    $EnvJavaHome = "$($Env:JAVA_HOME)"
    
    # Is JAVA specified in an environment variable
    if (($javaPath -eq '') -and ($EnvJavaHome -ne $null))
    {
      $javaPath = $EnvJavaHome
      # Modify the java path if a JRE install is detected
      if (Test-Path -Path "$javaPath\bin\javac.exe") { $javaPath = "$javaPath\jre" }
    }

    # Attempt to find Java in registry
    $regKey = 'Registry::HKLM\SOFTWARE\JavaSoft\Java Runtime Environment'    
    if (($javaPath -eq '') -and (Test-Path -Path $regKey))
    {
      $javaVersion = ''
      try
      {
        $javaVersion = [string](Get-ItemProperty -Path $regKey -ErrorAction 'Stop').CurrentVersion
        if ($javaVersion -ne '')
        {
          $javaPath = [string](Get-ItemProperty -Path "$regKey\$javaVersion" -ErrorAction 'Stop').JavaHome
        }
      }
      catch
      {
        #Ignore any errors
        $javaVersion = ''
        $javaPath = ''
      }
    }

    # Attempt to find Java in registry (32bit Java on 64bit OS)
    $regKey = 'Registry::HKLM\SOFTWARE\Wow6432Node\JavaSoft\Java Runtime Environment'    
    if (($javaPath -eq '') -and (Test-Path -Path $regKey))
    {
      $javaVersion = ''
      try
      {
        $javaVersion = [string](Get-ItemProperty -Path $regKey -ErrorAction 'Stop').CurrentVersion
        if ($javaVersion -ne '')
        {
          $javaPath = [string](Get-ItemProperty -Path "$regKey\$javaVersion" -ErrorAction 'Stop').JavaHome
        }
      }
      catch
      {
        #Ignore any errors
        $javaVersion = ''
        $javaPath = ''
      }
    }
    
    # Attempt to find Java in the search path
    if ($javaPath -eq '')
    {
      $javaExe = (Get-Command 'java.exe' -ErrorAction SilentlyContinue)
      if ($javaExe -ne $null)
      {
        $javaCMD = $javaExe.Path
        $javaPath = Split-Path -Path $javaCMD -Parent
      }
    }

    # Attempt to private jre
    $privateJRE = Join-Path -Path $Neo4jHome -ChildPath 'java'
    if ( ($javaPath -eq '') -and (Test-Path -Path $privateJRE) )
    {
      $privateJRE = (Get-ChildItem -Path "$privateJRE" | Select -First 1).FullName

      if (Test-Path -Path "$privateJRE\bin\java.exe") {
        $javaCMD = "$privateJRE\bin\java.exe"
        $javaPath = $privateJRE
      }
    }

    if ($javaPath -eq '') { Write-Host "Unable to determine the path to java.exe"; return $false }
    if ($javaCMD -eq '') { $javaCMD = "$javaPath\bin\java.exe" }
    if (-not (Test-Path -Path $javaCMD)) { Write-Error "Could not find java at $javaCMD"; return $false }
 
    return $javaPath
  }
}

try {
  # Get the NeoHome Dir
  #   Try the local environment
  $neoHome = [string] (Get-EnvironmentVariable -Name 'NEO4J_HOME' -Scope 'Machine')
  # Failing that, try a registry hack
  if ($neoHome -eq '')
  {
    $neoHome = [string] ( (Get-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment' -ErrorAction Continue).'NEO4J_HOME' )
  }
  if ($neoHome -eq '') { throw "Could not find the Neo4j installation via the NEO4J_HOME environment variable" }

  $javaPath = (Get-IsJavaInstalled -Neo4jHome $neoHome)
  if ($javaPath -eq '') { throw "Could not find a Java installation" }
  # Temporarily set the JAVA_HOME environment variable
  $ENV:JAVA_HOME = $javaPath

  # Uninstall the Neo4j Service
  $UninstallBatch = "$($neoHome)\bin\Neo4j.bat"
  if (!(Test-Path $UninstallBatch)) { throw "Could not find the Neo4j Uninstaller Batch file at $UninstallBatch" }
  
  Write-Verbose "Uninstalling Neo4j Service..."
  $args = "uninstall-service"
  $result = Start-Process -FilePath $UninstallBatch -ArgumentList $args -Wait -PassThru -NoNewWindow

  if ($result.ExitCode -ne 0) { Throw "Neo4j uninstallation returned exit code $($result.ExitCode)"}

  # Remove the install folder
  Remove-Item -Path $neoHome -Recurse -Force | Out-Null
  
  # Remove the environment variable
  Install-ChocolateyEnvironmentVariable "NEO4J_HOME" '' "Machine"
} catch {
  throw "$($_.Exception.Message)"
}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Neo4j Community Edition 3.5.0 313 Thursday, November 29, 2018 Approved
Neo4j Community Edition 3.5.0-rc01-beta 224 Saturday, November 17, 2018 Approved
Neo4j Community Edition 3.5.0-beta03-beta 219 Saturday, October 27, 2018 Approved
Neo4j Community Edition 3.5.0-beta02-beta 194 Thursday, October 18, 2018 Approved
Neo4j Community Edition 3.5.0-beta01-beta 209 Saturday, September 29, 2018 Approved
Neo4j Community Edition 3.5.0-alpha09 201 Saturday, September 15, 2018 Approved
Neo4j Community Edition 3.5.0-alpha08 215 Thursday, September 6, 2018 Approved
Neo4j Community Edition 3.5.0-alpha07 246 Friday, August 17, 2018 Approved
Neo4j Community Edition 3.5.0-alpha06 255 Saturday, August 4, 2018 Approved
Neo4j Community Edition 3.5.0-alpha05 219 Wednesday, July 25, 2018 Approved
Neo4j Community Edition 3.5.0-alpha04 265 Wednesday, July 11, 2018 Approved
Neo4j Community Edition 3.5.0-alpha02 258 Saturday, June 30, 2018 Approved
Neo4j Community Edition 3.5.0-alpha01 277 Tuesday, May 29, 2018 Approved
Neo4j Community Edition 3.4.11 256 Tuesday, December 18, 2018 Approved
Neo4j Community Edition 3.4.10 260 Thursday, November 15, 2018 Approved
Neo4j Community Edition 3.4.9 308 Monday, October 15, 2018 Approved
Neo4j Community Edition 3.4.8 329 Friday, October 5, 2018 Approved
Neo4j Community Edition 3.4.7 409 Saturday, September 1, 2018 Approved
Neo4j Community Edition 3.4.6 308 Friday, August 17, 2018 Approved
Neo4j Community Edition 3.4.5 340 Friday, July 27, 2018 Approved
Neo4j Community Edition 3.4.4 347 Thursday, July 12, 2018 Approved
Neo4j Community Edition 3.4.3 337 Friday, July 6, 2018 Approved
Neo4j Community Edition 3.4.1 370 Wednesday, June 13, 2018 Approved
Neo4j Community Edition 3.4.0 375 Thursday, May 17, 2018 Approved
Neo4j Community Edition 3.4.0-rc02-beta 272 Thursday, May 10, 2018 Approved
Neo4j Community Edition 3.4.0-rc01-beta 300 Saturday, April 28, 2018 Approved
Neo4j Community Edition 3.4.0-beta02-beta 292 Wednesday, April 18, 2018 Approved
Neo4j Community Edition 3.4.0-beta01-beta 276 Wednesday, April 4, 2018 Approved
Neo4j Community Edition 3.4.0-alpha10 322 Wednesday, March 21, 2018 Approved
Neo4j Community Edition 3.4.0-alpha09 322 Tuesday, March 6, 2018 Approved
Neo4j Community Edition 3.4.0-alpha08 327 Wednesday, February 21, 2018 Approved
Neo4j Community Edition 3.4.0-alpha06 337 Tuesday, January 23, 2018 Approved
Neo4j Community Edition 3.4.0-alpha05 337 Wednesday, January 10, 2018 Approved
Neo4j Community Edition 3.4.0-alpha04 375 Friday, January 5, 2018 Approved
Neo4j Community Edition 3.3.9 236 Saturday, November 3, 2018 Approved
Neo4j Community Edition 3.3.8 220 Thursday, November 1, 2018 Approved
Neo4j Community Edition 3.3.7 239 Thursday, September 13, 2018 Approved
Neo4j Community Edition 3.3.6 287 Saturday, June 23, 2018 Approved
Neo4j Community Edition 3.3.5 486 Thursday, April 12, 2018 Approved
Neo4j Community Edition 3.3.4 391 Friday, March 16, 2018 Approved
Neo4j Community Edition 3.3.3 436 Wednesday, February 14, 2018 Approved
Neo4j Community Edition 3.3.2 412 Tuesday, January 23, 2018 Approved
Neo4j Community Edition 3.3.1 470 Friday, January 5, 2018 Approved
Neo4j Community Edition 3.3.0-rc1-beta 403 Thursday, October 5, 2017 Approved
Neo4j Community Edition 3.3.0-beta02-beta 368 Friday, September 22, 2017 Approved
Neo4j Community Edition 3.3.0-beta01-beta 357 Thursday, September 14, 2017 Approved
Neo4j Community Edition 3.3.0-alpha07 319 Wednesday, August 30, 2017 Approved
Neo4j Community Edition 3.3.0-alpha06 352 Thursday, August 17, 2017 Approved
Neo4j Community Edition 3.3.0-alpha05 336 Wednesday, August 2, 2017 Approved
Neo4j Community Edition 3.3.0-alpha04 338 Friday, July 14, 2017 Approved
Neo4j Community Edition 3.3.0-alpha03 383 Monday, July 3, 2017 Approved
Neo4j Community Edition 3.3.0-alpha02 350 Thursday, June 15, 2017 Exempted
Neo4j Community Edition 3.3.0-alpha01 378 Friday, June 2, 2017 Exempted
Neo4j Community Edition 3.2.13 170 Wednesday, October 17, 2018 Approved
Neo4j Community Edition 3.2.12 249 Thursday, May 31, 2018 Approved
Neo4j Community Edition 3.2.11 260 Tuesday, April 24, 2018 Approved
Neo4j Community Edition 3.2.10 263 Tuesday, March 13, 2018 Approved
Neo4j Community Edition 3.2.9 280 Friday, January 5, 2018 Approved
Neo4j Community Edition 3.2.6 518 Tuesday, October 3, 2017 Approved
Neo4j Community Edition 3.2.5 326 Monday, September 18, 2017 Approved
Neo4j Community Edition 3.2.4 353 Wednesday, September 13, 2017 Approved
Neo4j Community Edition 3.2.3 443 Tuesday, August 1, 2017 Approved
Neo4j Community Edition 3.2.2 441 Wednesday, July 5, 2017 Approved
Neo4j Community Edition 3.2.1 400 Monday, June 5, 2017 Approved
Neo4j Community Edition 3.2.0 368 Thursday, May 11, 2017 Approved
Neo4j Community Edition 3.2.0-rc3-beta 336 Monday, May 8, 2017 Approved
Neo4j Community Edition 3.2.0-rc2-beta 370 Friday, May 5, 2017 Approved
Neo4j Community Edition 3.2.0-rc1-beta 385 Thursday, April 27, 2017 Approved
Neo4j Community Edition 3.2.0-alpha08 393 Tuesday, April 11, 2017 Approved
Neo4j Community Edition 3.2.0-alpha07 367 Monday, March 27, 2017 Approved
Neo4j Community Edition 3.2.0-alpha06 352 Friday, March 10, 2017 Approved
Neo4j Community Edition 3.2.0-alpha05 354 Thursday, February 23, 2017 Approved
Neo4j Community Edition 3.2.0-alpha04 379 Tuesday, February 14, 2017 Approved
Neo4j Community Edition 3.2.0-alpha03 382 Friday, January 27, 2017 Approved
Neo4j Community Edition 3.2.0-alpha02 445 Thursday, January 12, 2017 Approved
Neo4j Community Edition 3.2.0-alpha01 361 Wednesday, December 28, 2016 Approved
Neo4j Community Edition 3.1.7 339 Tuesday, October 3, 2017 Approved
Neo4j Community Edition 3.1.6 328 Monday, July 31, 2017 Approved
Neo4j Community Edition 3.1.5 354 Monday, June 5, 2017 Approved
Neo4j Community Edition 3.1.4 381 Tuesday, May 2, 2017 Approved
Neo4j Community Edition 3.1.3 424 Wednesday, March 29, 2017 Approved
Neo4j Community Edition 3.1.2 374 Thursday, March 9, 2017 Approved
Neo4j Community Edition 3.1.1 507 Friday, January 20, 2017 Approved
Neo4j Community Edition 3.1.0 401 Tuesday, December 13, 2016 Approved
Neo4j Community Edition 3.1.0-M10-beta 396 Wednesday, October 5, 2016 Approved
Neo4j Community Edition 3.1.0-M09-beta 390 Monday, October 3, 2016 Approved
Neo4j Community Edition 3.1.0-M08-beta 386 Friday, September 2, 2016 Exempted
Neo4j Community Edition 3.1.0-M07-beta 407 Friday, August 26, 2016 Approved
Neo4j Community Edition 3.0.10 376 Monday, July 3, 2017 Approved
Neo4j Community Edition 3.0.9 348 Thursday, March 16, 2017 Approved
Neo4j Community Edition 3.0.8 353 Tuesday, December 20, 2016 Approved
Neo4j Community Edition 3.0.6 466 Monday, October 3, 2016 Approved
Neo4j Community Edition 3.0.5 397 Monday, October 3, 2016 Approved
Neo4j Community Edition 3.0.4 437 Friday, August 26, 2016 Approved
Neo4j Community Edition 3.0.2 370 Sunday, June 5, 2016 Approved
Neo4j Community Edition 3.0.1 413 Sunday, June 5, 2016 Approved
Neo4j Community Edition 3.0.0 395 Monday, May 2, 2016 Approved
Neo4j Community Edition 3.0.0-RC1-beta 401 Wednesday, April 20, 2016 Approved
Neo4j Community Edition 2.3.12 251 Thursday, March 29, 2018 Approved
Neo4j Community Edition 2.3.11 387 Monday, July 3, 2017 Approved
Neo4j Community Edition 2.3.10 351 Saturday, April 1, 2017 Approved
Neo4j Community Edition 2.3.9 376 Tuesday, January 24, 2017 Approved
Neo4j Community Edition 2.3.8 386 Tuesday, December 13, 2016 Approved
Neo4j Community Edition 2.3.7 390 Monday, October 3, 2016 Approved
Neo4j Community Edition 2.3.6 353 Friday, August 26, 2016 Approved
Neo4j Community Edition 2.3.3 385 Monday, May 2, 2016 Approved
Neo4j Community Edition 2.3.0.20151026 477 Sunday, October 25, 2015 Approved
Neo4j Community Edition 2.3.0-M02-beta 368 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.3.0-M01-beta 386 Saturday, May 30, 2015 Approved
Neo4j Community Edition 2.2.10 450 Friday, August 26, 2016 Approved
Neo4j Community Edition 2.2.2.20150617 409 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.2.1.20150617 341 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.2.0.20150617 322 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.2.0-RC01-beta 402 Saturday, March 7, 2015 Approved
Neo4j Community Edition 2.2.0-M04-beta 428 Tuesday, February 17, 2015 Approved
Neo4j Community Edition 2.2.0-M03-beta 430 Tuesday, February 3, 2015 Exempted
Neo4j Community Edition 2.2.0-M02-beta 389 Wednesday, January 21, 2015 Exempted
Neo4j Community Edition 2.1.8.20150617 584 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.1.7.20150617 397 Wednesday, June 17, 2015 Approved
Neo4j Community Edition 2.1.6.20152101 432 Wednesday, January 21, 2015 Approved

Full list of changes are available on GitHub; https://github.com/glennsarti/neo4j-community-chocolatey

Version 3.5.1

  • Initial Release

This package has no dependencies.

Discussion for the Neo4j Community Edition Package

Ground Rules:

  • This discussion is only about Neo4j Community Edition and the Neo4j Community Edition package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Neo4j Community Edition, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus