02-07-2014
No, it's safer to have files first!
Especially "localhost" should not be searched in an external name service.
E.g. "swinstall" and several applications talk to localhost. And should work even if the network cable is unplugged...
This User Gave Thanks to MadeInGermany For This Post:
10 More Discussions You Might Find Interesting
1. IP Networking
Hi,
We use linux as a DNS server for our local network. ( linuxnol.nollekens.be )
We can ping this machine on all our XP clients like this:
C:\>ping linuxnol
Until yesterday it was on our XP clients enough to type "ping ibm250" ( our 2de unix server, an AIX ).
But after a shutdown of this... (1 Reply)
Discussion started by: progressdll
1 Replies
2. UNIX for Advanced & Expert Users
anyone ever seen this problem
with /etc/nsswitch.conf forcing the system to look in files then dns
but the system ignores the files and goes off check the dn servers
is there any further config I've missed ???
/etc/resolve.conf name servers >>>> boring IPS
/etc/nsswitch.conf is set to... (5 Replies)
Discussion started by: kie
5 Replies
3. Solaris
I have an issue with DNS on a solaris t2000
When I set up the zones there was an issue with the /etc/resolv.conf, I had made a typo in my DNS server.
I only noticed this after creating my new zones.
I have corrected this in the global zone and I am now able to ping and nslookup inthe... (2 Replies)
Discussion started by: james dewitt
2 Replies
4. Red Hat
Hi , I have configured OEL 5.3 server on VMware server,installation went fine, however when i am checking host using configured /etc/hosts i am getting following error let me know where it went wrong .
I had disabled firewall options and SELLinux.
root@oen11g ~]# host oen11g.grid.com
;;... (2 Replies)
Discussion started by: autoconfig
2 Replies
5. Red Hat
Hi all
m newbie in linux and trying to setup my internal DNS server for local network.After messing with DNS for hours i am posting this.
i have configured /etc/resolve.conf, hostname with domain name in /etc/sysconfig/network file,/etc/hosts file with local host entry and zone file... (1 Reply)
Discussion started by: Vaibhav.T
1 Replies
6. Red Hat
:wall:I am a beginer in Linux admin. I have build new DNS setting in my system. Please find the below procedure what I followed to build DNS. but at last when I fired nslookup command, its getting error. I am using RHEL5 OS. Please help me to resolve this below issue..
Advance thanks for... (1 Reply)
Discussion started by: pradipta_pks
1 Replies
7. Red Hat
i have redhat service as public dns i have added new entry but when i reload the named service i got this error in log
the working directory is not writable (1 Reply)
Discussion started by: leganti
1 Replies
8. Red Hat
Hello,
Having issue resolving DNS using the IP address.
Using the server Name it resolves fine.
Was wondering if there is any configuration issue.
# nslookup xxxxxxxx01
Server: Primary DNS IP
Address: Primary DNS IP#53
Name: xxxxxxxx01.local domain
Address: x.y.z.123
# nslookup... (1 Reply)
Discussion started by: ikn3
1 Replies
9. IP Networking
I'll try and be brief and detailed.
I have a Macbook Pro Retina running Mavericks. When on my network at the office (work) everything local works just fine. Local servers are resolved through our internal DNS settings. For example, we have a fileserver at "fs01". I can connect to it with... (1 Reply)
Discussion started by: jbhardman
1 Replies
10. Linux
Hi,
I have a Windows based Domain (abc.com)servers like:
172.30.1.246
172.30.1.247
172.30.3.246
172.30.3.247
On all my Linux servers (/etc/resolv.conf) have a following DNS servers entries:
nameserver 172.30.3.246
nameserver 172.30.3.247
But when i ping my Domain (abc.com), it... (5 Replies)
Discussion started by: refra
5 Replies
LEARN ABOUT DEBIAN
jifty::manual::tutorialrest
Jifty::Manual::TutorialRest(3pm) User Contributed Perl Documentation Jifty::Manual::TutorialRest(3pm)
NAME
Jifty::Manual::TutorialRest - Web Services
DESCRIPTION
This builds on Jifty::Manual::Tutorial, so make sure you have a running jifty that roughly resembles the step-by-step from there.
SETUP
You must add this to your site_config.yml
framework:
Plugins:
- REST: {}
See Jifty::Plugin::REST.
The commands assume that you have LWP installed with the GET alias. If not, you'll need to use the longhand lwp-request -m GET, or curl,
or your browser.
help
Make sure it is working:
$ GET http://localhost:8888/=/help
Accessing resources:
...
You should see some text describing the services, not html (that's longhand for 404.) Check the config and restart the server.
GET
Just list the models.
$ GET http://localhost:8888/=/model.yml
---
- MyWeblog.Model.Post
List the Post schema.
$ GET http://localhost:8888/=/model/Post.yml
---
body:
label: Content
name: body
readable: 1
sort_order: 1
type: text
writable: 1
id:
mandatory: 1
name: id
readable: 1
type: serial
writable: 0
title:
default: Untitled post
label: Title
name: title
readable: 1
sort_order: 0
type: text
writable: 1
You did make some posts, right?
$ GET http://localhost:8888/=/model/Post/id.yml
---
- 1
- 2
Dump the data:
$ GET http://localhost:8888/=/model/Post/id/1.yml
---
body: 'This is my post, the content of which is this, which is mine.'
id: 1
title: my first post
$ GET http://localhost:8888/=/model/Post/id/2.yml
---
body: "Content of another post. Got to go, the cat's on fire."
id: 2
title: post deux
POST
TODO not working
Actually, it looks like it is not supposed to work this way. Why not?
$ echo '---
body: "A post via web services"
id: 3
title: "posting from the command-line"
' | lwp-request -m POST http://localhost:8888/=/model/Post.yml
POST http://localhost:8888/=/model/Post/id/3.yml --> 404 Not Found
PUT
TODO not working
$ echo '---
title: "posting from the cli"
' | lwp-request -m PUT http://localhost:8888/=/model/Post/3.yml
500 Can't read entity body: Connection reset by peer
DELETE
$ lwp-request -m DELETE http://localhost:8888/=/model/Post/id/3.yml
---
content: {}
error: ~
field_errors: {}
field_warnings: {}
message: Deleted
success: 1
perl v5.14.2 2010-09-25 Jifty::Manual::TutorialRest(3pm)