91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PostgreSQL用戶登錄失敗自動鎖定怎么解決

發布時間:2021-03-22 11:15:22 來源:億速云 閱讀:641 作者:小新 欄目:開發技術

小編給大家分享一下PostgreSQL用戶登錄失敗自動鎖定怎么解決,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

一、插件session_exec安裝配置篇

下載插件并編譯安裝。
https://github.com/okbob/session_exec

$ unzip session_exec-master.zip 
$ cd session_exec-master/
$ make pg_config=/opt/pgsql/bin/pg_config
$ make pg_config=/opt/pgsql/bin/pg_config install

配置postgresql.conf。

session_preload_libraries='session_exec'
session_exec.login_name='login'

注意:上面第一個變量是設置session_preload_libraries而不是通常設置的shared_preload_libraries。
第二個變量是需要自定義實現的登錄函數。

重啟數據庫服務。

$ sudo systemctl restart postgresql-12

二、自定義登錄函數篇

創建t_login表用于存儲提取自數據庫日志中登錄失敗的信息。

create table t_login
(
login_time timestamp(3) with time zone --插入時間,
user_name text --數據庫登錄用戶,
flag int4 --標志位,0代表過期數據,1代表正常狀態數據
);

使用file_fdw外部表記錄數據庫日志信息。
file_fdw如果未配置過,參見下面步驟。

$ cd /opt/postgresql-12.5/contrib/file_fdw
$ make && make install

create extension file_fdw;
CREATE SERVER pglog FOREIGN DATA WRAPPER file_fdw;

建立外部表postgres_log,關聯數據庫日志中登錄失敗的信息。

CREATE FOREIGN TABLE postgres_log( 
 log_time timestamp(3) with time zone, 
 user_name text, 
 database_name text, 
 process_id integer,
 connection_from text,
 session_id text, 
 session_line_num bigint, 
 command_tag text, 
 session_start_time timestamp with time zone, 
 virtual_transaction_id text, 
 transaction_id bigint, 
 error_severity text, 
 sql_state_code text, 
 message text, 
 detail text, 
 hint text, 
 internal_query text, 
 internal_query_pos integer, 
 context text, 
 query text, 
 query_pos integer, 
 location text, 
 application_name text
) SERVER pglog 
OPTIONS ( program 'find /opt/pg_log_5432 -type f -name "*.csv" -mtime -1 -exec cat {} \;', format 'csv' );

注意:
1./opt/pg_log_5432需要修改為實際環境日志目錄。
2. 不同PG版本csv日志格式可能有所差異,參考PG官網文檔runtime-config-logging章節(http://postgres.cn/docs/12/runtime-config-logging.html)。

此時連接數據庫因未創建登錄函數會出現下面的警告信息。

$ psql -Upostgres
WARNING: function "login()" does not exist
psql (12.5)
Type "help" for help.

創建登錄函數login。

create or replace function login() returns void as $$
declare
res text;
c1 timestamp(3) with time zone;
begin

--獲取當前日志中最新時間
select login_time 
from public.t_login 
where flag = 0 
order by login_time 
desc limit 1 
into c1; 

 --將最新的數據插入t_login表
insert into public.t_login 
select log_time,user_name 
from public.postgres_log 
where command_tag='authentication' 
and error_severity= 'FATAL' 
and log_time > c1;

update public.t_login set flag = 1 where login_time > c1; 

--檢查登錄失敗次數是否大于3,若大于3則鎖定用戶
for res in select user_name from public.t_login where flag = 1 group by user_name having count(*) >=3 
loop
--鎖定用戶
EXECUTE format('alter user %I nologin',res); 
--斷開當前被鎖定用戶會話
EXECUTE 'select pg_catalog.pg_terminate_backend(pid) from pg_catalog.pg_stat_activity where usename=$1' using res; 
raise notice 'Account % is locked!',res;
end loop;
end;
$$ language plpgsql strict security definer set search_path to 'public';

測試使用篇

創建測試用戶。

create user test1 encrypted password 'XXX';

模擬test1用戶登錄失敗,輸入錯誤密碼。

$ psql -h292.168.137.11 -Utest1 postgres
Password for user test1: 
psql: error: FATAL: password authentication failed for user "test1"

通過外部表查看登錄失敗的日志。

select * from postgres_log where command_tag='authentication' and error_severity= 'FATAL';

可以看到1條數據,手工插入一條登錄失敗的信息到t_login表。

insert into t_login select log_time,user_name,0
 from postgres_log 
 where command_tag='authentication' 
 and error_severity= 'FATAL';

參考上面登錄失敗測試,接著再測試2次。

然后使用postgres用戶登錄數據庫,觀察t_login表數據。

postgres=# select * from t_login;
  login_time  | user_name | flag 
-------------------------+-----------+------
 2021-02-08 06:24:47.101 | test1  | 0
 2021-02-08 06:25:16.581 | test1  | 1
 2021-02-08 06:25:18.429 | test1  | 1
(3 rows)

再測試兩次失敗登錄,然后使用postgres用戶登錄數據庫,看到提示該用戶被鎖定。

[postgres@node11 ~]$ psql
NOTICE: Account test1 is locked!
psql (12.5)
Type "help" for help.

postgres=# select * from t_login;
  login_time  | user_name | flag 
-------------------------+-----------+------
 2021-02-08 06:45:38.017 | test1  | 0
 2021-02-08 06:45:58.809 | test1  | 1
 2021-02-08 06:45:58.809 | test1  | 1
 2021-02-08 06:46:08.116 | test1  | 1
 2021-02-08 06:46:11.986 | test1  | 1
(5 rows)

解鎖用戶。

update t_login set flag = 0 where user_name='test1' and flag=1;

總結

  • session_exec通過用戶登錄成功后調用login函數去實現鎖定登錄失敗次數過多的用戶。

  • 此種方式有點繁瑣且會造成數據庫連接變慢。

  • 不支持自動解鎖,需要管理用戶手工處理。

以上是“PostgreSQL用戶登錄失敗自動鎖定怎么解決”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新营市| 长子县| 祁东县| 信丰县| 漯河市| 台南县| 长武县| 衢州市| 甘洛县| 连江县| 汝阳县| 隆子县| 平泉县| 长丰县| 资源县| 思南县| 西畴县| 察隅县| 林芝县| 富民县| 恩平市| 临沂市| 吉林省| 南通市| 建昌县| 武安市| 宜川县| 遂川县| 琼中| 姚安县| 赤壁市| 稻城县| 塔河县| 娄烦县| 鹤山市| 台中县| 嘉鱼县| 平利县| 阳高县| 中方县| 班玛县|