adiary
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
-[[adiary official website:https://adiary.org]]
-[[adiary開発日誌:http://adiary.blog.abk.nu]]
*インストール・更新 [#y784979e]
-adiaryを展開したいディレクトリに移動し、Githubからソース...
# git clone https://github.com/nabe-abk/adiary
-adiary のディレクトリの実行権限を変更
# chmod 777 __cache data pub
-アップデートする場合は「adiary」を展開したディレクトリに...
# git pull
*nginx + diary [#oeec5ed2]
-[[Nginxでの設定:https://adiary.org/v3man/install2/nginx]]
**起動スクリプト [#ff44938f]
-/etc/rc.d/init.d/adiary
#!/bin/bash
#
# chkconfig: - 86 14
# description: adiary is Japanese CMS\
#
NAME=adiary
DAEMON=/path/to/adiary.fcgi
DAEMON_ARGS=127.0.0.1:8998
PIDFILE=/var/run/$NAME.pid
start() {
start-stop-daemon --start --background --make-pidfile -...
result=$?
if [ $result != "0" ]
then
pid=`cat $PIDFILE`
echo "daemon is already running. (pid=${pid})"
exit 1
fi
return $result
}
stop() {
start-stop-daemon --stop --quiet --pidfile $PIDFILE
result=$?
if [ $result != "0" ]
then
echo "daemon is not running. (check $PIDFILE)."
exit 1
fi
rm -f $PIDFILE
return $result
}
restart() {
stop
start
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
*)
echo $"Usage: $0 {start|stop|reload}"
exit 1
esac
--[[daemon]]起動に start-stop-daemon を使用している
-自動起動化
# chkconfig --add adiary
# chkconfig adiary on
終了行:
-[[adiary official website:https://adiary.org]]
-[[adiary開発日誌:http://adiary.blog.abk.nu]]
*インストール・更新 [#y784979e]
-adiaryを展開したいディレクトリに移動し、Githubからソース...
# git clone https://github.com/nabe-abk/adiary
-adiary のディレクトリの実行権限を変更
# chmod 777 __cache data pub
-アップデートする場合は「adiary」を展開したディレクトリに...
# git pull
*nginx + diary [#oeec5ed2]
-[[Nginxでの設定:https://adiary.org/v3man/install2/nginx]]
**起動スクリプト [#ff44938f]
-/etc/rc.d/init.d/adiary
#!/bin/bash
#
# chkconfig: - 86 14
# description: adiary is Japanese CMS\
#
NAME=adiary
DAEMON=/path/to/adiary.fcgi
DAEMON_ARGS=127.0.0.1:8998
PIDFILE=/var/run/$NAME.pid
start() {
start-stop-daemon --start --background --make-pidfile -...
result=$?
if [ $result != "0" ]
then
pid=`cat $PIDFILE`
echo "daemon is already running. (pid=${pid})"
exit 1
fi
return $result
}
stop() {
start-stop-daemon --stop --quiet --pidfile $PIDFILE
result=$?
if [ $result != "0" ]
then
echo "daemon is not running. (check $PIDFILE)."
exit 1
fi
rm -f $PIDFILE
return $result
}
restart() {
stop
start
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
*)
echo $"Usage: $0 {start|stop|reload}"
exit 1
esac
--[[daemon]]起動に start-stop-daemon を使用している
-自動起動化
# chkconfig --add adiary
# chkconfig adiary on
ページ名: