Difference between revisions of "Migrate images manually"
(→Enabling ssh root access on Ubuntu/Debian) |
(→Enabling ssh root access on Ubuntu/Debian) |
||
Line 70: | Line 70: | ||
</pre> | </pre> | ||
− | Then adjust the ssh config file to allow root to log in. The configuration file is located at /etc/ssh/sshd_config Change the line "<font color="red">PermitRootLogin</font>" to be yes instead of whatever the default is. | + | Then adjust the ssh config file to allow root to log in. The configuration file is located at <font color="red">/etc/ssh/sshd_config</font> Change the line "<font color="red">PermitRootLogin</font>" to be yes instead of whatever the default is. |
The line should look like this when you're done: <font color="red">PermitRootLogin yes</font> | The line should look like this when you're done: <font color="red">PermitRootLogin yes</font> | ||
Use the text editor of your choice to do it. I like to use Vi. | Use the text editor of your choice to do it. I like to use Vi. |
Revision as of 14:37, 4 January 2017
This describes how to manually migrate all images to a new server.
Related article: FOG_Client#Maintain_Control_Of_Hosts_When_Building_New_Server
Contents
Image files
Below are many options for migrating all images. This article assumes you have FOG installed already on the new server, because the installer would setup FTP and NFS for you. Fog doesn't setup Samba but an example of how to use a Samba share is included. Where you see x.x.x.x, this is the old storage node's IP address. These commands are written to be run on the new storage node, however they can be altered to run on the old storage node.
using lftp
lftp -c 'open x.x.x.x; user UserGoesHere PasswordHere; mirror -e /images/TheImagePath /images/TheImagePath; quit'
Example:
lftp -c 'open 10.0.0.4; user fog MyAwesomePassword; mirror -e /images /images; quit'
using NFS
mount x.x.x.x:/<remote source> <local mount point> cp -R /<local mount point>/* /<local destination> umount <local mount point>
Example:
mkdir /tempMount mount 10.0.0.4:/images /tempMount cp -R /tempMount/* /images umount /tempMount
Using Samba
mkdir /LocalMountPointHere mount -t cifs //x.x.x.x/ShareNameGoesHere /LocalMountPointHere -o username=YourUsernameGoesHere -o password=YourPasswordGoesHere,noexec cp -r /LocalMountPointHere/* /DestinationHere umount /LocalMountPointHere
Example:
mkdir /tempMount mount -t cifs //10.0.0.4/images /tempMount -o username=root -o password=MyAwesomePassword,noexec cp -r /tempMount/* /images umount /tempMount
Using SCP
scp -r root@x.x.x.x:/images/* /images
Example:
scp -r root@10.0.0.4:/images/* /images
Enabling ssh root access on Ubuntu/Debian
Install ssh
apt-get install openssh-server -y
Then adjust the ssh config file to allow root to log in. The configuration file is located at /etc/ssh/sshd_config Change the line "PermitRootLogin" to be yes instead of whatever the default is. The line should look like this when you're done: PermitRootLogin yes Use the text editor of your choice to do it. I like to use Vi.
vi /etc/ssh/sshd_config
Instructions on using VI: Vi
Then you should enable and restart sshd, follow steps below.
systemctl enable sshd systemctl restart sshd
You should now be able to ssh and SCP to and from your Ubuntu/Debian box.
Using rsync
rsync -a root@x.x.x.x:/images/* /images
Example:
rsync -a root@10.0.0.4:/images* /images
Image Definitions
Image definitions are what's stored in the database, and what is displayed in the web interface. There are DB entries for each image. Image definitions do not automatically appear just because the image files are present on the storage node, this is a common misconception.
You may recreate these manually, but you must recreate them exactly as they were on the old server. The image path must be exact and is case sensitive, the image OS and image type must be set exactly as in the old server as well.
The easiest option is to use FOG's export/import feature inside of Image Management.