小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

線上Redis禁用或重命名危險(xiǎn)命令

 一本正經(jīng)地胡鬧 2019-07-03

和Mysql中查詢使用select*一樣,Redis中線上使用keys *命令,也是非常危險(xiǎn)的。因此線上的Redis必須考慮禁用一些危險(xiǎn)的命令,或者盡量避免誰都可以使用這些命令,Redis沒有完整的管理系統(tǒng),但是也提供了一些方案。

Redis支持命令重命名和命令禁用。

看下Redis的配置文件

# Command renaming. 命令重命名
#
# It is possible to change the name of dangerous commands in a shared
# environment. For instance the CONFIG command may be renamed into something
# hard to guess so that it will still be available for internal-use tools
# but not available for general clients.
#
# Example: 重命名的方式
# rename-command   命令名   新命令名
# rename-command CONFIG b840fc02d524045429941cc15f59e41cb7be6c52
#
# It is also possible to completely kill a command by renaming it into
# an empty string:
# 禁用命令的話,直接重命名為""就可以了
# rename-command CONFIG ""
#
# Please note that changing the name of commands that are logged into the
# AOF file or transmitted to slaves may cause problems.

下面整理了一些危險(xiǎn)命令,線上的話需要考慮禁用或者重命名,如有線上有用Redis的,或者將部署Redis建議考慮,天知道誰哪天會(huì)手賤呢

rename-command KEYS ""         // 必禁命令,線上用這種查詢方式絕對(duì)是不對(duì)的
rename-command FLUSHALL "" // 必禁命令,誰會(huì)清除數(shù)據(jù)呢
rename-command FLUSHDB ""  // 必禁命令,誰會(huì)清除數(shù)據(jù)呢
rename-command CONFIG ""     // 可以考慮重命名下

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多