Posted On March 29, 2019

Domino Server Restore Procedure

kimconnect 0 comments
blog.KimConnect.com >> Virtualization , Windows >> Domino Server Restore Procedure
1. In AWS, verify that a new instance of a Domino Server has been launched
Log onto AWS >> EC2 >> click Instances
 
2. Obtain the new instance’s IP address
Right-click instance name >> Networking >> Manage Private IP Addresses >> note its Private IP
 
3. Reset Computer Machine Password
 
 
 
psexec \\aws-dominoserver01 -e -h -u aws-dominoserver01\mailadmin -p password net stop “IBM Domino Server (DLotusDominodata)”
>> find command to set service to manually start
>> change to workgroup
>> reboot
>> join domain
>> reboot
>> make sure DNS has new server IP address
>> check to see if replication continues

Leave a Reply

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

Related Post

WordPress NextGen Gallery Plugin Error

Error Message: Failed to load plugin url: /bitnami/wordpress/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/attach_to_post/static/ngg_attach_to_post_tinymce_plugin.js?ver=3.17 Resolution: Although the root cause hasn't been…

An Exercise in Discover Whether an Active Directory Account Has RDP Access to Windows Bastion Hosts

Check Computers: $computernames='RDPSERVER01','RDPSERVER02','RDPSERVER03' invoke-command -computername $computernames {get-localgroupmember 'remote desktop users'}|select PSComputername,Name # Sample output PS…

PowerShell: Email Users with Expiring Passwords

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