# Flexisip 2.5 ---\> 2.6, Flexisip-Conference 1.0.1 Upgrade

**URL:** https://forum.ficusonline.com/t/topic/564
**Category:** Server
**Tags:** flexisip, linphone
**Created:** [2026 年 7 月 20 日午前 5:54 UTC](https://forum.ficusonline.com/t/topic/564 "2026-07-20T05:54:59Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![tk-fuse](https://forum.ficusonline.com/user_avatar/forum.ficusonline.com/tk-fuse/32/255_2.png) [@tk-fuse](https://forum.ficusonline.com/u/tk-fuse)
#### Post date: [2026 年 7 月 20 日午前 5:54 UTC](https://forum.ficusonline.com/t/topic/564/1 "2026-07-20T05:54:59Z")

</div>

flexisip-conferenceを独立したパッケージとして配布

> **[Flexisip 2.5 to 2.6 migration guide - XWiki](https://wiki.linphone.org/xwiki/wiki/public/view/Flexisip/HOWTOs/Flexisip%202.5%20to%202.6%20migration%20guide/)**
>
> Flexisip 2.5 to 2.6 migration guide

> **[GitHub - BelledonneCommunications/flexisip-conference](https://github.com/BelledonneCommunications/flexisip-conference)**
>
> GitHub でアカウントを作成して BelledonneCommunications/flexisip-conference の開発に貢献してください。

[Conference server - XWiki](https://wiki.linphone.org/xwiki/wiki/public/view/Flexisip/Conference%20server/)

設定ファイルなどのディレクトリ

| Configuration file | /etc/opt/belledonne-communications/flexisip-conference/flexisip-conference.conf |
| --- | --- |
| Log file | /var/opt/belledonne-communications/flexisip-conference/log/flexisip-conference.log |
| Persistent data directory | /var/opt/belledonne-communications/flexisip-conference/lib |
| Server executable | /opt/belledonne-communications/flexisip-conference/bin/flexisip-conference |

- **`state-directory`(`/lib/uuid`)の永続化** — これによりconference server自身の`+sip.instance`(自己インスタンスGRUU)が再起動をまたいで維持されるようになり、REDIS上でfocus URI/factory URIのエントリが再起動のたびに増殖する問題を解消
- **REDIS上の古い孤児エントリの掃除** — 過去の再起動で作られた無効なUUIDエントリを削除

Redis登録データチェック・削除

```auto
$ docker exec -it redis redis-cli -h 127.0.0.1 -p 6379 --pass xxxxxxxxxxxxxxxxx
127.0.0.1:6379> HGETALL "fs:conference-focus@sip.example.com"
127.0.0.1:6379> HGETALL "fs:videoconference-focus@sip.example.com"

127.0.0.1:6379> HDEL "fs:conference-focus@sip.example.com" "\"<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx>\""
(integer) 1
127.0.0.1:6379> HDEL "fs:videoconference-focus@sip.example.com" "\"<xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx>\""
(integer) 1

```

`key -> field -> value` のデータ構造

```auto
Redis
│
├── Key: fs:conference-focus@sip.example.com
│ │
│ └── Hash
│ │
│ ├── Field: "<UUID>"
│ │ └── Value: "<sip:127.0.0.1:6064;...>"
│ │
│ └── Field: "<別のUUID>"
│ └── Value: "<別のSIP Contact>"
│
├── Key: fs:alice@sip.example.com
│ └── ...
│
└── Key: fs:bob@sip.example.com
        └── ...

```
