From owner-freebsd-questions@FreeBSD.ORG Thu Mar 25 02:47:15 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3107016A4CE for ; Thu, 25 Mar 2004 02:47:15 -0800 (PST) Received: from ei.bzerk.org (ei.xs4all.nl [213.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22BE543D39 for ; Thu, 25 Mar 2004 02:47:14 -0800 (PST) (envelope-from mail25@bzerk.org) Received: from ei.bzerk.org (BOFH@localhost [127.0.0.1]) by ei.bzerk.org (8.12.10/8.12.10) with ESMTP id i2PAnOUv003062; Thu, 25 Mar 2004 11:49:25 +0100 (CET) (envelope-from mail25@bzerk.org) Received: (from bulk@localhost) by ei.bzerk.org (8.12.10/8.12.10/Submit) id i2PAnOUu003061; Thu, 25 Mar 2004 11:49:24 +0100 (CET) (envelope-from mail25@bzerk.org) X-Authentication-Warning: ei.bzerk.org: bulk set sender to mail25@bzerk.org using -f Date: Thu, 25 Mar 2004 11:49:24 +0100 From: Ruben de Groot To: remko@evilcoder.org Message-ID: <20040325104924.GA2983@ei.bzerk.org> References: <0C77761F18F15D479796EF5A28C1A77E4782F0@mail.lvrtc.lv> <20040325110809.84g4c0kgkkkk40gg@mail-evilcoder.webservers.intranet> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040325110809.84g4c0kgkkkk40gg@mail-evilcoder.webservers.intranet> User-Agent: Mutt/1.4.1i cc: questions@freebsd.org Subject: Re: FreeBSD + RACOON error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Mar 2004 10:47:15 -0000 On Thu, Mar 25, 2004 at 11:08:09AM +0100, remko@evilcoder.org typed: > Hi Olegs, > > the error on one of the firewalls occured.: > > swap_pager: out of swap space > > swap_pager_getswapspace: failed > > / kernel: pid 148 (racoon), vid 0 , was killed: out of swap space > > Try increasing your swapspace, since it's obviously a bit too little. > This cannot be changed on the fly i think, perhaps with growfs... if you have > spare space left on your disk... (check the manual page for it) > > Or increase your memory... ;) If you have to increase your swapspace *NOW* and you don't have any spare space left on your disk you might try something like this: # swapinfo Device 1K-blocks Used Avail Capacity /dev/ad0s1b 524288 272 524016 0% # dd if=/dev/zero of=/tmp/swap bs=64m count=1 1+0 records in 1+0 records out 67108864 bytes transferred in 10.536310 secs (6369295 bytes/sec) # mdconfig -a -t vnode -f /tmp/swap md0 # swapon /dev/md0 # swapinfo Device 1K-blocks Used Avail Capacity /dev/ad0s1b 524288 272 524016 0% /dev/md0 65536 0 65536 0% Total 589824 272 589552 0% (on 4.x, use vnconfig(8) instead of mdconfig) Ruben