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: Checking Duplicating Identifiers Among ADFS Relying Party Trusts

function getDuplicatingIfd{ write-host "Checking each relying party trust for any duplicates of identifiers..." $trusts=Get-AdfsRelyingPartyTrust $allTrustNames=$trusts.Name…

PowerShell: Email Users with Expiring Passwords

# PasswordExpirationNotification.ps1 # Description: # This script performs the following tasks # a. Query Active…

PowerShell: Query Google Account Using GAM

$emailAddress='[email protected]' $field='accounts:last_login_time' function getGamUser{ param( $emailAddress, $field ) $result=try{gam report users user $emailAddress}catch{} if($result){ $headers=$result[0]…