From owner-freebsd-questions@FreeBSD.ORG Fri May 30 03:34:54 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F6C4106566B for ; Fri, 30 May 2008 03:34:54 +0000 (UTC) (envelope-from hjjp76@yahoo.com) Received: from web81505.mail.mud.yahoo.com (web81505.mail.mud.yahoo.com [68.142.199.145]) by mx1.freebsd.org (Postfix) with SMTP id DD25F8FC0A for ; Fri, 30 May 2008 03:34:53 +0000 (UTC) (envelope-from hjjp76@yahoo.com) Received: (qmail 6547 invoked by uid 60001); 30 May 2008 03:08:12 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type:Message-ID; b=xAYszjvpGzPXC4Xhrm4JYASbriGzaH/tKSKXFZJ/+CxoZLPivMy2B5Ek7aoBTcAMp93z8NWX/dY4OJyfTdbxToO3vsN3lEjyyY0x3r1yR8MQEE40GuU70wztXrl38vunJ2X7vv29XQVTsEn5os0KdEYypcQ1K6nD8uwep+Sxkro=; X-YMail-OSG: e1lOF10VM1lxvYtfQjymKm0nnOGBpbR6JdIR2DywNYZdc2Rxi9XMBzUR7THkKALphrNaLjfGbLEgnjADC1.XhJDdf7YrQGhGSnblTGdjnZipbOFr6IQGzVYTQw-- Received: from [69.228.142.17] by web81505.mail.mud.yahoo.com via HTTP; Thu, 29 May 2008 20:08:12 PDT X-Mailer: YahooMailRC/975.41 YahooMailWebService/0.7.185 Date: Thu, 29 May 2008 20:08:12 -0700 (PDT) From: joe park To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Message-ID: <775238.5923.qm@web81505.mail.mud.yahoo.com> Subject: service (torque) not starting at boot time on 7.0 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2008 03:34:54 -0000 Hello, I've searched the mailing list, but it didn't help the issue I'm seeing. I did fresh install of 7.0, downloaded latest ports.tar.gz, and installed torque (portable batch system) from ports. Everything works fine once the deamon is running, but the services (namely, pbs_mom, pbs_server, and pbs_sched) are not started automatically when the system boots. I can manually start them without a problem with /usr/local/etc/rc.d/pbs_mom start /usr/local/etc/rc.d/pbs_server start /usr/local/etc/rc.d/pbs_sched start The /etc/rc.conf file correctly has following entries : pbs_mom_enable="YES" pbs_server_enable="YES" pbs_sched_enable="YES" When I added "rc_debug="YES", I see that it's not processing any of pbs related process. I tried adding .sh extension to the /usr/local/etc/rc.d/pbs_* scripts, chmod 755 on them (it's 555 by default), getting rid of all other entries in /etc/rc.conf except pbs entries, etc, but I cannot get them to start. Any ideas? I appended full content of /etc/rc.conf. Thanks, Joe # Created: Thu May 22 09:25:54 2008 # Enable network daemons for user convenience. # Please make all changes to this file, not to /etc/defaults/rc.conf. # This file now contains just the overrides from /etc/defaults/rc.conf. ifconfig_bge0="inet 192.168.3.97 netmask 255.255.255.0" defaultrouter="192.168.3.2" hostname="node001.xxx.com" linux_enable="YES" sshd_enable="YES" pbs_mom_enable="YES" pbs_server_enable="YES" pbs_sched_enable="YES" rc_debug="YES"