I installed redis today and some errors occurred that had not occurred before. I will record them here. 1. Install redis and errors First download redis, the official download address page: https://redis.io/download We choose the stable version 6.0.1 here The normal installation steps are as follows: [root@localhost ~]# yum install gcc [root@localhost ~]# cd /usr/local [root@localhost local]# wget http://download.redis.io/releases/redis-6.0.1.tar.gz [root@localhost local]# tar -xvf redis-6.0.1.tar.gz [root@localhost local]# cd /usr/local/redis-6.0.1/ [root@localhost redis-6.0.1]# make PREFIX=/usr/local/redis install The following error is reported here
Solution: Upgrade the gcc version
Then compile: [root@mmjredis redis-6.0.1]# make PREFIX=/usr/local/redis install If the installation is successful, the following message will appear: Hint: It's a good idea to run 'make test' 😉 Let's execute make test to test it. The following error occurred:
Solution: [root@localhost redis-6.0.1]# yum install tcl[root@localhost redis-6.0.1]# make test The test succeeded as follows: Run redis first and try it: [root@localhost redis-6.0.1]# /usr/local/redis-6.0.1/src/redis-server /usr/local/redis-6.0.1/redis.conf 32101:C 13 May 2020 17:01:48.248 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 32101:C 13 May 2020 17:01:48.248 # Redis version=6.0.1, bits=64, commit=00000000, modified=0, pid=32101, just started 32101:C 13 May 2020 17:01:48.248 # Configuration loaded 32101:M 13 May 2020 17:01:48.249 * Increased maximum number of open files to 10032 (it was originally set to 1024). _._ _.-``__ ''-._ _.-`` `. `_. ''-._ Redis 6.0.1 (00000000/0) 64 bit .-`` .-```. ```\/ _.,_ ''-._ ( ' , .-` | `, ) Running in standalone mode |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 | `-._ `._ / _.-' | PID: 32101 `-._ `-._ `-./ _.-' _.-' |`-._`-._ `-.__.-' _.-'_.-'| | `-._`-._ _.-'_.-' | http://redis.io `-._ `-._`-.__.-'_.-' _.-' |`-._`-._ `-.__.-' _.-'_.-'| | `-._`-._ _.-'_.-' | `-._ `-._`-.__.-'_.-' _.-' `-._ `-.__.-' _.-' `-._ _.-' `-.__.-' 2. Background startup Simple modification of background startup [root@localhost redis-6.0.1]# vim redis.conf Change daemonize no to daemonize yes Run it again
The background operation is successful, let's check it and terminate the program
What we use here is to start redis with background systemctl First, add redis to the service service vim /lib/systemd/system/redis.service Write
Note the path problem, and the path of PIDFile corresponds to the PIDFile in redis-6.0.1/src/redis-server wq save and exit Then run the following
If there is a problem with startup, you can view the log and fix it through systemctl status redis As shown in the figure, it has been successfully started The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Mysql accidental deletion of data solution and kill statement principle
>>: JS implements user registration interface function
1. Select Edit → Virtual Network Editor in the me...
This article example shares the specific code of ...
This article records the installation and configu...
Edit docker-compose.yml and add the following con...
1. Introduction WHMCS provides an all-in-one solu...
Linux task management - background running and te...
Table of contents Preface 1. Install scp2 2. Conf...
Overview In a database, an index is used to speed...
The description of echo in the Linux help documen...
Table of contents 1. The direction of this in the...
FTP is mainly used for file transfer, and is gene...
Based on Vue and native javascript encapsulation,...
First download the dependencies yarn add sass-loa...
The method found on the Internet works The footer ...
This article shares the installation steps of MyS...