centos7 redis 使用,檢視Redis工具(安裝、新增許可權驗證、新增開機自啟)
- 安裝
$ wget http://download.redis.io/releases/redis-4.0.7.tar.gz
$ tar xzf redis-4.0.7.tar.gz
$ cd redis-4.0.7
$ make
注意:如果make時報錯,gcc:未找到命令錯誤,
# [Linux安裝redis時報gcc:未找到命令錯誤](http://blog.csdn.net/wenwen360360/article/details/70162169)
mv redis-4.0.7/ /usr/local/redis # 將解壓包拷貝到指定目錄
- redis檢視工具:
- mac安裝Redis視覺化工具-Redis Desktop Manager
- ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null ; brew install caskroom/cask/brew-cask 2> /dev/null
- brew cask install rdm
re.: https://www.jianshu.com/p/214baa511f2e
-
redis 允許遠端訪問
配置redisredis的配置檔案是redis.conf
vim redis.conf
-
配置說明:
- 鍵空間通知功能: notify-keyspace-events Ex
- 後臺啟動: daemonize yes
- 使用密碼: requirepass redispwd
- 允許遠端連線: bind 0.0.0.0
- 命令列中執行 redis 服務
./redis-server /path/to/redis.conf
- Redis 開機自啟 和 後臺啟動
vim /lib/systemd/system/Redis.service
[Unit]
Description=Redis
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/redis/src/redis-server /usr/local/redis/redis.conf
PrivateTmp=true
[Install]
WantedBy=multi-user.target
說明:
1. Description:描述服務
2. After:描述服務類別
3. [Service] :服務執行引數的設定
4. Type=forking:是後臺執行的形式
5. ExecStart為:服務的具體執行命令
6. ExecReload:重啟命令
7. ExecStop:停止命令
8. PrivateTmp=True:給服務分配獨立的臨時空間
9. 注意: [Service]的啟動、重啟、停止命令全部要求使用絕對路徑
[Install]執行級別下服務安裝的相關設定,可設定為多使用者,即系統執行級別為3,重啟和停止命令也可以不設定
#開啟MongoDB服務:
systemctl start Redis.service
#停止MongoDB服務:
systemctl stop Redis.service
#加入開機自啟:
systemctl enable Redis.service
相關文章
- Ubuntu-給新增使用者新增root許可權Ubuntu
- Centos 7 redis、tomcat、Spring Boot新增開機自啟服務CentOSRedisTomcatSpring Boot
- Jenkins搭建 - 新增使用者許可權Jenkins
- EMQX Cloud 更新:新增 Redis 和 JWT 外部認證授權MQCloudRedisJWT
- 給非 root 使用者新增 docker 使用許可權Docker
- linux給使用者新增sudo許可權Linux
- linux為使用者新增sudo許可權Linux
- CentOS7安裝RedisCentOSRedis
- Oracle檢視許可權Oracle
- Oracle檢視使用者許可權Oracle
- 檢視oracle 使用者許可權Oracle
- 配置Nginx/Redis開機自啟NginxRedis
- mysql之許可權驗證MySql
- linux新增使用者、使用者組、許可權Linux
- Redis工具視覺化工具Redis Desktop Manager(附安裝包)Redis視覺化
- windows下redis設定redis開機自啟動WindowsRedis
- mysql8.0新增使用者,並指定許可權MySql
- mysql 新增、刪除使用者和許可權分配MySql
- Linux給普通使用者新增ssh許可權Linux
- Linux為普通使用者新增sudo許可權Linux
- MySQL 給使用者新增 ALTER VIEW 的許可權MySqlView
- 【framework】framework中為systemserver新增許可權FrameworkServer
- Android property屬性許可權新增Android
- Linux 新增開機自啟動Linux
- 如何檢視postgresql使用者許可權SQL
- centos7 安裝redis和redis擴充套件CentOSRedis套件
- 小知識:軟體開發的許可權控制和許可權驗證
- 技術乾貨實戰(3)- CentOS7 下 Redis6 安裝與配置教程(Redis開機啟動)CentOSRedis
- redis:新增redis到服務列表Redis
- 如何用 Vue 實現前端許可權控制(路由許可權 + 檢視許可權 + 請求許可權)Vue前端路由
- Fake許可權驗證小例子
- linux新增使用者,並賦予root許可權Linux
- 協同平臺檢視許可權開啟業務物件提示"當前使用者沒有許可權!請檢查使用者[BOS設計器]的[編輯]許可權與應用的編輯許可權!"物件
- ASP.NET MVC許可權驗證 封裝類ASP.NETMVC封裝
- 程式碼批量新增ACL管理員許可權
- android framework中新增自定義許可權AndroidFramework
- centos7 安裝 redis-5.0.3CentOSRedis
- VIM在CentOS7上的無root許可權安裝CentOS