diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-12-30 19:52:29 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-12-30 19:52:29 +0000 |
commit | 85d3307d7670dc1b8b0d3ffab814e518e7f0a771 (patch) | |
tree | 50b2fc37daf64ffd0fe3dcb801e3f97f7d9f1ba7 /sca-cpp/trunk/components/cache | |
parent | 681567b28116421496c4b7560a5b70f9730b8a79 (diff) |
Add external configuration of Memcached and PostgreSQL logging, to allow the logs to be piped to Scribe or the HTTPD log rotation program.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1225904 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/components/cache')
-rw-r--r-- | sca-cpp/trunk/components/cache/Makefile.am | 2 | ||||
-rwxr-xr-x | sca-cpp/trunk/components/cache/memcached-log-conf | 37 | ||||
-rwxr-xr-x | sca-cpp/trunk/components/cache/memcached-start | 17 |
3 files changed, 52 insertions, 4 deletions
diff --git a/sca-cpp/trunk/components/cache/Makefile.am b/sca-cpp/trunk/components/cache/Makefile.am index 159a941947..d14bd3a542 100644 --- a/sca-cpp/trunk/components/cache/Makefile.am +++ b/sca-cpp/trunk/components/cache/Makefile.am @@ -18,7 +18,7 @@ incl_HEADERS = *.hpp incldir = $(prefix)/include/components/cache -dist_comp_SCRIPTS = memcached-start memcached-stop +dist_comp_SCRIPTS = memcached-log-conf memcached-start memcached-stop compdir=$(prefix)/components/cache comp_DATA = memcached.prefix diff --git a/sca-cpp/trunk/components/cache/memcached-log-conf b/sca-cpp/trunk/components/cache/memcached-log-conf new file mode 100755 index 0000000000..d8a4896eff --- /dev/null +++ b/sca-cpp/trunk/components/cache/memcached-log-conf @@ -0,0 +1,37 @@ +#!/bin/sh + +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +# Configure memcached logging +here=`echo "import os; print os.path.realpath('$0')" | python`; here=`dirname $here` +mkdir -p $1 +root=`echo "import os; print os.path.realpath('$1')" | python` + +mkdir -p $root/memcached +if [ "$2" = "" ]; then + cat >$root/memcached/log.conf << EOF +cat >>$root/logs/memcached +EOF + +else + cat >$root/memcached/log.conf << EOF +$2 +EOF + +fi + diff --git a/sca-cpp/trunk/components/cache/memcached-start b/sca-cpp/trunk/components/cache/memcached-start index 0946da28f5..a49ad2919a 100755 --- a/sca-cpp/trunk/components/cache/memcached-start +++ b/sca-cpp/trunk/components/cache/memcached-start @@ -19,8 +19,9 @@ # Start memcached here=`echo "import os; print os.path.realpath('$0')" | python`; here=`dirname $here` +root=`echo "import os; print os.path.realpath('$1')" | python` -addr=$1 +addr=$2 if [ "$addr" = "" ]; then ip="" port="11211" @@ -30,9 +31,19 @@ else fi memcached_prefix=`cat $here/memcached.prefix` + +if [ -f "$root/memcached/log.conf" ]; then + log=`cat $root/memcached/log.conf` + v="-vv" +else + mkdir -p $root/logs + log="cat >>$root/logs/memcached" + v="" +fi + if [ "$ip" = "" ]; then - $memcached_prefix/bin/memcached -d -m 4 -p $port + ($memcached_prefix/bin/memcached -d -m 4 -p $port $v 2>&1 | $log)& else - $memcached_prefix/bin/memcached -d -l $ip -m 4 -p $port + ($memcached_prefix/bin/memcached -d -l $ip -m 4 -p $port $v 2>&1 | $log)& fi |