Install Chocolatey
The Chocolatey home page is at https://chocolatey.org/ Install Chocolatey Navigate to the Chocolatey website at https://chocolatey.org/ and follow the latest instructions. At the time of writing the instructions were Using the Command prompt Open a…
The instance ID ‘…’ does not exist
When you launch an EC2 instance in AWS and the Chef script is trying to set tags on the instance you may get the error message: The instance ID ‘…’ does not exist It can happen when you launch the instance in one AWS account, and…
Determine the Windows PowerShell version
To reliably display the version of the Windows PowerShell engine Open a PowerShell command window, Execute the command, $PSVersionTable.PSVersion PS C:\WINDOWS\system32> $PSVersionTable.PSVersion Major Minor Build Revision —– …
How to create a Docker repository in Artifactory
Artifactory supports multiple repository types, Docker is one of them. To create a new Docker repository in Artifactory Set the Custom Base URL of the Artifactory server From the Artifactory documentation at…
How to transfer an Atlassian Confluence wiki space to another server
Confluence is one of the most popular Wikis with a great user interface. To export and transfer an Atlassian Confluence wiki to another server Log into the Atlassian Confluence wiki as an administrator, In the lower left corner click the gear icon and…
Atom text editor configuration
Configure Atom Turn off auto-indent on paste to stop Atom reformatting your code. In the Atom menu select Preferences On the left side select Editor Uncheck Auto Indent On Paste Check Show Indent Guide Set Tab Type to soft to place 2 spaces when you…
Deploy a WAR file of a Java web application on the Apache Tomcat web server
There are two ways to deploy a WAR file of a Java web application on the Apache Tomcat web server Using the command line Copy the WAR file into the webapps folder of the Tomcat installation directory, Make sure the CATALINA_HOME environment variable…
Tomcat web server configuration
When you install the Apache Tomcat web server there are some configuration settings you need to make to be able to administer and use it. Administrator user accounts When you install the Apache Tomcat web server there is no admin user account specified,…
Enable PowerShell execution in Windows
The default settings of Windows disable the PowerShell script execution. This protects your computer in case a malicious PowerShell script would try to make changes on your machine. The same settings prevent you from executing your own automation scripts…
The specified Security Group and Parameter Group are not set in the RDS instance
If the Terraform apply execution times out during the RDS instance creation, the specified Security Group and Parameter Group is not set in the RDS instance. The solution is to set the timeout in the aws_db_instance resource. When a multi-az RDS instance…