Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!tudelft.nl!txtfeed1.tudelft.nl!feeder2.cambriumusenet.nl!feed.tweaknews.nl!194.109.133.85.MISMATCH!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.010 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'ubuntu': 0.04; 'script,': 0.07; 'python': 0.08; 'subject:beginner': 0.09; 'docs,': 0.16; 'received:192.168.1.33': 0.16; 'subject:question': 0.17; 'thanks,': 0.18; '(or': 0.22; 'header:In-Reply-To:1': 0.23; 'starts': 0.23; 'received:74.125.82.174': 0.24; 'received:mail- wy0-f174.google.com': 0.24; "i'm": 0.26; 'script': 0.28; 'server': 0.30; 'shut': 0.30; 'hi,': 0.31; 'to:addr:python-list': 0.32; 'there': 0.33; 'header:User-Agent:1': 0.33; 'message- id:@gmail.com': 0.34; 'install': 0.34; 'from:charset:iso-8859-1': 0.34; 'received:74.125.82': 0.37; 'think': 0.37; 'using': 0.37; 'could': 0.38; 'received:google.com': 0.38; 'received:192': 0.38; 'received:74.125': 0.39; 'subject:: ': 0.39; 'to:addr:python.org': 0.39; 'apt-get': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=MexX2Wa8l32U3mnpaOs3EWnO/XBnXfFVWQ9e+6IckGM=; b=E1h62clsvSUj85dghlfc0E0tM5MKp8N8G7k0gyUorsfruQ/2KiaG/2m92HjKKT/SMU gVO2nqAgjruBtPBywSynWPV/K/iMMHmJ+1hRHC6qfmEdI2AgtWX86Kn+8U7pwigl2rNR uYPye0Lrj92KDyOhWR18eqmok7Ujo//q2sQCg= Date: Wed, 16 Nov 2011 21:48:37 +0100 From: =?ISO-8859-1?Q?Rafael_Dur=E1n_Casta=F1eda?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: redis beginner question References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1321476522 news.xs4all.nl 6861 [2001:888:2000:d::a6]:53480 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:15788 El 16/11/11 03:22, Jabba Laci escribió: > Hi, > > I'm reading the redis documentation and there is one thing that > bothers me. For redis, you need to start a server on localhost. Is > there an easy way that my Python script starts this server > automatically? Before using my script, I don't want to start > redis-server each time. When my program terminates, the server could > be shut down automatically. > > Thanks, > > Laszlo I think you are misunderstanding the docs, on ubuntu (or whatever you use) you can do apt-get install redis-server and you'll get what you want. HTH