このブログを検索

2018/11/06

How to use docker image of Neo4j

https://github.com/docker-library/docs/blob/master/neo4j/README.md

You can start a Neo4j container like this:
docker run \
    --publish=7474:7474 --publish=7687:7687 \
    --volume=$HOME/neo4j/data:/data \
  --env=NEO4J_AUTH=none \ 
neo4j
which allows you to access neo4j through your browser at http://localhost:7474.
This binds two ports (7474 and 7687) for HTTP and Bolt access to the Neo4j API. A volume is bound to /data to allow the database to be persisted outside the container.
By default, this requires you to login with neo4j/neo4j and change the password. You can, for development purposes, disable authentication by passing --env=NEO4J_AUTH=none to docker run.

2016/12/16

PostgreSQL 7.2.3 stop

https://www.postgresql.jp/document/7.2/reference/app-pg-ctl.html


$ cd /Users/{username}/PostgreSQL/pg92/bin
$ ./pg_ctl stop -D /Users/{username}/PostgreSQL/data/pg92

2016/11/14

Jenkinsからgitの差分を定期的にチェックする方法

特定ファイルの変換を追うためです。

master branchにマージされたcommitを定期的にみてある拡張子だけのファイルのリストを取得する。

  • Jenkins Plugin
https://wiki.jenkins-ci.org/display/JENKINS/Github+Plugin

  • Jenkins job config
- Build Triggers -> Poll SCM のSchedule
 : H/5 * * * * を指定
- Build ->  Add Execute shell
# 削除(D)以外の差分ファイル名を取得する。
git diff --diff-filter=d --name-only ${GIT_PREVIOUS_COMMIT} ${GIT_COMMIT} | grep -e ".*.ddl"


--diff-filter=d  がjenkinsのexecute shell からはうまく動かなかったから次のように修正。

```
# I can not use option --diff-filter=d. If you can fix this line
git diff --name-status ${GIT_PREVIOUS_COMMIT} ${GIT_COMMIT} | grep -i ".*.ddl" > list.txt

cat ${GIT_PATH}/list.txt | while read f
do
  if [[ "$f" == D* ]]; then
    echo $f | sed -e "s/D[<tab><space>]*//g" >> delete_list.txt
  else
    echo $f | tr '\t' ',' | sed -e "s/.,*//" >> change_list.txt
  fi
done
```


参考:
https://www.git-scm.com/docs/git-diff