Downloads:
160,819
Downloads of v 0.9.0:
1,364
Last Update:
26 Jul 2017
Package Maintainer(s):
Software Author(s):
- Mitchell Hashimoto
- Armon Dadgar
- HashiCorp
Tags:
consul service consul.io- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Consul
This is not the latest version of Consul available.
- 1
- 2
- 3
0.9.0 | Updated: 26 Jul 2017
- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
160,819
Downloads of v 0.9.0:
1,364
Maintainer(s):
Software Author(s):
- Mitchell Hashimoto
- Armon Dadgar
- HashiCorp
Consul 0.9.0
This is not the latest version of Consul available.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Consul, run the following command from the command line or from PowerShell:
To upgrade Consul, run the following command from the command line or from PowerShell:
To uninstall Consul, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download consul --internalize --version=0.9.0 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade consul -y --source="'INTERNAL REPO URL'" --version="'0.9.0'" [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 consul -y --source="'INTERNAL REPO URL'" --version="'0.9.0'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install consul
win_chocolatey:
name: consul
version: '0.9.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'consul' do
action :install
source 'INTERNAL REPO URL'
version '0.9.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller consul
{
Name = "consul"
Version = "0.9.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'consul':
ensure => '0.9.0',
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.
This package was approved as a trusted package on 26 Jul 2017.
Consul is a tool for service discovery and configuration. Consul is distributed, highly available, and extremely scalable.
Uses NSSM as the service wrapper. More info at: https://nssm.cc/
Package Parameters
The package parameters can be set - https://www.consul.io/docs/agent/options.html
These parameters can be passed to the installer with the use of -params
.
For example: -params '-config-file="%PROGRAMDATA%\consul\dsc-config\default.json"'
.
md5: 8649422E6175BC6F5C117F0B9FF36854 | sha1: 643A42DD8ACCF833E06A5A69A73BAD90A8913285 | sha256: 2EC01564AB08D213169CAA1A8E2BEB329F7F45339D43E231E0F2B77159568F3C | sha512: BB3082C85E605D4EB5B383556FEBE148B30EB9D18D7C981B3F6673D123C09E954F54F717A3A84A709C1D2C7803AD3378D650BD8B84584060000F8401161C31AD
md5: EF6AA9251DB3B76BF42C32DB34CA7147 | sha1: 8CB04E1E6F5D57E78A1AFE1501B9EB63AEA76978 | sha256: C2BD9906B61290FA01AC236393CBFE2F3AADEEC4B9CEEE724C99217CCB1061FF | sha512: 2FFEA9B6AAA7CB674C57257ECBEC7BB2B213C98E3E08C9A87DBFCED33722E42B53C1690540B19FC5E637074BD86BBDAD122456972CD5B18AE26062F68BCB94AD
$service = Get-Service "consul" -ErrorAction SilentlyContinue
if ($service) {
if ($service.Status -eq "Running") {
Write-Host "Stopping consul process ..."
net stop consul | Out-Null
}
$service = Get-WmiObject -Class Win32_Service -Filter "Name='consul'"
$service.delete() | Out-Null
}
SchTasks.exe /Delete /F /TN "ConsulLogrotate" 2>&1 | Out-Null
Write-Host "Removing C:\ProgramData\consul\ ..."
takeown /f "C:\ProgramData\consul\" /a /r /d Y | Out-Null
icacls "C:\ProgramData\consul" /grant administrators:F /t | Out-Null
Remove-Item -Path "C:\ProgramData\consul\" -Force -Recurse -ErrorAction SilentlyContinue | Out-Null
Log in or click on link to see number of positives.
- consul.0.9.0.nupkg (39e64b385b93) - ## / 59
- 0.9.0_windows_386.zip (2ec01564ab08) - ## / 56
- 0.9.0_windows_amd64.zip (c2bd9906b612) - ## / 60
- consul.exe (ee118b1bfb55) - ## / 64
- consul.exe (c019f47f2297) - ## / 64
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 |
---|---|---|---|---|
Consul 1.15.1 | 351 | Wednesday, March 8, 2023 | Approved | |
Consul 1.15.0 | 273 | Saturday, February 25, 2023 | Approved | |
Consul 1.14.4 | 1052 | Thursday, February 23, 2023 | Approved | |
Consul 1.9.0 | 16189 | Tuesday, January 5, 2021 | Approved | |
Consul 1.8.7 | 2022 | Monday, December 28, 2020 | Approved | |
Consul 1.8.6 | 111 | Monday, December 28, 2020 | Approved | |
Consul 1.8.5 | 1061 | Thursday, November 5, 2020 | Approved | |
Consul 1.8.4 | 530 | Wednesday, November 4, 2020 | Approved | |
Consul 1.8.3 | 141 | Wednesday, November 4, 2020 | Approved | |
Consul 1.8.2 | 163 | Tuesday, November 3, 2020 | Approved | |
Consul 1.8.1 | 190 | Thursday, October 29, 2020 | Approved | |
Consul 1.8.0 | 2511 | Tuesday, August 11, 2020 | Approved | |
Consul 1.7.5 | 154 | Tuesday, August 11, 2020 | Approved | |
Consul 1.7.4 | 314 | Saturday, August 8, 2020 | Approved | |
Consul 1.7.3 | 154 | Saturday, August 8, 2020 | Approved | |
Consul 1.7.2 | 3358 | Wednesday, June 17, 2020 | Approved | |
Consul 1.7.1 | 180 | Wednesday, June 17, 2020 | Approved | |
Consul 1.7.0 | 188 | Tuesday, June 16, 2020 | Approved | |
Consul 1.6.10 | 269 | Sunday, December 27, 2020 | Approved | |
Consul 1.6.9 | 139 | Sunday, December 27, 2020 | Approved | |
Consul 1.6.8 | 94 | Sunday, December 27, 2020 | Approved | |
Consul 1.6.7 | 88 | Saturday, December 26, 2020 | Approved | |
Consul 1.6.6 | 179 | Tuesday, June 16, 2020 | Approved | |
Consul 1.6.5 | 1746 | Friday, April 17, 2020 | Approved | |
Consul 1.6.4 | 422 | Friday, April 17, 2020 | Approved | |
Consul 1.6.3 | 228 | Wednesday, April 15, 2020 | Approved | |
Consul 1.6.2 | 329 | Thursday, April 9, 2020 | Approved | |
Consul 1.6.1 | 12622 | Friday, October 4, 2019 | Approved | |
Consul 1.6.0 | 365 | Friday, October 4, 2019 | Approved | |
Consul 1.5.3 | 248 | Friday, October 4, 2019 | Approved | |
Consul 1.5.2 | 3656 | Monday, July 8, 2019 | Approved | |
Consul 1.5.1 | 1945 | Monday, June 24, 2019 | Approved | |
Consul 1.5.0 | 287 | Monday, June 24, 2019 | Approved | |
Consul 1.4.5 | 349 | Monday, June 24, 2019 | Approved | |
Consul 1.4.4 | 329 | Monday, June 24, 2019 | Approved | |
Consul 1.4.3 | 2285 | Wednesday, March 6, 2019 | Approved | |
Consul 1.4.2 | 531 | Wednesday, March 6, 2019 | Approved | |
Consul 1.4.1 | 246 | Tuesday, March 5, 2019 | Approved | |
Consul 1.4.0 | 1714 | Tuesday, December 11, 2018 | Approved | |
Consul 1.3.1 | 349 | Monday, December 10, 2018 | Approved | |
Consul 1.3.0 | 812 | Saturday, November 10, 2018 | Approved | |
Consul 1.2.3 | 2228 | Friday, October 12, 2018 | Approved | |
Consul 1.2.2 | 4075 | Thursday, August 2, 2018 | Approved | |
Consul 1.2.1 | 758 | Monday, July 16, 2018 | Approved | |
Consul 1.2.0 | 678 | Wednesday, June 27, 2018 | Approved | |
Consul 1.1.0 | 1025 | Monday, June 4, 2018 | Approved | |
Consul 1.0.7 | 1434 | Monday, April 23, 2018 | Approved | |
Consul 1.0.6 | 404 | Friday, April 20, 2018 | Approved | |
Consul 1.0.5 | 299 | Friday, April 20, 2018 | Approved | |
Consul 1.0.3 | 6407 | Friday, January 26, 2018 | Approved | |
Consul 1.0.2 | 490 | Wednesday, January 24, 2018 | Approved | |
Consul 1.0.1 | 363 | Wednesday, January 24, 2018 | Approved | |
Consul 1.0.0 | 5387 | Monday, October 23, 2017 | Approved | |
Consul 0.9.3 | 9834 | Saturday, September 16, 2017 | Approved | |
Consul 0.9.2 | 434 | Saturday, September 16, 2017 | Approved | |
Consul 0.9.1 | 332 | Saturday, September 16, 2017 | Approved | |
Consul 0.9.0 | 1364 | Wednesday, July 26, 2017 | Approved | |
Consul 0.8.5 | 3967 | Friday, June 30, 2017 | Approved | |
Consul 0.8.4 | 476 | Friday, June 30, 2017 | Approved | |
Consul 0.8.3 | 467 | Friday, June 30, 2017 | Approved | |
Consul 0.8.2 | 409 | Friday, June 30, 2017 | Approved | |
Consul 0.8.1 | 492 | Friday, June 30, 2017 | Approved | |
Consul 0.8.0 | 4094 | Monday, April 10, 2017 | Approved | |
Consul 0.7.5 | 11618 | Tuesday, February 21, 2017 | Approved | |
Consul 0.7.4.1 | 431 | Thursday, February 16, 2017 | Approved | |
Consul 0.7.4 | 403 | Wednesday, February 15, 2017 | Approved | |
Consul 0.7.3 | 513 | Wednesday, February 15, 2017 | Approved | |
Consul 0.7.2 | 1450 | Monday, January 2, 2017 | Approved | |
Consul 0.7.1 | 518 | Friday, December 30, 2016 | Approved | |
Consul 0.7.0 | 3834 | Monday, September 19, 2016 | Approved | |
Consul 0.6.4 | 5249 | Wednesday, April 20, 2016 | Approved | |
Consul 0.6.3.2 | 612 | Monday, March 7, 2016 | Approved | |
Consul 0.6.3.1 | 484 | Thursday, February 25, 2016 | Approved | |
Consul 0.6.3 | 811 | Friday, January 22, 2016 | Approved | |
Consul 0.5.2 | 9167 | Wednesday, October 14, 2015 | Approved | |
Consul 0.5.0 | 20925 | Monday, June 1, 2015 | Approved | |
consul 0.4.1 | 660 | Friday, October 31, 2014 | Approved | |
consul 0.3.1 | 500 | Wednesday, August 13, 2014 | Approved |
HashiCorp 2014
Version 0.9.0
-
- NSSM (≥ 2.24.0)
Ground Rules:
- This discussion is only about Consul and the Consul 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 Consul, 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.