How do I find "unlicensed" users for my Bitbucket Server instance?

お困りですか?

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

コミュニティに質問

プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Fisheye および Crucible は除く

問題

Unlicensed users are ones that are in Bitbucket user database, created locally or synchronized from external user directories, and which do not have access to Bitbucket Server on the Global Permissions page either:

  1. Directly via username
  2. Via a group which the user is part of

ソリューション

Run the following query against the database:

SELECT name 
FROM sta_normal_user 
WHERE NOT EXISTS (
    SELECT * FROM sta_global_permission WHERE user_id = sta_normal_user.user_id
) 
AND NOT EXISTS (
    SELECT * FROM cwd_membership WHERE parent_name IN (
        SELECT group_name FROM sta_global_permission
    )
    AND child_name = sta_normal_user.name
);

The plugin is locked down to administrators but it can be uninstalled from the Manage Plugins screen if preferred.

説明

There may be a need to list unlicensed users to either:

  1. Delete/remove them permanently from Bitbucket
  2. アクセスを許可する


最終更新日: 2020 年 1 月 30 日

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

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