influxDBの保存先を任意のディレクトリに変更する方法を紹介します。
保存先を変更する
influxDBの設定ファイルを編集します。
vi /etc/influxdb/influxdb.conf
dataセクションにあるdirとwal-dirを変更します。
[data]
# The directory where the TSM storage engine stores TSM files.
dir = "/path/to/data"
#dir = "/var/lib/influxdb/data"
# The directory where the TSM storage engine stores WAL files.
wal-dir = "/path/to/wal"
#wal-dir = "/var/lib/influxdb/wal"
新しい保存先のディレクトリを作成
保存先とする新しいディレクトリを作成します。
sudo chown influxdb:influxdb -R /path/to/data
sudo chown influxdb:influxdb -R /path/to/wal
アクセス権も忘れずに設定しておきましょう。
sudo chown influxdb:influxdb -R /path/to/
influxDBを再起動
influxDBを再起動します。
sudo systemctl restart influxd
これで変更が反映されます。
コメント