From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thorsten Newsgroups: gmane.emacs.help Subject: Emacs server Date: Fri, 17 Feb 2012 10:16:27 +0100 Message-ID: <87mx8hes5w.fsf@googlemail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1329470154 29238 80.91.229.3 (17 Feb 2012 09:15:54 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 17 Feb 2012 09:15:54 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Feb 17 10:15:51 2012 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RyJuu-0005rJ-TA for geh-help-gnu-emacs@m.gmane.org; Fri, 17 Feb 2012 10:15:49 +0100 Original-Received: from localhost ([::1]:55794 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RyJut-0003Bs-Eo for geh-help-gnu-emacs@m.gmane.org; Fri, 17 Feb 2012 04:15:47 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:41017) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RyJuj-0003BZ-FU for help-gnu-emacs@gnu.org; Fri, 17 Feb 2012 04:15:42 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RyJud-0007Vp-Pb for help-gnu-emacs@gnu.org; Fri, 17 Feb 2012 04:15:37 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:55160) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RyJud-0007Vk-Br for help-gnu-emacs@gnu.org; Fri, 17 Feb 2012 04:15:31 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1RyJub-0005Y3-Te for help-gnu-emacs@gnu.org; Fri, 17 Feb 2012 10:15:29 +0100 Original-Received: from e178117006.adsl.alicedsl.de ([85.178.117.6]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Feb 2012 10:15:29 +0100 Original-Received: from quintfall by e178117006.adsl.alicedsl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 17 Feb 2012 10:15:29 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 28 Original-X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: e178117006.adsl.alicedsl.de User-Agent: Gnus/5.130002 (Ma Gnus v0.2) Emacs/24.0.93 (gnu/linux) Cancel-Lock: sha1:8tQkOVBcWd+p7dX77FBWVw/QqsU= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:83777 Archived-At: Hello list, I try to run emacs24 as a server on ArchLinux, and it works with M-x server-start inside a runnung emacs. When I start emacs with --daemon, I receive the message that the daemon is started, and I see how the load-files are loaded, and finally control is given back to the shell process. However, emacsclient does not find a socket, and top doesn't show an emacs process running. Here are my start scripts: daemon: ,----------------------------------------------------------------------- | #!/bin/sh | exec emacs --daemon=emacs1 -l ~/.emacs.d/emacs24-starter-kit/init.el `----------------------------------------------------------------------- client: ,--------------------- | #!/bin/sh | exec emacsclient -c `--------------------- What might be the problem? cheers -- Thorsten