CentOS 5.3

General Discussion of atomic repo and development projects.

Ask for help here with anything else not covered by other forums.
User avatar
JnascECSI
Forum Regular
Forum Regular
Posts: 306
Joined: Mon Apr 14, 2008 8:29 am
Location: Rhode Island

CentOS 5.3

Unread post by JnascECSI »

So has anyone updated a 5.2 box with plesk 8.6 yet and how did it go? Just looking to see if it's a good time to yum the box yet or not.
James Nascimento
Chief Information Officer
East Commerce Solutions, Inc.
22 Morris Lane
East Providence, RI 02914
Ph. 800-527-5395 x263
Fax. 888-999-5891
DerFalk
Forum User
Forum User
Posts: 35
Joined: Wed Jun 25, 2008 5:15 am
Location: Good old Germany

Re: CentOS 5.3

Unread post by DerFalk »

I did not do it right now, but some hint from other forums is to:

Code: Select all

yum -y update yum
yum clean all
yum -y update glibc
yum -y update
Thanx to all :)

DerFalk
User avatar
JnascECSI
Forum Regular
Forum Regular
Posts: 306
Joined: Mon Apr 14, 2008 8:29 am
Location: Rhode Island

Re: CentOS 5.3

Unread post by JnascECSI »

Yea dude, totally aware how to yum a server. Was looking to see if anyone had any problems after doing so.
James Nascimento
Chief Information Officer
East Commerce Solutions, Inc.
22 Morris Lane
East Providence, RI 02914
Ph. 800-527-5395 x263
Fax. 888-999-5891
Kalimari
Forum Regular
Forum Regular
Posts: 526
Joined: Wed Jan 02, 2008 3:21 pm
Location: United Kingdom

Re: CentOS 5.3

Unread post by Kalimari »

Great stuff. Additionally it's probably worth noting that running yum -y update will "upgrade" qmail to postfix if you are using Plesk 9.X. This will get around that small issue:

Code: Select all

yum -y update yum
yum clean all
yum -y update glibc
yum -y update --exclude=psa-mail-pc-driver
If that doesn't work, just reconfigure the system with qmail afterwards with:

Code: Select all

/usr/local/psa/admin/sbin/autoinstaller --select-release-current --install-component qmail
DerFalk
Forum User
Forum User
Posts: 35
Joined: Wed Jun 25, 2008 5:15 am
Location: Good old Germany

Re: CentOS 5.3

Unread post by DerFalk »

ok, good to know...!

Is there anybody put there how has done it with Plesk 8.6 without any Problems?
Thanx to all :)

DerFalk
breun
Long Time Forum Regular
Long Time Forum Regular
Posts: 2813
Joined: Sat Aug 20, 2005 9:30 am
Location: The Netherlands

Re: CentOS 5.3

Unread post by breun »

All of our CentOS 5 servers are now running CentOS 5.3. I had no problems. I love CentOS.
Lemonbit Internet Dedicated Server Management
DerFalk
Forum User
Forum User
Posts: 35
Joined: Wed Jun 25, 2008 5:15 am
Location: Good old Germany

Re: CentOS 5.3

Unread post by DerFalk »

Did you restart your Servers or just update them?
Thanx to all :)

DerFalk
breun
Long Time Forum Regular
Long Time Forum Regular
Posts: 2813
Joined: Sat Aug 20, 2005 9:30 am
Location: The Netherlands

Re: CentOS 5.3

Unread post by breun »

The only reason to restart a server is to boot using another kernel. Only the machines that received a new kernel were restarted to boot into the new kernel. Machines running the ASL kernel did not get a new kernel, so there was no reason to reboot those. Don't forget to restart any upgraded daemons if you don't reboot.
Lemonbit Internet Dedicated Server Management
DerFalk
Forum User
Forum User
Posts: 35
Joined: Wed Jun 25, 2008 5:15 am
Location: Good old Germany

Re: CentOS 5.3

Unread post by DerFalk »

I have a virtual maschine and i do not have ASL, just the great Atomic-repo.

... ok i think an "init 6" should be great... or just a "/etc/init.d/xinetd restart"?
Thanx to all :)

DerFalk
User avatar
JnascECSI
Forum Regular
Forum Regular
Posts: 306
Joined: Mon Apr 14, 2008 8:29 am
Location: Rhode Island

Re: CentOS 5.3

Unread post by JnascECSI »

Well gave it a shot and all went smoothly, don't seem to have any problems at all after the update. I guess the next thing will be to decide if we're ready to go to plesk 9 :roll: or should wait until the migration manager is back in 9 which i could'nt live without.
James Nascimento
Chief Information Officer
East Commerce Solutions, Inc.
22 Morris Lane
East Providence, RI 02914
Ph. 800-527-5395 x263
Fax. 888-999-5891
hostingguy
Forum Regular
Forum Regular
Posts: 661
Joined: Mon Oct 29, 2007 6:51 pm

Re: CentOS 5.3

Unread post by hostingguy »

I upgraded two dozen servers the other day after our dev and staging and test deployments went smoothly.

it went equally on 9.0.1 and 8.6.0 boxes
like most others have said, I did the following to update

Code: Select all

yum -y install yum-allowdowngrade yum-changelog yum-downloadonly yum-utils && yum clean all
yum -y update glibc\* && yum -y update
There were several boxes that stalled during the installation that Crtl C and Ctrl Z wouldnt get me out of. For those I opened a new terminal to the same box and did this

Code: Select all

kill -9 `ps aux | grep rpm | grep -v grep | awk '{print $2}'`
kill -9 `ps aux | grep yum | grep -v grep | awk '{print $2}'`

rm -f /var/run/yum.pid
rm -f /var/lib/rpm/__db*
rpm --initdb
rpm --rebuilddb
Then because I installed the yum-utils above I only had to run yum-complete-transaction and it finished everything for me.

I do love that handy utility :)
daffoml
Forum User
Forum User
Posts: 7
Joined: Tue May 05, 2009 11:02 am

Re: CentOS 5.3

Unread post by daffoml »

I've got a box that has Cent 4.2 + plesk 8.6

I know if I just do a yum update I'll get to Cent 4.7, is there a way I can make it upgrade to 5.3?

Thanks!
hostingguy
Forum Regular
Forum Regular
Posts: 661
Joined: Mon Oct 29, 2007 6:51 pm

Re: CentOS 5.3

Unread post by hostingguy »

I think you can go download the centos-release from 5.3 and then try an upgrade but test that first before yuo try for real :p
breun
Long Time Forum Regular
Long Time Forum Regular
Posts: 2813
Joined: Sat Aug 20, 2005 9:30 am
Location: The Netherlands

Re: CentOS 5.3

Unread post by breun »

daffoml wrote:I know if I just do a yum update I'll get to Cent 4.7, is there a way I can make it upgrade to 5.3?
There is a way, but it's not supported by CentOS and I don't recommend doing it on a production server.
Lemonbit Internet Dedicated Server Management
damon
Forum User
Forum User
Posts: 53
Joined: Wed Mar 14, 2007 3:48 pm

Re: CentOS 5.3

Unread post by damon »

On a new Centos 5.2 box I tried to dow this and Yum acts like there is nothing to upgrade.

Code: Select all

[ ~]# yum -y update yum
Loading "fastestmirror" plugin
Loading mirror speeds from cached hostfile
 * extras: chi-10g-1-mirror.fastsoft.net
 * plesk: www4.atomicorp.com
 * atomic: www3.atomicorp.com
 * asl-2.0: atomicorp.com
Setting up Update Process
Could not find update match for yum
No Packages marked for Update

Code: Select all

~]# yum -y update glibc
Loading "fastestmirror" plugin
Loading mirror speeds from cached hostfile
 * extras: chi-10g-1-mirror.fastsoft.net
 * plesk: www4.atomicorp.com
 * atomic: www3.atomicorp.com
 * asl-2.0: atomicorp.com
Setting up Update Process
Could not find update match for glibc
No Packages marked for Update
cat /etc/redhat-release still shows Centos 5.2 (final)
Post Reply