Replies: 1 comment
|
안녕하세요. 아래 내용 참고 부탁드립니다. 간접 참조 차단간접참조의 경우 말씀하신 것과 같이 다음과 같은 에러메시지가 출력되어 차단이 됩니다. [column_name] 부분은 정책(Data access 정책 또는 마스킹 정책)이 적용된 컬럼을 의미합니다. 이 상황을 완화하기 위해서 환경변수를 사용할 수 있습니다. 환경변수 적용
cd ~/querypie/current
vi .env파일의 제일 아래에 아래의 내용을 입력하고 저장합니다. # Feature
FF_DISABLE_DAC_INDIRECT_POLICY=true
docker compose --profile app up -d --force-recreate app주의 사항
참고 사항컨테이너를 재시작 한 뒤 웹 콘솔에 접속하면 "Unknown Content-type received." 에러가 출력될 수 있습니다.
Indirect Reference BlockingFor indirect references, as mentioned, the following error message is displayed and the query is blocked: Applying the Environment Variable
cd ~/querypie/current
vi .envAdd the following content at the bottom of the file and save it. # Feature
FF_DISABLE_DAC_INDIRECT_POLICY=true
docker compose --profile app up -d --force-recreate appCautions
NotesAfter restarting the container, accessing the web console may display an "Unknown Content-type received." error.
間接参照のブロック間接参照の場合、前述のとおり、以下のエラーメッセージが表示されてブロックされます。 環境変数の適用
cd ~/querypie/current
vi .envファイルの最下部に以下の内容を入力して保存します。 # Feature
FF_DISABLE_DAC_INDIRECT_POLICY=true
docker compose --profile app up -d --force-recreate app注意事項
参考事項コンテナを再起動した後、Webコンソールにアクセスすると「Unknown Content-type received.」というエラーが表示される場合があります。
|
Uh oh!
There was an error while loading. Please reload this page.
안녕하세요.
QueryPie 사용 중 데이터 마스킹 정책과 관련하여 확인 요청드립니다.
현재 마스킹이 적용된 컬럼에 대해 검색을 시도할 경우, 단순히 결과값만 필터링되는 것이 아니라 검색 자체가 제한되는 것으로 보입니다. 이와 관련하여 아래와 같은 오류 메시지를 확인했습니다.
/* SQL 오류 (1317): [ENGINE] You cannot execute the query because policies are applied to 'PatientName'. */
추가로 안내 문구로는 아래 내용도 확인했습니다.
This feature requires a reason for the selected actions performed in the Web Editor. For connections made via proxy, this requirement only applies to the "SQL Execution" condition.
검색 조건으로는 사용할 수 있도록 허용하되, 조회 결과에서는 해당 컬럼 값이 마스킹 또는 필터링되어 보이도록 설정하는 방식이 가능한지 질문드립니다.
All reactions