2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

プリザンターのインストールで「CodeDefinerの実行」でエラーになった時の対応策

Posted at

はじめに

プリザンターを久々にローカル環境で動かそうと思った時に躓いたのでメモ。

環境

OS:windows 11 pro

現象

公式ドキュメントのプリザンターをWindowsにインストールするの手順でCodeDefinerの実行を行うと「フルテキスト検索がインストールされていないか、フルテキスト コンポーネントを読み込めませんでした。」というエラーが出る。

 cd C:\web\pleasanter\Implem.CodeDefiner
 dotnet Implem.CodeDefiner.dll _rds

実際のメッセージ

image.png

原因

その昔、SQL Server ExpressEditionをインストールした時に、基本を選択したのでインストールされていなかった。
image.png

対応

公式ドキュメントのSQL Server 2019 Expressのインストール及び設定の手順にある通り「検索のためのフルテキスト抽出とセマンティック抽出」を選択し(または再インストール)を行うとエラー無く進むことができた。

忘備録

sp_fulltext_databaseで有効になるか試してみたが、正常終了となるものの、インストールされていないので有効にはならなかった。

EXEC sp_fulltext_database 'enable'
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?