[STEP] Limitation of the amount of the file which can be opened by Linux program

Step One: In system level, set the limitation of the amount of the files which can be opened by the user who running the Linux Program

# vi /etc/security/limites.conf

Add these lines:

......
rmt  -       nofile  1024
rmt  -       nproc   1024

(Add: Setting the rmt user can open 8192 files and 8192 processes in this Linux as an example here)

Step Two: In program level, check the setting of the amount of the files which can be opened by Linux program

# /bin/systemctl show 'rmt-server-mirror.service' | sort
......
LimitNOFILE=524288
......

(Add: The amount of opening the file by program rmt-server-mirror.service is limited at 8096 as an example here)

曾经的时代

人们总是需要
用有限的信息和知识储备
去洞察藏匿至深的阴暗
去选择成为什么样的自命不凡的人格

命运的五线谱
拨弄着人们矛盾的心弦
倘若真相渐少
人们又该如何区分善恶?

圣人笔下的道德
在人们的脑海中若隐若现
倘若公平渐少
人们该如何找到人生的目标?

那些充满梦想和魔法的黄金时代
安安静静地躺在历史书中的文字里
倘若希望渐少
人们该如何重拾笑容?

在无穷无尽的冷漠之后
人们将面对什么?
在穷尽一切的徒劳之后
人们将理解什么?

当懦弱和自私被记录到历史里时
我们又该给后人们怎样的指引?
当旧时代的废墟成为大地上的伤疤时
我们又该如何面对下一代?

在每次恶小为之之前
是否应该驻足沉思?
在每次善小而不为之时
是否应该自我反思?

人们书写着时代

······

[内容] MariaDB & MySQL 安全策略参数 (密码策略)

default_password_lifetime = 90
password_reuse_interval = 90
password_history = 3
password_require_current = ON


补充:
1) 这里的 default_password_lifetime = 90 表示密码的有效期是 90 天
2) 这里的 password_reuse_interval = 90 表示使用过的密码将保留 90 天,在这段时间里密码将不能再被设置成登录密码
3) 这里的 password_history = 3 表示保留最近 3 次用过的密码,这些密码将被再被设置成登陆密码
4) 这里的 password_require_current = ON 表示修改密码时需要验证现有的密码