1. Pool 생성
```shell
$ ceph osd pool create {{ DATA_POOL_NAME }}
$ ceph osd pool create {{ METADATA_POOL_NAME }}
```
\#CephFS는 데이터용과 메타데이터용 각각 2개이상의 RADOS풀 필요
2. 생성된 Pool을 애플리케이션에 연결 (cephfs로 연결) ```shell
$ ceph osd pool application enable {{ DATA_POOL_NAME }} cephfs
```
3. 파일시스템 생성 ```shell
$ ceph fs new {{ FS_NAME }} {{ METADATA_POOL_NAME }} {{DATANAME }}
```
4. NFS export
```shell
$ ceph mgr module enable nfs
```
\# 2. nfs ganesha 클러스터 생성
```shell
$ ceph nfs cluster create {{ clusterid }}
```
```shell
$ ceph nfs export create cephfs {{ NAME }} {{ clusterid }
```
*reference*
-