Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[jsk_database_scripts] add JSK database utility package #402

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions jsk_database_scripts/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.0.2)
project(jsk_database_scripts)

find_package(catkin REQUIRED)

catkin_package()

include_directories()
54 changes: 54 additions & 0 deletions jsk_database_scripts/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# jsk_database_scripts

## mongodb

JSK mongodb database server config

This project is originally created by Yuki Furuta (@furushchev) and modified by Shingo Kitagawa (@knorth55)

This project is moved from [knorth55/toolbox](https://github.com/knorth55/toolbox.git)

### Installation

Please see [./mongodb/docker](./mongodb/docker) for more information.

### Backup mongodb to QNAP

```bash
cd ./mongodb
sudo bash ./backup_to_qnap.sh
```

## influxdb

JSK influxdb database server config

### Systemctl service installation

```bash
sudo cp ./influxdb/systemd/* /etc/systemd/system
sudo systemctl daemon-reload
# enable your service
sudo systemctl enable jsk-pr1040-influxdb.service
```

## gdrive

JSK gdrive server config

### Systemctl service installation

```bash
sudo cp ./gdrive/systemd/* /etc/systemd/system
sudo systemctl daemon-reload
# enable your service
sudo systemctl enable jsk-pr1040-gdrive.service
```

## grafana

JSK grafana server config

### Grafana models for InfluxDB

You can find models JSON file in [./grafana/models](./grafana/models).
Loading