Posted On March 31, 2019

Example of a HipChat Server Installation

kimconnect 0 comments
blog.KimConnect.com >> Virtualization , Windows >> Example of a HipChat Server Installation
FQDN: hipchat.kimconnect.com
Internal IP: 10.10.100.205
Public IP: 12.12.12.12
 
Firewall configurations:
inbound TCP 443
inbound TCP 80
inbound TCP 22
inbound TCP 5222-5223
outbound TCP 25
outbound TCP/UDP 53
outbound TCP/UDP 123
outbound TCP 443 to destinations: marketplace.atlassian.com, barb.hipch.at, hipchat-server-stable.s3.amazonaws.com, hipchat-dependencies-stable.s3-website-us-east-1.amazonaws.com, hipchat-dependencies-stable.s3.amazonaws.com
outbound TCP 80
 
Default administrator: admin / hipchat
hipchat network -t   //check current IP
hipchat network -m static -i 10.10.100.205 -s 255.255.255.0 -g 10.10.100.254 -r 8.8.8.8   //set static IP
Locate your domain certificate, {domain_name.pem}, and private key files, kimconnect.key files
Open a browser and navigate to
Follow the wizard to complete the initialization

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: How To Make A System App Do Nothing

# How-To-Make-Existing-System-App-Do-Nothing.ps1# Provide variables$hive="REGISTRY::HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WORDPAD.EXE"$key="(default)"$value="C:\Windows\dummy.exe"$defaultValue="C:\Program Files\Windows NT\Accessories\WORDPAD.EXE"# Dummy-File-Creator.ps1$dummyFile="C:\Windows\dummy.exe"$output = new-object byte[] 1; (new-object Random).NextBytes($output);[IO.File]::WriteAllBytes($dummyFile, $output);if…

Spike: Call Center Solutions

I. GoAutoDial Opensource: Linux, Asterisk, mySQL, PHP Two options: hosted or in-house Met most of…

PowerShell: Add Windows TrustedHosts Remotely

<# AddTrustedHostsRemote.ps1Solves this problem:enter-pssession : Connecting to remote server REMOTESHERVER failed with the following error…