From owner-freebsd-questions@FreeBSD.ORG Thu Feb 22 04:25:24 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1E3F16A400 for ; Thu, 22 Feb 2007 04:25:24 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.188]) by mx1.freebsd.org (Postfix) with ESMTP id 7247513C46B for ; Thu, 22 Feb 2007 04:25:24 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by mu-out-0910.google.com with SMTP id g7so44851muf for ; Wed, 21 Feb 2007 20:25:23 -0800 (PST) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=eHF/RSMCCnOvZZnipyQg7QulH7L4ELxmPdFxSQWZOgRqKbqEhe/GNnCPeL0/59cVs/VOQYOpt2+bTzoKxUEFnW2r25xxaMbMGLpsC5p9nvPSr5ospAnGWIVvxzQ3l8Dh3pQfgNXDktM5qe2Mlz8rVQ+FHKptSuUEZ1fFh/UURAc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=c2mkfGeu8ZTJF1hth4D+tURqYodyalZAk6CDG8H/W1qzbPiw6pduLEuPOoLRaYgb0tBwdtg4DqXG5ErtuoRnWK21lRJIfwqvT+pXRPTfvTArTtWjupgBJNlcF7nD5gMcU9pQpxrbpGIQUklLUTei9N/oznQd2zsWBk0FfF2RDrE= Received: by 10.82.134.12 with SMTP id h12mr36906bud.1172118323100; Wed, 21 Feb 2007 20:25:23 -0800 (PST) Received: by 10.82.163.16 with HTTP; Wed, 21 Feb 2007 20:25:23 -0800 (PST) Message-ID: <8cb6106e0702212025i63f47597l491031425c7eb611@mail.gmail.com> Date: Wed, 21 Feb 2007 20:25:23 -0800 From: "Josh Carroll" To: questions@freebsd.org In-Reply-To: <8cb6106e0702211851j6240e780t534b7166fe28b650@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <8cb6106e0702211851j6240e780t534b7166fe28b650@mail.gmail.com> Cc: Subject: [SOLVED] Re: login.conf not honored for rc scripts? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@psualum.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Feb 2007 04:25:25 -0000 Ok, I should have dug into the rc scripts to begin with. For archive sake, and so others who may stumble upon this can find a solution, I found that for mysql, I needed the following in rc.conf: mysql_limits=YES And also, since the mysql rc script is hard-coded to use the login class "mysql", I had to change that name. For apache, it's more configurable, so I was able to add the following: apache22limits_enable=YES apache22limits_args="-e -C www" And I just renamed the gallery class to www for clarity. Sorry to bug the list :) I should have read the damn source to begin with. Josh