- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: DHCPD SERVICE CAN'T START
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2005 10:48 PM
09-28-2005 10:48 PM
DHCPD SERVICE CAN'T START
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2005 10:53 PM
09-28-2005 10:53 PM
Re: DHCPD SERVICE CAN'T START
did you check /var/log/messages?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2005 01:06 AM
09-29-2005 01:06 AM
Re: DHCPD SERVICE CAN'T START
ignore client-updates;
subnet 192.168.50.0 netmask 255.255.255.0 {
# --- default gateway
option routers 192.168.50.1;
option subnet-mask 255.255.255.0;
# option nis-domain "";
option domain-name "liberian.org";
option domain-name-servers 192.168.50.1;
option time-offset -18000; # Eastern Standard Time
# option ntp-servers 192.168.1.1;
# option netbios-name-servers 192.168.1.1;
# --- Selects point-to-point node (default is hybrid). Don't change this unless
# -- you understand Netbios very well
# option netbios-node-type 2;
range dynamic-bootp 192.168.50.5 192.168.50.255;
default-lease-time 21600;
max-lease-time 43200;
"dhcp.conf" 31L, 851C 1,1 Top
There is no error log in the /var/log/messages about the dhcp.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2005 01:10 AM
09-29-2005 01:10 AM
Re: DHCPD SERVICE CAN'T START
subnet 192.168.50.0 netmask 255.255.255.0 {
definition. I mean - there is no appropriate "}".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2005 01:13 AM
09-29-2005 01:13 AM
Re: DHCPD SERVICE CAN'T START
there ist no closing bracket "}" in your Subnet definition.
Is stated in your /var/log/messsages that the dchp daemon ist started? Or are there no messages at all regarding dhcp?
Regards
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2005 01:22 AM
09-29-2005 01:22 AM
Re: DHCPD SERVICE CAN'T START
check it by 'dhcpd -t' option
Also I hope you are running this as root user. Try running 'service dhcpd start' and post the entire output here. Let us take a look at it.
Regards,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2005 07:34 AM
09-29-2005 07:34 AM
Re: DHCPD SERVICE CAN'T START
i did close brace and restarted the dhcp daemon again and there was no error and only the prompt sign appear again like when you hit the enter key twice in the terminal screen. i was expecting to see "ok" the service has started or any error message.but nothing at all.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2005 06:23 PM
09-29-2005 06:23 PM
Re: DHCPD SERVICE CAN'T START
what is the output of 'dhcpd -t' did it give any error on the screen?
Another reason could be that already another instance of dhcpd running which prevents this dhcpd to start. Try 'service dhcpd restart'
Regards,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2005 02:02 AM
09-30-2005 02:02 AM
Re: DHCPD SERVICE CAN'T START
i try the dhcpd-t option nothing appear expect the prompt sign. I really want to know how to uninstalled a sevice in linux or a package.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-30-2005 02:19 AM
09-30-2005 02:19 AM
Re: DHCPD SERVICE CAN'T START
To uninstall? a service/package you need to run rpm -qa |grep package-name, and then use rpm -e package name to delete the package.