PDA

View Full Version : Fedora/CentOS Support


timryberg
08-20-2004, 08:48 PM
Any updated ETA for CentOS/Fedora support? I'm tired of not being able to get updated pachages withoug hunting for them ;-)

I'm looking at updating my server in the next month or so and would rather get the new OS installed on the new box rather than have to go through the (costly -- both in time and dollars) upgrade twice by having to get an install after the box is set up once. Thanks.

Also, will you be supporting Fedra Core 1 or 2?

Thanks

IWorx-Chris
08-20-2004, 08:52 PM
Funny that you ask ;).

We're putting the finishing touches on the 1.8 release which will among other things support CentOS 3.x, Fedora Core 1 and Fedora Core 2 in addition to RedHat 9.

The 1.8 release will be available early next week.

Chris

timryberg
08-20-2004, 09:28 PM
Thanks. That's good news!

IWorx-Bojan
09-09-2004, 02:47 PM
Hello,

Just to expand on that, White Box Linux will also be supported shortly.

Bojan

PaulK
09-09-2004, 07:56 PM
Terrific news. This + the improved backup system will make migration to a new server with Nodeworx/Siteworx easy!

Now we just need 1.8 to go final ;)

timryberg
09-10-2004, 07:50 PM
Terrific news. This + the improved backup system will make migration to a new server with Nodeworx/Siteworx easy!

Now we just need 1.8 to go final ;)

Chris tells me it's VERY close :-)

IWorx-Bojan
09-10-2004, 11:42 PM
Tim,

InterWorx 1.8 should be out, if not already, in a matter of hours. I will let Chris confirm.

Bojan

timryberg
09-11-2004, 12:19 AM
Bojan,

It's out. I did a yum update several hours ago to 1.8.0-2 and several other RPM's a few hours ago. Things appear to be working fine, although the updater in InterWorx didn't show them as pending (I was betaing 1.8), so I did it by hand.

I am now doing a backup of my server data to the second hard drive facilitate a move to the new machine when Sago provisions it.

Tim

sonicgroup
09-11-2004, 08:32 AM
The updates installed automatically for me. I was also betaing 1.8 and I just logged into NodeWorx this morning and it shows the updates this morning at about 25 minutes after midnight in the Installed Batches. It updated httpd, interworx, mod_ssl, and qmail.

IWorx-Chris
09-11-2004, 05:39 PM
Tim,

If Sago's order system isn't updated by Monday, just order a RedHat 9 server and I can work with them to get CentOS on there. Their installers have done a handful for us already and they can grab me on AIM when they are going to setup your box.

Chris

timryberg
09-12-2004, 04:01 PM
Tim,

If Sago's order system isn't updated by Monday, just order a RedHat 9 server and I can work with them to get CentOS on there. Their installers have done a handful for us already and they can grab me on AIM when they are going to setup your box.

Chris

Chris, actually the server was ordered two weeks ago and Iris agreed to wait on provusioning it until the 1.8 was available. (I asked her if she wanted me to wait to order it or do the order at the time and she said to do it this way, probably so that the server I wanted was available when it was time.) It's listed in my.sagonet.com, but I haven't recieced the root password yet and I don't know if it has an OS yet, but I am only being billed for the one server until the transfer is complete.

I expect it to be set up on Monday whenshe gets back to the office.

Thanks again,

Tim

IWorx-Chris
09-13-2004, 03:22 AM
I'll send Iris a note regarding your server and how it should be installed.

Chris

timryberg
09-13-2004, 03:04 PM
I'll send Iris a note regarding your server and how it should be installed.

Chris

Thanks again Chris.

pascal
09-15-2004, 08:21 AM
Hi

I have ordered a new server at sago with 2 hard disk drives and just a litlle more strong than the one I have today.

I ask them to install Centos and InterWorx 1.8 on this new server

As soon as it will be setup could I ask you (Chris/Paul or others and Tim) to help me or/and share your knowledge to transfert all my interworx data (and maybe my server data) from my server to the new one.

Tim : I think that you have 2 HDD too. Do you use a tool to backup data form your HDD1 to HDD 2 ?

Thanks

Pascal

pascal
09-16-2004, 06:37 AM
Hi

Tim do you succesfuly transfered you data to your new CentOS server ?

Pascal

timryberg
09-16-2004, 08:48 PM
I just got the server info today (may have been sent outyesterday bit I wasn't online).

What I am doing is creating a mirror of all of my files onto the second hard drive and asking Sago to move the hard drive over for me. SOme othes use rsync to make backup files on other HD's but I haven't really played with that yet.

For now I am just using the cp command. I am only concerned about how this will effect my permissions. Will everything I move suddenly become the property of root ?

Right now there isn't that much in the way of knowlege toshare other than that.

IWorx-Chris
09-16-2004, 09:08 PM
I'd use tar or rsync to mirror the "/" partition Tim:

STOP ALL SERVICES (iworx, httpd, ftp etc et)


cd /
tar lcf - .|(cd /mnt/second-drive; tar xpvf - )


This will save perms as well.

I forsee problems with the interworx databases and the system consistency in general so I'd really just create new accounts in iworx-cp, copy the user data back into each 'html' dir and re-import the DBs by hand. It's not fun, and we're writing a backup / restore routine as I type this, but it won't be ready for a release or 2.

Chris

CMI
09-16-2004, 09:08 PM
You'll need to use cp -p to keep things like permissions in tact. Of course, if the UIDs change at all between boxes, you'll have a lot of things to go back and clean up anyway.

Edit: Yeah, what Chris said :)

timryberg
09-16-2004, 09:57 PM
I will probably do that -- even though it's a bugger to do I have a lot more data on the server this time over the last but only a few of the things need to be restored immediately -- but for now I have another problem. I'm getting a server liscence error. It says the liscence is invalid or expired. Just open a ticket with Sago.

EMI, as long as I create the accounts inthe same order the user names and ID's should be the same, correct?

CMI
09-16-2004, 10:22 PM
EMI, as long as I create the accounts inthe same order the user names and ID's should be the same, correct?

Sometimes, but don't count on it.

You can use find to search for old UIDs in the tree you are copying and chown as necessary. Just keep a copy of your old /etc/passwd. For example, if the use bob has UID 5000, create an account for him on the new box and:
find /home -u 5000 -exec chown bob \;
You would need to do that for each user. Of course, make sure that if anything in the new system has UID 5000 it doesn't have any files in the tree you are searching.

There is probably a slicker way of doing this, but I'm tired right now :)

timryberg
09-17-2004, 08:51 PM
but for now I have another problem. I'm getting a server liscence error. It says the liscence is invalid or expired. Just open a ticket with Sago.

In case anybody was wondering, the problem was an incorretly set time on the server.

IWorx-Chris
09-17-2004, 09:04 PM
I'd preemptively do the following whenver you get a lic error:


service ntpd stop
ntpdate bitsy.mit.edu
service ntpd start
cd /home/interworx/cron
./license.pex --sync


Chris

timryberg
09-17-2004, 09:08 PM
Thanks, I assume this has something to do with syncronizing the time.