[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Re: [cobalt-developers] Re: Master and slave
- Subject: Re: Re: [cobalt-developers] Re: Master and slave
- From: "Colm Brazel" <cbweb@xxxxxx>
- Date: Wed Jan 31 01:29:01 2001
- List-id: Discussion Forum for developers on Cobalt Networks products <cobalt-developers.list.cobalt.com>
Hi Gerald,
Thank you for the information below, will do.
Colm
Message: 8
Reply-To: "Gerald Waugh" <gerald@xxxxxxxxx>
From: "Gerald Waugh" <gerald@xxxxxxxxx>
To: <cobalt-developers@xxxxxxxxxxxxxxx>
Subject: Re: [cobalt-developers] Re: Master and slave
Date: Mon, 29 Jan 2001 21:16:59 -0500
"Colm Brazel" <cbweb@xxxxxx>
> I meant a block of IP adresses. Sorry about not deleting the information
not
> dealing with my Q. I got a cobalt but was given only a primary IP address
so
> got a secondary one from www.granitecanyon.com I guess I give these two
> ip's, master and slave, to each of the sites hosted on the server.
OK, make the IP of your RaQ the Master. granitecanyon IP the slave.
In the Master DNS GUI enter all the required records for each domain on the
RaQ.
In the SOA for each domain enter the Slave (secondary) nameserver at
www.granitecanyon.com. follow their instructions for building the Slave.
I believe they just have you enter the domain name and the Masters IP
address.
Again you need to follow this step for each domain.
Gerald
Regards
Colm (Brazel)MA
CB Publications
Internet: www.cbweb.net
E-mail: cbweb@xxxxxx
cbweb@xxxxxxxxx
-----Original Message-----
From: cobalt-developers-request@xxxxxxxxxxxxxxx
<cobalt-developers-request@xxxxxxxxxxxxxxx>
To: cobalt-developers@xxxxxxxxxxxxxxx <cobalt-developers@xxxxxxxxxxxxxxx>
Date: Wednesday, January 31, 2001 1:15 AM
Subject: cobalt-developers digest, Vol 1 #466 - 13 msgs
>Send cobalt-developers mailing list submissions to
> cobalt-developers@xxxxxxxxxxxxxxx
>
>To subscribe or unsubscribe via the World Wide Web, visit
> http://list.cobalt.com/mailman/listinfo/cobalt-developers
>or, via email, send a message with subject or body 'help' to
> cobalt-developers-request@xxxxxxxxxxxxxxx
>
>You can reach the person managing the list at
> cobalt-developers-admin@xxxxxxxxxxxxxxx
>
>When replying, please edit your Subject line so it is more specific
>than "Re: Contents of cobalt-developers digest..."
>
>
>Today's Topics:
>
> 1. PKG install trauma! (malcolm wild)
> 2. .htaccess Raq4 (Brian Coughter)
> 3. Re: Shutting down SMTP (H.P. Stroebel)
> 4. Re: Master and slave (Colm Brazel)
> 5. CREDIT Card Processing (Kal Amry)
> 6. RE: Apache JServ on RaQ3 (Jerry Brantley)
> 7. Postgres Table Structure (Andrew Woods)
> 8. Re: Re: Master and slave (Gerald Waugh)
> 9. RE: Postgres Table Structure (Kal Amry)
> 10. RE: PKG install trauma! (Eric Arseneau)
> 11. Problems with Net::Ping (Jonas Pasche)
> 12. PHP does not work with Interbase, right ? (Gustavo Carreno)
> 13. Re: Order of records in /etc/named/records (Daniel Foster)
>
>--__--__--
>
>Message: 1
>From: "malcolm wild" <cobaltsec@xxxxxxxxxxx>
>To: <cobalt-developers@xxxxxxxxxxxxxxx>
>Date: Mon, 29 Jan 2001 20:47:37 -0000
>Subject: [cobalt-developers] PKG install trauma!
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>trying to install the BIND fix
>RaQ2-All-Security-3.0.1-8577.pkg
>
>shh'd as root and ftp'd from a RaQ2 box to ftp.cobalt.com & downloaded the
>PKG to /tmp then ran
>[root /tmp]# /usr/local/sbin/cobalt_upgrade
>/tmp/RaQ2-All-Security-3.0.1-8577.pkg
>
>and i get an odd message:
>4015 RaQ2 Update 3.0 needs to be installed before this package.
>4015 Error in installation script upgrade_me
>
>But OS3 is installed???????
>./var/lib/cobalt/uninstallers/RaQ2-Update-OS-1.0.uninst
>./var/lib/cobalt/uninstallers/RaQ2-update-OS-2.0.uninst
>./var/lib/cobalt/uninstallers/RaQ2-en-Update-OS-3.0.uninst
>./var/lib/cobalt/uninstallers/openssh-server-2.1.1p2.uninst
>
>However the WebAdmin shows:
>Software On The Cobalt Server
>
>Cobalt OS Release 4.0 (????????????)
>OpenSSH Server Release 2.1.1p2
>
>Am i missing something, its been a long monday :)
>
>
>
>
>--__--__--
>
>Message: 2
>Date: Mon, 29 Jan 2001 17:24:32 -0500
>From: Brian Coughter <brianc@xxxxxxxxxxxxxx>
>To: "cobalt-developers@xxxxxxxxxxxxxxx" <cobalt-developers@xxxxxxxxxxxxxxx>
>Subject: [cobalt-developers] .htaccess Raq4
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>Telnet into server as admin, then su to root.
>
>Step 1 (Create User authentication file)
>
>The following command would create this file with the user "dudley" as the
>first user entry in the file:
>
>htpasswd -c /home/sites/site4/web/secure/users dudley
>
>The -c in the command tells htpasswd to create the new file named "users"
>inside the directory "secure". When you run the command you will be
prompted
>to enter a password and re-enter a the password for dudley. The same
command
>is used without the -c to add additional users to the same file.
>
>Step 2 (Create .htaccess file)
>
>To create this file, cd to the directory you want to password protect.
Then
>type this command:
>
>pico
>
>Pico is a text editor that will run inside a telnet session. Copy the text
>below and paste it into your pico session. Remember to change the
directory
>path of AuthUserFile to what you want it to be.
>
># Access file
>order allow,deny
>allow from all
>require valid-user
>Authname secure
>AuthPAM_Enabled off
>Authtype Basic
>AuthUserFile /home/sites/site4/web/secure/users
>
>After you paste this text into Pico, follow the menu option at the bottom
of
>your Pico session to save and exit.
>
>Example:
>type Control-X to exit Pico
>Do you want to save? Type Y for yes
>File name: Type .htaccess
>Enter
>
>You should now have a shell prompt.
>Exit telnet and your done.
>
>----
>Brian J. Coughter
>Internet Services
>
>Blue Water Graphics, Inc.
>7977 SW Jack James Drive
>Stuart, Florida 34997
>
>561-286-2249 (Tel)
>561-286-3055 (Fax)
>
>brianc@xxxxxxxxxxxxxx
>
>
>--__--__--
>
>Message: 3
>Date: Mon, 29 Jan 2001 23:42:44 +0100
>From: "H.P. Stroebel" <hpstr@xxxxxxxxxxxxx>
>To: cobalt-developers@xxxxxxxxxxxxxxx
>Subject: Re: [cobalt-developers] Shutting down SMTP
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>Eric Marcussen schrieb:
>
>> My question has two parts:
>> 1) If we shut down the SMTP,, even though no one uses it, would
it have
>> an effect on our sites??
>
>yes.
>
>notifications sent by cron jobs or cobalt functions for example will not
>be delivered any more.
>
>users will not be able to receive mail on your box, as SMTP is used for
>receiving mail from other hosts as well.
>
>> 2) How do we shut it down??
>
>/etc/rc.d/init.d/sendmail stop (temporarily)
>
>for shutting it down completely, even after a reboot, you must delete
>the symbolic links pointing to /etc/rc.d/init.d/sendmail in the several
>runlevel directories unter /etc/rc.d. no good idea, though.
>
>you might consider using spamshield, a little perl script (search
>www.google.com) that can prevent even spam from local users.
>
>
>
>--
>
>H. P. Stroebel, Germany
>
>CGI-FAQ for Raq-Newbies :
>http://users.iol.it/hpstr/
>
>Apollo 13 - Commander : "Houston, we have a problem"
>Win2000 - Administrator : "Redmond, we have 64000 problems"
>
>
>--__--__--
>
>Message: 4
>From: "Colm Brazel" <cbweb@xxxxxx>
>To: <cobalt-developers@xxxxxxxxxxxxxxx>
>Date: Mon, 29 Jan 2001 23:31:24 -0000
>Subject: [cobalt-developers] Re: Master and slave
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>>If the nameservers you are using serve the zone information for all your
>>virtual sites then each site will have the same Master namesever IP and
the
>>same Slave nameserver IP.
>>> or do I need to purchase a block of these from elsewhere?
>>Purchase a block of what?
>>Gerald
>I meant a block of IP adresses. Sorry about not deleting the information
not
>dealing with my Q. I got a cobalt but was given only a primary IP address
so
>got a secondary one from www.granitecanyon.com I guess I give these two
>ip's, master and slave, to each of the sites hosted on the server.
>
>Thanks and Regards
>
>Colm
>
>Colm (Brazel)MA
>CB Publications
>Internet: www.cbweb.net
>E-mail: cbweb@xxxxxx
>cbweb@xxxxxxxxx
>
>>
>>Message: 4
>>From: "Gerald Waugh" <gerald@xxxxxxxxx>
>>To: <cobalt-developers@xxxxxxxxxxxxxxx>
>>Subject: Re: [cobalt-developers] Re: Newbie adding virtual siteson Cobalt
>RAQ3.
>>Date: Wed, 24 Jan 2001 10:24:18 -0600
>>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>>
>>"Colm Brazel" <cbweb@xxxxxx> wrote
>>> Hi,
>>> Do I give each new virtual site I add to the raq3 the same primary and
>>> secondary dns ip addresses as the site root,
>>Why did you post a message a few hundred lines long to ask the above
>>question?
>>Your question is not very clear.
>>Master (primary is deprecitated) and Slave (secondary is depreciated)
>>nameservers should each have their OWN IP address. This is necessary as
for
>>one thing the Master and Slave nameservers are not supposed to
>>be on the same network.
>>However you may use the IP of the nameservers to host virtual sites.(IP of
>a
>>nameserver may be the same IP of the virtual site)
>>If the nameservers you are using serve the zone information for all your
>>virtual sites then each site will have the same Master namesever IP and
the
>>same Slave nameserver IP.
>>> or do I need to purchase a block of these from elsewhere?
>>Purchase a block of what?
>>Gerald
>>
>>
>>
>>
>>-- __--__--
>>
>>_______________________________________________
>>cobalt-developers mailing list
>>cobalt-developers@xxxxxxxxxxxxxxx
>>http://list.cobalt.com/mailman/listinfo/cobalt-developers
>>
>>
>>End of cobalt-developers Digest
>>
>>
>
>
>--__--__--
>
>Message: 5
>From: "Kal Amry" <kamry1888@xxxxxxxxx>
>To: <cobalt-developers@xxxxxxxxxxxxxxx>
>Date: Mon, 29 Jan 2001 19:26:04 -0500
>Subject: [cobalt-developers] CREDIT Card Processing
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>Greeting:
>
> Has anyone experienced hooking a Card Service international credit
>processing on the Raq. Are they good, bad? Any thoughts are appreciated.
>
>Thanks,
>
>-----Original Message-----
>From: cobalt-developers-admin@xxxxxxxxxxxxxxx
>[mailto:cobalt-developers-admin@xxxxxxxxxxxxxxx]On Behalf Of Colm Brazel
>Sent: Monday, January 29, 2001 6:31 PM
>To: cobalt-developers@xxxxxxxxxxxxxxx
>Subject: [cobalt-developers] Re: Master and slave
>
>
>>If the nameservers you are using serve the zone information for all your
>>virtual sites then each site will have the same Master namesever IP and
the
>>same Slave nameserver IP.
>>> or do I need to purchase a block of these from elsewhere?
>>Purchase a block of what?
>>Gerald
>I meant a block of IP adresses. Sorry about not deleting the information
not
>dealing with my Q. I got a cobalt but was given only a primary IP address
so
>got a secondary one from www.granitecanyon.com I guess I give these two
>ip's, master and slave, to each of the sites hosted on the server.
>
>Thanks and Regards
>
>Colm
>
>Colm (Brazel)MA
>CB Publications
>Internet: www.cbweb.net
>E-mail: cbweb@xxxxxx
>cbweb@xxxxxxxxx
>
>>
>>Message: 4
>>From: "Gerald Waugh" <gerald@xxxxxxxxx>
>>To: <cobalt-developers@xxxxxxxxxxxxxxx>
>>Subject: Re: [cobalt-developers] Re: Newbie adding virtual siteson Cobalt
>RAQ3.
>>Date: Wed, 24 Jan 2001 10:24:18 -0600
>>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>>
>>"Colm Brazel" <cbweb@xxxxxx> wrote
>>> Hi,
>>> Do I give each new virtual site I add to the raq3 the same primary and
>>> secondary dns ip addresses as the site root,
>>Why did you post a message a few hundred lines long to ask the above
>>question?
>>Your question is not very clear.
>>Master (primary is deprecitated) and Slave (secondary is depreciated)
>>nameservers should each have their OWN IP address. This is necessary as
for
>>one thing the Master and Slave nameservers are not supposed to
>>be on the same network.
>>However you may use the IP of the nameservers to host virtual sites.(IP of
>a
>>nameserver may be the same IP of the virtual site)
>>If the nameservers you are using serve the zone information for all your
>>virtual sites then each site will have the same Master namesever IP and
the
>>same Slave nameserver IP.
>>> or do I need to purchase a block of these from elsewhere?
>>Purchase a block of what?
>>Gerald
>>
>>
>>
>>
>>-- __--__--
>>
>>_______________________________________________
>>cobalt-developers mailing list
>>cobalt-developers@xxxxxxxxxxxxxxx
>>http://list.cobalt.com/mailman/listinfo/cobalt-developers
>>
>>
>>End of cobalt-developers Digest
>>
>>
>
>_______________________________________________
>cobalt-developers mailing list
>cobalt-developers@xxxxxxxxxxxxxxx
>http://list.cobalt.com/mailman/listinfo/cobalt-developers
>
>
>_________________________________________________________
>Do You Yahoo!?
>Get your free @yahoo.com address at http://mail.yahoo.com
>
>
>--__--__--
>
>Message: 6
>From: "Jerry Brantley" <jbrantley@xxxxxxxxxxxx>
>To: <cobalt-developers@xxxxxxxxxxxxxxx>
>Date: Mon, 29 Jan 2001 19:24:13 -0500
>Subject: [cobalt-developers] RE: Apache JServ on RaQ3
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>I installed the following:
>ApacheJServ (Apache-Java Servlet Engine) for Cobalt i386Release 1.1-1
>Open Source JSDK for Cobalt i386 Release 1.1-1
>
>Now the two class files (Hello & IsItWorking) execute ok, but nothing else
>will, even when copied to the same directory as the sample class files.
>Can anyone shed some light on this? Why won't it work correctly?
>
>
>
>
>--__--__--
>
>Message: 7
>Date: Mon, 29 Jan 2001 17:50:01 -0800
>From: "Andrew Woods" <andreww@xxxxxxxxxx>
>Organization: Animated Designs
>To: cobalt-developers@xxxxxxxxxxxxxxx
>Subject: [cobalt-developers] Postgres Table Structure
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>
>Hello All,
>
>I tried to update my version of Postgres to 7.x from the standard 6.5.x
>that comes standard
>with a Raq 3. During the process, my databases were deleted . The only
>database running on it
>was the 'cobalt' database, which as you know, contains all the
>information for the Web Admin
>Interface.I didn't think of making any backups because at the time, I
>had not realized that Postgres was being used.
>
> So ... I've been with out a interface for a while.
> I am asking if anyone has a file containing the structure of the
>'cobalt' database.
> I tried using the structure from my raq 4, but its structure
> is slightly different than the Raq3 Structure.
>
> If not, I know it can be obtained via "pg_dump -s ".
> I think that if I used this file to recreate the structure,
> I could massage the file system configuration files to refill in the
>data.
>
>
>Anyway, I thank you for your assistance.
>
>
>
>--
>===================================
>
>Andrew Woods
>Programmer
>mailto:andreww@xxxxxxxxxx
>
>Animated Designs LLC
>31336 Via Colinas Suite 103
>Westlake Village, CA 91362
>Phone: (818) 889-2348
>
>"From Concept to Design"
>
>http://www.anides.com
>
>
>--__--__--
>
>Message: 8
>Reply-To: "Gerald Waugh" <gerald@xxxxxxxxx>
>From: "Gerald Waugh" <gerald@xxxxxxxxx>
>To: <cobalt-developers@xxxxxxxxxxxxxxx>
>Subject: Re: [cobalt-developers] Re: Master and slave
>Date: Mon, 29 Jan 2001 21:16:59 -0500
>
>"Colm Brazel" <cbweb@xxxxxx>
>> I meant a block of IP adresses. Sorry about not deleting the information
not
>> dealing with my Q. I got a cobalt but was given only a primary IP address
so
>> got a secondary one from www.granitecanyon.com I guess I give these two
>> ip's, master and slave, to each of the sites hosted on the server.
>
>OK, make the IP of your RaQ the Master. granitecanyon IP the slave.
>In the Master DNS GUI enter all the required records for each domain on the
RaQ.
>In the SOA for each domain enter the Slave (secondary) nameserver at
>www.granitecanyon.com. follow their instructions for building the Slave.
>I believe they just have you enter the domain name and the Masters IP
address.
>Again you need to follow this step for each domain.
>Gerald
>
>
>--__--__--
>
>Message: 9
>From: "Kal Amry" <kamry1888@xxxxxxxxx>
>To: <cobalt-developers@xxxxxxxxxxxxxxx>
>Subject: RE: [cobalt-developers] Postgres Table Structure
>Date: Mon, 29 Jan 2001 22:21:09 -0500
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>e-mail me your fax number and I'll send you the structure to spend the
night
>with :) I hope you manage it...
>
>Kal
>
>-----Original Message-----
>From: cobalt-developers-admin@xxxxxxxxxxxxxxx
>[mailto:cobalt-developers-admin@xxxxxxxxxxxxxxx]On Behalf Of Andrew
>Woods
>Sent: Monday, January 29, 2001 8:50 PM
>To: cobalt-developers@xxxxxxxxxxxxxxx
>Subject: [cobalt-developers] Postgres Table Structure
>
>
>
>Hello All,
>
>I tried to update my version of Postgres to 7.x from the standard 6.5.x
>that comes standard
>with a Raq 3. During the process, my databases were deleted . The only
>database running on it
>was the 'cobalt' database, which as you know, contains all the
>information for the Web Admin
>Interface.I didn't think of making any backups because at the time, I
>had not realized that Postgres was being used.
>
> So ... I've been with out a interface for a while.
> I am asking if anyone has a file containing the structure of the
>'cobalt' database.
> I tried using the structure from my raq 4, but its structure
> is slightly different than the Raq3 Structure.
>
> If not, I know it can be obtained via "pg_dump -s ".
> I think that if I used this file to recreate the structure,
> I could massage the file system configuration files to refill in the
>data.
>
>
>Anyway, I thank you for your assistance.
>
>
>
>--
>===================================
>
>Andrew Woods
>Programmer
>mailto:andreww@xxxxxxxxxx
>
>Animated Designs LLC
>31336 Via Colinas Suite 103
>Westlake Village, CA 91362
>Phone: (818) 889-2348
>
>"From Concept to Design"
>
>http://www.anides.com
>
>_______________________________________________
>cobalt-developers mailing list
>cobalt-developers@xxxxxxxxxxxxxxx
>http://list.cobalt.com/mailman/listinfo/cobalt-developers
>
>
>_________________________________________________________
>Do You Yahoo!?
>Get your free @yahoo.com address at http://mail.yahoo.com
>
>
>--__--__--
>
>Message: 10
>From: "Eric Arseneau" <eric@xxxxxxxxxxxxxx>
>To: <cobalt-developers@xxxxxxxxxxxxxxx>
>Subject: RE: [cobalt-developers] PKG install trauma!
>Date: Mon, 29 Jan 2001 19:33:09 -0800
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>On my RaQ 3 I ran into the same problem. I moved the file into the
packages
>directory and then used the Web front end to tell it to install a package
>already on the machine. The directory used on the RaQ 3 is
> /home/packages
>If there are packages there, then the front end will see them and list
them.
>You can then select it and install it.
>
>I'm not sure this will help for the RaQ2, but since you are downloading the
>same patches as me I would assume it should work.
>
>> -----Original Message-----
>> From: cobalt-developers-admin@xxxxxxxxxxxxxxx
>> [mailto:cobalt-developers-admin@xxxxxxxxxxxxxxx]On Behalf Of malcolm
>> wild
>> Sent: Monday, January 29, 2001 12:48 PM
>> To: cobalt-developers@xxxxxxxxxxxxxxx
>> Subject: [cobalt-developers] PKG install trauma!
>>
>>
>> trying to install the BIND fix
>> RaQ2-All-Security-3.0.1-8577.pkg
>>
>> shh'd as root and ftp'd from a RaQ2 box to ftp.cobalt.com & downloaded
the
>> PKG to /tmp then ran
>> [root /tmp]# /usr/local/sbin/cobalt_upgrade
>> /tmp/RaQ2-All-Security-3.0.1-8577.pkg
>>
>> and i get an odd message:
>> 4015 RaQ2 Update 3.0 needs to be installed before this package.
>> 4015 Error in installation script upgrade_me
>>
>> But OS3 is installed???????
>> ./var/lib/cobalt/uninstallers/RaQ2-Update-OS-1.0.uninst
>> ./var/lib/cobalt/uninstallers/RaQ2-update-OS-2.0.uninst
>> ./var/lib/cobalt/uninstallers/RaQ2-en-Update-OS-3.0.uninst
>> ./var/lib/cobalt/uninstallers/openssh-server-2.1.1p2.uninst
>>
>> However the WebAdmin shows:
>> Software On The Cobalt Server
>>
>> Cobalt OS Release 4.0 (????????????)
>> OpenSSH Server Release 2.1.1p2
>>
>> Am i missing something, its been a long monday :)
>>
>>
>>
>> _______________________________________________
>> cobalt-developers mailing list
>> cobalt-developers@xxxxxxxxxxxxxxx
>> http://list.cobalt.com/mailman/listinfo/cobalt-developers
>>
>
>
>--__--__--
>
>Message: 11
>Date: Tue, 30 Jan 2001 09:56:27 +0100
>To: cobalt-developers@xxxxxxxxxxxxxxx
>From: Jonas Pasche <jonas@xxxxxxxx>
>Subject: [cobalt-developers] Problems with Net::Ping
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>Hi there,
>
>I just installed Net::Ping on a RaQ2 directly from CPAN and wrote a small
>script:
>
>#!/usr/bin/perl
>use Net::Ping;
>$proto = "udp";
>$timeout = 2;
>$host = "www.insert-host-here.com";
>$p = Net::Ping->new($proto);
>print "$host is reachable\n" if $p->ping($host, $timeout);
>$p->close();
>
>But when I execute it, it always aborts with the following error:
>
>"Bad arg length for Socket::unpack_sockaddr_in, length is 0, should be 16
at
>/usr/lib/perl5/5.00503/i386-linux/Socket.pm line 295."
>
>On all other non-RaQ systems this seems to work fine. Any ideas? Is
>Socket.pm broken?
>
>Thanks,
>Jonas
>
>____________________________________________
>Jonas Pasche
>Leitung Technischer Support
>
>webagentur Domke GmbH
>
>Rheinstr. 3 - 64283 Darmstadt - Germany
>
>Telefon +49 6151 17742-33
>Telefax +49 6151 293173
>
>http://www.domke.de
>
>mailto:jonas@xxxxxxxx
>____________________________________________
>
>
>--__--__--
>
>Message: 12
>Date: Tue, 30 Jan 2001 12:44:53 +0000
>From: Gustavo Carreno <gcarreno@xxxxxxxxxxxxxxxxxxx>
>Organization: Internetworks
>To: Cobalt Developers <cobalt-developers@xxxxxxxxxxxxxxx>
>Subject: [cobalt-developers] PHP does not work with Interbase, right ?
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>Hi there,
>
> I'm the technical director of a portuguese cobalt reseller.
> I've looked up and down and found nothing about configuring or using
>interbase and PHP on the raq4.
> I have a freshly open raq4i and it seams that it does not recognise the
>PHP interbase function, like ibase_connect().
>
> Do I need an upgrade of some sort, or do I need to tweak something ?
> I'm about to sell one of these to a client that is going to use it with
>the database. I'm not quite happy with this issue because it should of
>worked.
>
> Thanks in advance!
>
>--
> Atenciosamente,
> Gustavo Carreno
>
> Email: gcarreno@xxxxxxxxxxxxxxxxxxx
> Work: +351-21-4460986
> Fax: +351-21-4460987
> Mobile: +351-91-8688323
> Homepage: http://www.gcarreno.org
>
>
>--__--__--
>
>Message: 13
>Date: Tue, 30 Jan 2001 16:42:37 +0000
>From: Daniel Foster <daniel@xxxxxxxx>
>To: cobalt-developers@xxxxxxxxxxxxxxx
>Subject: Re: [cobalt-developers] Order of records in /etc/named/records
>Reply-To: cobalt-developers@xxxxxxxxxxxxxxx
>
>> > From looking at the way /usr/admserv/cgi-bin/.cobalt/dns/index.cgi
>> > does things, I think the order of records in /etc/named/records isn't
>> > relevant. I don't have a non-production RaQ3 to test things on, so a
>> > bit of feedback here would be nice <smile>.
>>
>> You are correct, the order does not seem to matter. The dns cgi can parse
>> records properly no matter where they are located.
>
>For anyone trawling through the archives, I can now confirm this - the
>order of records in records (at least on a RaQ3) doesn't matter.
>
>> > The reason being, if order doesn't matter, I could simply add any DNS
>> > records I wanted to the end of the file, which would be much simpler
>> > than having to put them at some point in the middle of the file.
>>
>> Yes, you could do that very easily. Just append the new records to
>> /etc/named/records , then restart named just by reloading
>> /usr/admserv/cgi-bin/.cobalt/dns/index.cgi . In Perl you would just do:
>>
>> system "/usr/admserv/cgi-bin/.cobalt/dns/index.cgi";
>
>Yep, John's got this one right again - thanks John!
>
>--
>
>Daniel Foster - daniel@xxxxxxxx
>
>
>
>--__--__--
>
>_______________________________________________
>cobalt-developers mailing list
>cobalt-developers@xxxxxxxxxxxxxxx
>http://list.cobalt.com/mailman/listinfo/cobalt-developers
>
>
>End of cobalt-developers Digest
>
>