- 28 Mar 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
What steps are needed to clone a all-in-one Uniprint server?
- Updated on 28 Mar 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Question :
What steps do I need to clone an all-in-one Uniprint server?
Answer :
Power off the server.
Clone the computer using the mechanism of your choice.
Presuming this is a Virtual Machine, disable the NIC before powering it on.
Power on the machine.
Login to the console of the machine.
Change the hostname and IP Address as needed.
Open SQL Management Studio and update the "servers" Table.
Option #1
First locate the server_id
USE pharos
SELECT server_id FROM servers WHERE hostname = "your.server.name.here"
Update the Table with the new hostname of the server using the server_id value from above.
USE pharos
UPDATE servers SET hostname = "your.new.servername" WHERE server_id = X (X is the value from above)
Option #2 (presumes you have simple knowledge of how to SQL Server management Studio)
Using SQL Management Studio connect and locate the "pharos" database.
Right-click on the datbase and select "Edit top 200 rows..".
Locate the row with the old server hostname and edit it directly b y typing the new server hostname in its place.
Exit the TAB/Windows that opened and the change will be saved.
Open the registry on the machine and navigate to the keys below and update them with the new hostname of the server.
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Pharos\MachineName
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Pharos\Database Server\HostAddress
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Pharos\Database\Server Name
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Pharos\Edi\Server
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Pharos\Edi\BackupServer
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Pharos\License Server\HostAddress
NOTE : If you have other components like gateways or Mobile Print installed on this single server there potentially be other registry keys under the bas key below that may need to be updated with the new hostname. This article does not include those keys however you can go through everything under the base key and locate them to be changed.
Base Key: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Pharos
Enable the NIC and restart the server.