LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 06-27-2001, 07:29 PM   #1
dilberim82
Member
 
Registered: Apr 2001
Location: NY
Distribution: used to be Redhat, now Debian Sarge
Posts: 291

Rep: Reputation: 30
Red face DNS, BIND and apache


Ok let me start off by saying i am the newest newbie and you guys probably know it and then i'll get to the point. I registered a name from network solutions (dilberim.com), I have redhat 7.1 webserver, i have a static IP from my ISP and finally i bought Oreillys DNS and BIND. I just can not seem to figure out how to do this bind thing. The example that is in the book is very different than what i am looking for or is it me? I just want my homepage to show up when i type dilberim.com . Can anybody help me? is there a website or any documentation that would help me? I've been working on it for days, i am ready to take a knap with the penguin.
 
Old 06-27-2001, 10:22 PM   #2
LionKing
Member
 
Registered: Jun 2001
Location: Allen, Texas, USA
Distribution: Redhat
Posts: 82

Rep: Reputation: 15
What is your purpose for running bind or having your own DNS server? It seems your ISP is already providing you dns service park1.jomax.net and park2.jomax.net. If you'll have web server like apache, people will find your linux box by send query to your isp (park1 or park2.jomax.net). You don't need both with DNS server unless you have a large network and you wish to run and maintenaine your own DNS or caching server.
If I were you, forget about bind and DNS server, put more time with your apache.

Good luck.
 
Old 06-28-2001, 12:35 PM   #3
dilberim82
Member
 
Registered: Apr 2001
Location: NY
Distribution: used to be Redhat, now Debian Sarge
Posts: 291

Original Poster
Rep: Reputation: 30
thanks

Thanks for replying.
I am not very familiar with Apache either. I am just a newbie. If you know any website that would help me i would appreciate it. Thanks
 
Old 06-28-2001, 12:42 PM   #4
LionKing
Member
 
Registered: Jun 2001
Location: Allen, Texas, USA
Distribution: Redhat
Posts: 82

Rep: Reputation: 15
Got to www.apache.org, there you'll find answers to all the common questions. regards.
 
Old 06-28-2001, 01:33 PM   #5
jharris
Senior Member
 
Registered: May 2001
Location: Bristol, UK
Distribution: Slackware, Fedora, RHES
Posts: 2,243

Rep: Reputation: 47
Have you looked at http://www.linuxdocs.org

There is a BIND HOW-TO, although when I was setting my DNS up (seems like ages ago now!) I ended up following that O'Reilly book that you've got as I couldn't follow the HOWTO. Yet a friend said he couldn't follow the book and thought the HOWTO was great... so have a look, you might think the same way by friend did.

HTH

Jamie...
 
Old 07-02-2001, 11:51 AM   #6
dilberim82
Member
 
Registered: Apr 2001
Location: NY
Distribution: used to be Redhat, now Debian Sarge
Posts: 291

Original Poster
Rep: Reputation: 30
thx

Ok thanks jamie and lionking. Jamie the website you recomended helped more than Oreilys book. Thanks.
Lionking are you saying that i can just tell my apache to get the query from my isp's ip or something? I did not really understand what you were explaining, can you expand it a little?
 
Old 07-02-2001, 12:41 PM   #7
LionKing
Member
 
Registered: Jun 2001
Location: Allen, Texas, USA
Distribution: Redhat
Posts: 82

Rep: Reputation: 15
What I was trying to say is: Your ISP is providing DNS service for your domain, and I don't think you need to run your own DNS server. ISP's bandwidth are usually better because they are a step closer to the internet high capacity backbone. Unless you have a large internet network, why bother to install and run your own DNS?
 
Old 07-02-2001, 02:27 PM   #8
dilberim82
Member
 
Registered: Apr 2001
Location: NY
Distribution: used to be Redhat, now Debian Sarge
Posts: 291

Original Poster
Rep: Reputation: 30
hey

ok i think i know what you mean. Now i have a question about apache. Changing the ServerName from localhost to http://www.dilberim.com would get me where i want to be? I have been reading the apache's site for like 2 hours and that's all i got out of it. http://httpd.apache.org/docs/vhosts/name-based.html < ~~and i found that site would that help me? Thanks again
 
Old 07-02-2001, 02:34 PM   #9
jharris
Senior Member
 
Registered: May 2001
Location: Bristol, UK
Distribution: Slackware, Fedora, RHES
Posts: 2,243

Rep: Reputation: 47
Yeah, setting your servername to www.dilberim.com would be a winner. The basic Apache setup is pretty easy, if you need to do interactive stuff then you will want to look into enabling CGI and possibly adding PHP to your setup.

good luck

Jamie...
 
Old 07-02-2001, 03:00 PM   #10
LionKing
Member
 
Registered: Jun 2001
Location: Allen, Texas, USA
Distribution: Redhat
Posts: 82

Rep: Reputation: 15
No, changing server name on your linux box or apache doesn't mean people will find your server based on that name. You can call it localhost in the apache configuration file, not a problem, as long as you tell the rest of the world that www.dilberim.com is 63.241.136.56 or whatever. This is done thru your DNS authoritative for your domain - whoever maintains the record.

You'll need to ask domain name authoriative which is bellow to add an entry into their DNS server to point www.dilberim.com host to the internet ip address you desire. So the rest of the world can contact to the right server.

Administrative Contact:
Hostmaster, Go Daddy dns@jomax.net
Go Daddy Software
5320 E Dynamite Blvd.
Cave Creek, AZ 85331
USA
480-824-1300
Technical Contact:
Hostmaster, Go Daddy dns@jomax.net
Go Daddy Software
5320 E Dynamite Rd
Cave Creek, AZ 85331
USA
(480) 824-1300
 
Old 07-02-2001, 03:21 PM   #11
dilberim82
Member
 
Registered: Apr 2001
Location: NY
Distribution: used to be Redhat, now Debian Sarge
Posts: 291

Original Poster
Rep: Reputation: 30
I already have CGI, and perl setup already and i created a forum already. I never tried PHP though. Is not it almost the same thing as perl? I am gonna check it out tonight and play with it to see if i can do. YOu can check out my website www.mytrueconfession.com
 
Old 07-05-2001, 03:02 PM   #12
dilberim82
Member
 
Registered: Apr 2001
Location: NY
Distribution: used to be Redhat, now Debian Sarge
Posts: 291

Original Poster
Rep: Reputation: 30
Unhappy Hey

Ok i solved the problem. Actually, i have not really solved it. I paid some more money to gaddady to redirect my site to my ip address. However, i dont want to pay $50 every year though. And i am very eager to learn name servers. So can somebody help me a little. And also, i have 3 domain names and only one computer with dsl. And they all have the e-mail servers too. So can anybody help me? Thanks for any replies.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
dns/bind stanev Debian 1 12-14-2004 08:05 AM
DNS BIND and Apache web server divineutm Linux - Newbie 1 03-25-2004 02:29 AM
DNS & Bind, sendmail, Mailman, and Apache, is it all possible w/o a static IP? elmcitizen Linux - Newbie 1 02-29-2004 11:16 PM
DNS and BIND buttnutt Linux - Networking 5 06-08-2002 06:02 PM
DNS, Bind and Apache nabil Linux - General 3 06-28-2001 05:23 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 04:32 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration