An open API service indexing awesome lists of open source software.

https://github.com/dearcode/etcdfs

etcd fs
https://github.com/dearcode/etcdfs

Last synced: 5 months ago
JSON representation

etcd fs

Awesome Lists containing this project

README

          

etcdfs
=======

Use etcd as a filesystem

Install
====================

Clone the project and build it.

```bash
make
```

This generates an executable file ```etcdfs```. You can mount etcd as a filesystem by running:

```bash
./bin/etcdfs -etcd_user root -etcd_password 123456 -etcd_endpoints 127.0.0.1:2379 -mount_path /tmp/kaka
```

Then you can access ```/tmp/kaka``` and use etcd as a filesystem.

To unmount it:

```bash
fusermount -u /tmp/kaka
```