Hi Pete, I am migrating my company's servers from Cobalt to Red Hat. The reason I'm doing this is because the Cobalt nt supported anymore. But the reason I need a management GUI for web and email is our customers. They are use to administering they're own sites. They are currently able to add and delete users of email and web admins. They are also able to use Front Page server extensions. I dont want this migration to be to much of a burden on them. Thanks for the help! Dan Burchfield -----Original Message----- From: redhat-list-bounces@xxxxxxxxxx [mailto:redhat-list-bounces@xxxxxxxxxx]On Behalf Of redhat-list-request@xxxxxxxxxx Sent: Friday, December 31, 2004 11:01 AM To: redhat-list@xxxxxxxxxx Subject: redhat-list Digest, Vol 10, Issue 42 Send redhat-list mailing list submissions to redhat-list@xxxxxxxxxx To subscribe or unsubscribe via the World Wide Web, visit https://www.redhat.com/mailman/listinfo/redhat-list or, via email, send a message with subject or body 'help' to redhat-list-request@xxxxxxxxxx You can reach the person managing the list at redhat-list-owner@xxxxxxxxxx When replying, please edit your Subject line so it is more specific than "Re: Contents of redhat-list digest..." Today's Topics: 1. Re: General restore procedures (Pete Nesbitt) 2. GUI for Sendmail and Apache (Dan Burchfield) 3. RE: GUI for Sendmail and Apache (Harding, Devon) 4. Re: GUI for Sendmail and Apache (Pete Nesbitt) 5. Rpmdb error in log file (Ryan Golhar) 6. Compiling vsftpd on Redhat AS2.1 failed (shen mode) 7. Re: Compiling vsftpd on Redhat AS2.1 failed (Ed Wilts) ---------------------------------------------------------------------- Message: 1 Date: Thu, 30 Dec 2004 09:24:50 -0800 From: Pete Nesbitt <pete@xxxxxxxxx> Subject: Re: General restore procedures To: redhat-list@xxxxxxxxxx, Shane Presley <shane.presley@xxxxxxxxx> Message-ID: <200412300924.51561.pete@xxxxxxxxx> Content-Type: text/plain; charset="iso-8859-1" On December 30, 2004 08:43 am, Shane Presley wrote: > On Wed, 29 Dec 2004 09:36:15 -0800, Pete Nesbitt <pete@xxxxxxxxx> wrote: > > Hi Shane, > > What happens when "it won't boot"? > > You probably need to get GRUB (boot loader) onto the new disk's mbr. > > > > if that's the case, it has been covered many times, but basicly: > > boot CD #1, select rescue, mount the existing os as read/write, chroot > > into /tmp/sysimage (the drive you want to make bootable), run grub. > > > > hope that helps. > > -- > > Pete Nesbitt, rhce > > Hi Pete, > > Thanks for the help. I answered part of this in another post, but I > just re-read your post and it got me thinking. I may be doing > something wrong when I try to install the MBR on the new disk. I ran > linux rescue with only the new drive in there (with the restored > files). When linux rescue tried to mount it, it failed. > > But it sounds like you're suggesting I manually mount the file system? > I don't think I know how to do that. Could you point me to where > might have that documentation? > > Thanks, > Shane Hi Shane, first, please note that where I had said to run grub, as stated by Ed, it is grub-install you want to run to have the mbr added. You should be able to have the rescue environment mount the drive for you, but if it fail, do this after booting into rescue: cd /tmp mkdir new_drive (or whatever dir name you like) mount -t ext3 /dev/sda1 (presuming ext3 or use ext2) mount (just to confirm the mount worked ok) chroot /tmp/new_drive grub-install /dev/sda Note that you are mounting sda1, not sda (the fs not the disk) but installing GRUB on sda (the device not the fs) (Shane, please keep the RH List in the To field, not the CC, so a simple "reply" hits the list. Thanks.) -- Pete Nesbitt, rhce ------------------------------ Message: 2 Date: Thu, 30 Dec 2004 12:08:43 -0600 From: "Dan Burchfield" <dburch@xxxxxxxxx> Subject: GUI for Sendmail and Apache To: <redhat-list@xxxxxxxxxx> Message-ID: <03f601c4ee9a$a183a4f0$0f0aa8c0@irvyou2> Content-Type: text/plain; charset="iso-8859-1" Hello all! Does anyone know of a GUI program to do simple admin of Sendmail and Apache on Red Hat? Thanks ------------------------------ Message: 3 Date: Thu, 30 Dec 2004 13:21:00 -0500 From: "Harding, Devon" <dharding@xxxxxxxxxxxxxxxx> Subject: RE: GUI for Sendmail and Apache To: "General Red Hat Linux discussion list" <redhat-list@xxxxxxxxxx> Message-ID: <6C211C28A7F4CD4B8D4928648EE77F76C5B484@xxxxxxxxxxxxxxxxxxxxxxxxx> Content-Type: text/plain; charset="us-ascii" http://www.webmin.com -----Original Message----- From: redhat-list-bounces@xxxxxxxxxx [mailto:redhat-list-bounces@xxxxxxxxxx] On Behalf Of Dan Burchfield Sent: Thursday, December 30, 2004 1:09 PM To: redhat-list@xxxxxxxxxx Subject: GUI for Sendmail and Apache Hello all! Does anyone know of a GUI program to do simple admin of Sendmail and Apache on Red Hat? Thanks -- redhat-list mailing list unsubscribe mailto:redhat-list-request@xxxxxxxxxx?subject=subscribe https://www.redhat.com/mailman/listinfo/redhat-list ------------------------------ Message: 4 Date: Thu, 30 Dec 2004 10:24:08 -0800 From: Pete Nesbitt <pete@xxxxxxxxx> Subject: Re: GUI for Sendmail and Apache To: General Red Hat Linux discussion list <redhat-list@xxxxxxxxxx> Message-ID: <200412301024.09544.pete@xxxxxxxxx> Content-Type: text/plain; charset="iso-8859-1" On December 30, 2004 10:08 am, Dan Burchfield wrote: > Hello all! > Does anyone know of a GUI program to do simple admin of Sendmail and > Apache on Red Hat? Thanks Hi Dan, I don't know about one for sendmail, but RH comes with a gui for apache. It is redhat-config-httpd [or possibly service-config-httpd(?) or fedora-config-httpd(?) depending on rh/fedora release]. You can call it as root from the command line or in the KDE menu system settings -> server settings -> http You should be aware that (at least with this particular tool), it will really doctor the httpd config file making manual maintenance a real pain. So if you (or anyone else) will never ever want to manually work on the web daemon configuration, go ahead and use it, but I would recommend you learn to manually configure it (http://httpd.apache.org) instead. You may want to use the tool to get online, but later replace it with traditional configuration file. AFAICR, it only changes /etc/httpd/conf/httpd.conf I think it's the same for firewall & dns tools (redhat-config-securitylevel & redhat-config-bind-gui), not much of as learning tools. It would be nice to see a frontend that would be as useful learning to see how things work as it is to set up the environment. It seems too many of these utilities impair their use as a learning tool because you are left with either different files or different file formats than are typically in use so you can't use the tools to help you learn the process of implementing and customizing services :( -- Pete Nesbitt, rhce ------------------------------ Message: 5 Date: Fri, 31 Dec 2004 00:29:52 -0500 From: "Ryan Golhar" <golharam@xxxxxxxxx> Subject: Rpmdb error in log file To: "'General Red Hat Linux discussion list'" <redhat-list@xxxxxxxxxx> Message-ID: <001301c4eef9$c1b6da30$6400a8c0@GOLHARMOBILE1> Content-Type: text/plain; charset="us-ascii" Hi all, I went away on vacation for the last two weeks and came back to find all my machines reporting the following error in the nightly cron log: rpmdb: Program version 4.2 doesn't match environment version error: db4 error(22) from dbenv->open: Invalid argument error: cannot open Packages index using db3 - Invalid argument (22) error: cannot open Packages database in /var/lib/rpm It repeats this many times over. I tried running up2date but get the same error. Any ideas? Ryan ------------------------------ Message: 6 Date: Fri, 31 Dec 2004 15:03:02 +0800 (CST) From: shen mode <shenmode@xxxxxxxxxxxx> Subject: Compiling vsftpd on Redhat AS2.1 failed To: redhat list <redhat-list@xxxxxxxxxx> Message-ID: <20041231070302.73148.qmail@xxxxxxxxxxxxxxxxxxxxxxxxxxx> Content-Type: text/plain; charset=gb2312 Hi, I'm trying to install vsftpd on Redhat AS2.1. I tried with vsftpd2.0.2 source and "make" under source files directory. But it failed and showed: gcc -c sysdeputil.c -O2 -Wall -W -Wshadow -idirafter dummyinc In file included from /usr/include/linux/version.h:1, from sysdeputil.c:64: /usr/include/linux/rhconfig.h:31:60: operator '(' has no left operand make: *** [sysdeputil.o] Error 1 I tried with older version but all of compiling process failed with the same error. How could I do with it ? Moore _________________________________________________________ Do You Yahoo!? 150MrGzMP37h?qKQ#,4xDz43HkRt@V5nLC http://music.yisou.com/ C@xxxxxxx&SP>!SP#,KQ1iC@M<!"Q^M<:M?aM< http://image.yisou.com 1G>MJG1000UW#,QE;"5gSJWTVz@)H]#! http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1 g/ ------------------------------ Message: 7 Date: Fri, 31 Dec 2004 09:21:16 -0600 From: Ed Wilts <ewilts@xxxxxxxxxx> Subject: Re: Compiling vsftpd on Redhat AS2.1 failed To: General Red Hat Linux discussion list <redhat-list@xxxxxxxxxx> Message-ID: <20041231152116.GB9979@xxxxxxxxxxxxxx> Content-Type: text/plain; charset=us-ascii On Fri, Dec 31, 2004 at 03:03:02PM +0800, shen mode wrote: > I'm trying to install vsftpd on Redhat AS2.1. I'm not a fan of vsftpd at all. There is a prebuilt rpm of ProFTPd on Dag's archive ready to install on 2.1: http://dag.wieers.com/packages/proftpd/ -- Ed Wilts, RHCE Mounds View, MN, USA mailto:ewilts@xxxxxxxxxx Member #1, Red Hat Community Ambassador Program ------------------------------ __ redhat-list mailing list Unsubscribe mailto:redhat-list-request@xxxxxxxxxx?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list End of redhat-list Digest, Vol 10, Issue 42 ******************************************* -- redhat-list mailing list unsubscribe mailto:redhat-list-request@xxxxxxxxxx?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list