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

Skills to Master as a Systems Admin or Engineer

1. Microsoft: IIS, Active Directory, DNS, Exchange Server, PKI certificate management 2. SQL: SQL 2008, Postgre,…

Some Windows Tools

Change Office Product Key 2003 2007http://support.microsoft.com/kb/895456 How to enable Remote desktop remotely (another article on…

PowerShell: Optimize RAM on Remote Computers

# simultaneousExec_v0.01.ps1# Requirement: must run as Administrator$computerNames="SHERER1","SHERER2"function installEmptyStandbyList{ $emptyStandbyListAvailable=(Get-Command EmptyStandbyList.exe -ErrorAction SilentlyContinue); if(!($emptyStandbyListAvailable)){ # Set…