blob: 972d8099c166e0fe41b3c4d91e23285ac7d93c5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/usr/bin/env bash
set -e
rgw_frontend=${RGW_FRONTEND:-"beast"}
script_root=`dirname $0`
script_root=`(cd $script_root;pwd)`
[ -z "$BUILD_DIR" ] && BUILD_DIR=build
if [ -e CMakeCache.txt ]; then
script_root=$PWD
elif [ -e $script_root/../${BUILD_DIR}/CMakeCache.txt ]; then
cd $script_root/../${BUILD_DIR}
script_root=$PWD
fi
ceph_bin=$script_root/bin
vstart_path=`dirname $0`
[ "$#" -lt 2 ] && echo "usage: $0 <name> <port> [params...]" && exit 1
name=$1
port=$2
if [ ! -z "$RGW_FRONTEND_THREADS" ]; then
set_frontend_threads="num_threads=$RGW_FRONTEND_THREADS"
fi
shift 2
run_root=$script_root/run/$name
pidfile=$run_root/out/radosgw.${port}.pid
asokfile=$run_root/out/radosgw.${port}.asok
logfile=$run_root/out/radosgw.${port}.log
$vstart_path/mstop.sh $name radosgw $port
$vstart_path/mrun $name ceph -c $run_root/ceph.conf \
-k $run_root/keyring auth get-or-create client.rgw.$port mon \
'allow rw' osd 'allow rwx' mgr 'allow rw' >> $run_root/keyring
$vstart_path/mrun $name radosgw --rgw-frontends="$rgw_frontend port=$port $set_frontend_threads" \
-n client.rgw.$port --pid-file=$pidfile \
--admin-socket=$asokfile "$@" --log-file=$logfile
|