Difference between revisions of "Centos Upgrade 4.x to 5.x"

From OpenVZ Virtuozzo Containers Wiki
Jump to: navigation, search
(categorized)
(improved tar based backup/restore)
 
(29 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{wikify}}
 +
 
[[Category:Templates]]
 
[[Category:Templates]]
  
Line 4: Line 6:
 
follow these steps:
 
follow these steps:
  
1 - Create a container using centos-4-i386-minimal and set a valid nameserver  
+
==Create the container==
 +
 
 +
Create a container using centos-4-i386-minimal and set a valid nameserver:
 +
<pre>
 +
vzctl create $CTID --ostemplate centos-4-i386-minimal --config CONFIG_TEMPLATE --ipadd container_IP --hostname temp
 +
vzctl set $CTID --nameserver NAMESERVER_IP --save
 +
</pre>
 +
 
 +
 
 +
==Install centos-5-release packages==
 +
Use <code>vzctl exec</code> to execute the rpm install command on the container:
 +
 
 +
<pre>
 +
vzctl exec $CTID rpm -Uvh http://mirror.centos.org/centos/5/os/i386/CentOS/centos-release-notes-5.6-0.i386.rpm \ http://mirror.centos.org/centos/5/os/i386/CentOS/centos-release-5-6.el5.centos.1.i386.rpm
 +
</pre>
 +
Note: centos-release-5 depends on notes-package, start with that one.
 +
 
 +
==Backup dev==
 +
 
 +
Backup the container /dev/ directory, as initscripts needs udev and will remove vzdev you'll need the backup:
 +
 
 +
<pre>
 +
tar -cf $CTID.dev.tar -C /vz/private/$CTID dev
 +
</pre>
 +
 
 +
==Install initscripts package==
 +
 
 +
Install initscripts package (forced and with no deps), as per below:
 +
 
 +
<pre>
 +
vzctl exec $CTID rpm -Uvh http://mirror.centos.org/centos/5/os/i386/CentOS/initscripts-8.45.33-1.el5.centos.i386.rpm --force --nodeps
 +
</pre>
 +
 
 +
Note: If the "transfer failed", go to the [http://mirror.centos.org/centos/5/os/i386/CentOS/ CentOS5 mirror] and find the latest initscripts rpm and use that instead.
 +
 
 +
==Update conf file==
 +
 
 +
Edit /etc/vz/conf/$CSID.conf and replace
 +
<pre>
 +
OSTEMPLATE="centos-4-i386-minimal"
 +
</pre>
 +
with
 +
<pre>
 +
OSTEMPLATE="centos-5-i386-minimal"
 +
</pre>
 +
 
 +
Alternatively, use the 'sed' command to replace it:
 +
<pre>
 +
sed -i 's#OSTEMPLATE="centos-4#OSTEMPLATE="centos-5#g' /etc/vz/conf/$CTID.conf
 +
</pre>
 +
 
 +
==Copy existing template==
 +
 
 +
Copy existing template from:
 +
 
 
<pre>
 
<pre>
vzctl create CTID --ostemplate centos-4-i386-minimal --config CONFIG_TEMPLATE --ipadd container_IP --hostname temp
+
/vz/template/centos/4
vzctl set CTID --nameserver NAMESERVER_IP --save
 
 
</pre>
 
</pre>
2 - Enter in container
+
to
 
<pre>
 
<pre>
vzctl enter CTID
+
/vz/template/centos/5
 
</pre>
 
</pre>
3 - Install centos-5-release packages
+
 
 +
==Update yum.conf==
 +
 
 +
In /vz/template/centos/5/i386/config/yum.conf change mirrors to CentOS 5
 +
 
 +
Using sed:
 +
 
 
<pre>
 
<pre>
rpm -Uvh http://mirror.centos.org/centos/5.0/os/i386/CentOS/centos-release-notes-5.0.0-2.i386.rpm
+
sed -i 's#centos4#centos5#g' /vz/template/centos/5/i386/config/yum.conf
rpm -Uvh http://mirror.centos.org/centos/5.0/os/i386/CentOS/centos-release-5-0.0.el5.centos.2.i386.rpm
+
sed -i 's#CentOS 4#CentOS 5#g' /vz/template/centos/5/i386/config/yum.conf
 +
sed -i 's#centos/4/#centos/5/#g' /vz/template/centos/5/i386/config/yum.conf
 
</pre>
 
</pre>
Note: centos-release-5 depends on notes-package, start with that one.
 
  
4 - Backup your /dev/, since initscripts need udev and will remove vzdev you'll net the backup
+
==Upgrade container packages==
 +
 
 +
db-version will complain, so delete the conflicting database first:
 
<pre>
 
<pre>
tar -cf dev.tar ./dev
+
rm -fr /vz/root/$CTID/var/lib/rpm/__*
 
</pre>
 
</pre>
5 - Install initscripts package (forced and with no deps)
+
 
 +
Now run vzyum to upgrade the contain packages:
 
<pre>
 
<pre>
rpm -Uvh http://mirror.centos.org/centos/5.0/os/i386/CentOS/initscripts-8.45.14.EL-1.el5.centos.1.i386.rpm --force --nodeps
+
vzyum $CTID upgrade
 
</pre>
 
</pre>
6 - Exit from container
+
 
 +
===Troubleshooting===
 +
 
 +
If you get this error:
 +
 
 
<pre>
 
<pre>
exit
+
Error: Missing Dependency: python-abi = 2.3 is needed by package python-elementtree
 +
</pre>
 +
 
 +
and/or
 +
<pre>
 +
warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID e8562897
 +
Public key for libsepol-1.15.2-3.el5.i386.rpm is not installed
 
</pre>
 
</pre>
7 - Upgrade container packages using vzyum (32bit only)
+
 
 +
You need to run the following before trying again:
 +
 
 
<pre>
 
<pre>
vzyum CTID upgrade
+
vzctl exec $CTID rpm -e --justdb python-elementtree --nodeps
 +
vzctl exec $CTID rpm --import http://mirrors.kernel.org/centos/RPM-GPG-KEY-CentOS-5
 
</pre>
 
</pre>
Note: on 64-bit yum db-version might complain. Do "rm /vz/root/VZNUM/var/lib/rpm/__*" to delete conflicting DB.
 
  
8 - Stop your VE
+
==Test your VE==
 +
Check you can enter your VE:
 
<pre>
 
<pre>
vzctl stop CTID
+
vzctl enter $CTID
 
</pre>
 
</pre>
9 - Replace the new /dev/ with the old one
+
 
 +
All went OK? Exit the VE:
 
<pre>
 
<pre>
cd /vz/private/CTID
+
exit
rm -rf dev
 
tar -xvf dev.tar
 
 
</pre>
 
</pre>
10 - Leave the container private dir (or it will not stard)
+
 
 +
===Troubleshooting===
 +
 
 
<pre>
 
<pre>
cd
+
Unable to open pty: No such file or directory
 
</pre>
 
</pre>
11 - Start the container
+
If you see errors like this, see the [[VPS_enter_failed]] article.
 +
 
 +
==Stop your VE==
 
<pre>
 
<pre>
vzctl start CTID
+
vzctl stop $CTID
 
</pre>
 
</pre>
12 - Remove container IP
+
 
 +
==Restore dev==
 +
 
 +
This will replace the new /dev/ with the old one:
 
<pre>
 
<pre>
vzctl set --ipdel container_IP
+
mv /vz/private/$CTID/dev /vz/private/$CTID/dev.old
 +
tar -xvf $CTID.dev.tar -C /vz/private/$CTID
 
</pre>
 
</pre>
13 - Stop container
+
 
 +
== Remove container IP ==
 
<pre>
 
<pre>
vzctl stop CTID
+
vzctl set $CTID --ipdel all --save
 
</pre>
 
</pre>
14 - Create the template
+
 
 +
==Create the template==
 
<pre>
 
<pre>
cd /vz/private/CTID
+
cd /vz/private/$CTID
tar -zcf /vz/template/cache/centos-5.0-i386-minimal.tar.gz .
+
tar --numeric-owner -zcf /vz/template/cache/centos-5.5-i386-minimal.tar.gz .
 
</pre>
 
</pre>

Latest revision as of 22:25, 2 June 2011

Yellowpin.svg Note: this article is not formatted according to this Wiki standards. Please help reformatting it in a better way.

To create a CentOS 5 minimal template from centos-4-i386-minimal, follow these steps:

Create the container[edit]

Create a container using centos-4-i386-minimal and set a valid nameserver:

vzctl create $CTID --ostemplate centos-4-i386-minimal --config CONFIG_TEMPLATE --ipadd container_IP --hostname temp
vzctl set $CTID --nameserver NAMESERVER_IP --save


Install centos-5-release packages[edit]

Use vzctl exec to execute the rpm install command on the container:

vzctl exec $CTID rpm -Uvh http://mirror.centos.org/centos/5/os/i386/CentOS/centos-release-notes-5.6-0.i386.rpm \ http://mirror.centos.org/centos/5/os/i386/CentOS/centos-release-5-6.el5.centos.1.i386.rpm

Note: centos-release-5 depends on notes-package, start with that one.

Backup dev[edit]

Backup the container /dev/ directory, as initscripts needs udev and will remove vzdev you'll need the backup:

tar -cf $CTID.dev.tar -C /vz/private/$CTID dev

Install initscripts package[edit]

Install initscripts package (forced and with no deps), as per below:

vzctl exec $CTID rpm -Uvh http://mirror.centos.org/centos/5/os/i386/CentOS/initscripts-8.45.33-1.el5.centos.i386.rpm --force --nodeps

Note: If the "transfer failed", go to the CentOS5 mirror and find the latest initscripts rpm and use that instead.

Update conf file[edit]

Edit /etc/vz/conf/$CSID.conf and replace

OSTEMPLATE="centos-4-i386-minimal"

with

OSTEMPLATE="centos-5-i386-minimal"

Alternatively, use the 'sed' command to replace it:

sed -i 's#OSTEMPLATE="centos-4#OSTEMPLATE="centos-5#g' /etc/vz/conf/$CTID.conf

Copy existing template[edit]

Copy existing template from:

/vz/template/centos/4

to

/vz/template/centos/5

Update yum.conf[edit]

In /vz/template/centos/5/i386/config/yum.conf change mirrors to CentOS 5

Using sed:

sed -i 's#centos4#centos5#g' /vz/template/centos/5/i386/config/yum.conf
sed -i 's#CentOS 4#CentOS 5#g' /vz/template/centos/5/i386/config/yum.conf
sed -i 's#centos/4/#centos/5/#g' /vz/template/centos/5/i386/config/yum.conf

Upgrade container packages[edit]

db-version will complain, so delete the conflicting database first:

rm -fr /vz/root/$CTID/var/lib/rpm/__*

Now run vzyum to upgrade the contain packages:

vzyum $CTID upgrade

Troubleshooting[edit]

If you get this error:

Error: Missing Dependency: python-abi = 2.3 is needed by package python-elementtree

and/or

warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY, key ID e8562897
Public key for libsepol-1.15.2-3.el5.i386.rpm is not installed

You need to run the following before trying again:

vzctl exec $CTID rpm -e --justdb python-elementtree --nodeps
vzctl exec $CTID rpm --import http://mirrors.kernel.org/centos/RPM-GPG-KEY-CentOS-5

Test your VE[edit]

Check you can enter your VE:

vzctl enter $CTID

All went OK? Exit the VE:

exit

Troubleshooting[edit]

Unable to open pty: No such file or directory

If you see errors like this, see the VPS_enter_failed article.

Stop your VE[edit]

vzctl stop $CTID

Restore dev[edit]

This will replace the new /dev/ with the old one:

mv /vz/private/$CTID/dev /vz/private/$CTID/dev.old
tar -xvf $CTID.dev.tar -C /vz/private/$CTID

Remove container IP[edit]

vzctl set $CTID --ipdel all --save

Create the template[edit]

cd /vz/private/$CTID
tar --numeric-owner -zcf /vz/template/cache/centos-5.5-i386-minimal.tar.gz .