dhcp시작에러 Can't bind to dhcp address: Address already in

tipntech의 이미지

dhcpd설정파일을 아래와 같이 하고 service dhcpd start하는데

이놈이 에러메시지를 좌악 뿌리면서 일할 생각을 안하네요..=_=;;

#/etc/dhcpd.conf

ddns-update-style none;
ignore client-updates;

subnet 192.168.1.0 netmask 255.255.255.0 {

# --- default gateway
        option routers                  192.168.1.195; #이놈은 사실로컬인데요.. 라우터가 외부아이피로 되어있어서 어차피 사설 네트웍에서만 dhcp클라이언트들이 돌거라.. dhcp서버 아이피로 걍 설정했습니다.
        option subnet-mask              255.255.255.0;

#       option nis-domain               "domain.org";
#       option domain-name              "domain.org";
#       option domain-name-servers      192.168.1.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.1.100 192.168.1.110;
        default-lease-time 21600;
        max-lease-time 43200;

        # we want the nameserver to appear at a fixed address
#       host test1 {
#               next-server marvin.redhat.com;
#               hardware ethernet 12:34:56:78:AB:CD;
#               fixed-address 207.175.42.254;
#       }
}

에러메시지는 아래와 같습니다.

dhcpd (을)를 시작합니다: Internet Systems Consortium DHCP Server V3.0.1
Copyright 2004 Internet Systems Consortium.
All rights reserved.
For info, please visit http://www.isc.org/sw/dhcp/
Wrote 0 leases to leases file.
Listening on LPF/eth0/00:4f:4e:10:73:59/192.168.1.0/24
Sending on   LPF/eth0/00:4f:4e:10:73:59/192.168.1.0/24
Can't bind to dhcp address: Address already in use
Please make sure there is no other dhcp server
running and that there's no entry for dhcp or
bootp in /etc/inetd.conf.   Also make sure you
are not running HP JetAdmin software, which
includes a bootp server.

If you did not get this software from ftp.isc.org, please
get the latest from ftp.isc.org and install that before
requesting help.

If you did get this software from ftp.isc.org and have not
yet read the README, please read it before requesting help.
If you intend to request help from the dhcp-server@isc.org
mailing list, please read the section on the README about
submitting bug reports and requests for help.

Please do not under any circumstances send requests for
help directly to the authors of this software - please
send them to the appropriate mailing list as described in
the README file.

exiting.
                                                           [실패]

기존에 돌아가던 윈도우dhcp가 있었는데 이놈은 일단 서비스를 죽였구요.. 그외에 HP jetdirect를 쓰긴 하는데. 이넘이 문제가 될까요? 으음..=_=a

아래와 같은 에러 메시지가 뜨는 이유는 무엇이고 어디가면 해결책을 찾을 수가 있을까요?