Spaces are not Being Displayed on Dashboard or in Spaces Directory

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

症状

Spaces are not being displayed in either the Dash Board List of spaces or in the Space directory

診断

This can occur on an upgrade of the 3.5.x series to 4.3.  When the problem occurs, you are able to create new spaces and they show up in the appropriate places.

原因

Part of the migration task did not run.  4.3.x adds the column "spacestatus" to the "spaces" table.  The entry in this Column for each space is "NULL" or Blank and it needs to be "CURRENT"

ソリューション

Verify that this is the case for you instance by performing the following sql query

SELECT * FROM spaces;

If you have a Null Value in your Space Status Column, you are affected by this issue

 

Run the following query to set all spaces to space status CURRENT

UPDATE spaces
SET spacestatus = 'CURRENT';

 

最終更新日: 2016 年 2 月 26 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.