Table of Contents
Linux设置redis开机自启具体方法
Linux有哪些版本
Home Database Redis How to set redis to start automatically at boot under Linux

How to set redis to start automatically at boot under Linux

Jun 02, 2023 pm 03:52 PM
linux redis

Linux设置redis开机自启具体方法

1、设置redis.conf中daemonize为yes,确保守护进程开启。

2、编写开机自启动脚本

 vi /etc/init.d/redis
Copy after login

看清楚目录,是在 etc/init.d下新建redis文件 ,为什么,因为 linux开机会 执行这个目录中的文件

编写脚本,本人不会,但网上有人会,拿来就好

 # chkconfig: 2345 10 90  
 
 # description: Start and Stop redis  
 
   
 
 PATH=/usr/local/bin:/sbin:/usr/bin:/bin   #找到本机安装redis后,存放redis命令的目录  
 
 REDISPORT=6379                            #redis的默认端口, 要和下文中的redis.conf中一致
 
 EXEC=/usr/redisbin/redis-server           #redis服务端的命令
 
 REDIS_CLI=/usr/redisbin/redis-cli         #redis客户端的命令  这两个一般都在 PATH目录下
 
 PIDFILE=/var/run/redis.pid                #reids的进程文件生成的位置
 
 CONF="/usr/redisbin/redis.conf"           #redis的配置文件所在的目录
 
 #AUTH="1234"  这句没什么用可以不要  
 
 
 
 case "$1" in  
 
         start)  
 
                 if [ -f $PIDFILE ]  
 
                 then  
 
                         echo "$PIDFILE exists, process is already running or crashed."  
 
                 else  
 
                         echo "Starting Redis server..."  
 
                         $EXEC $CONF  
 
                 fi  
 
                 if [ "$?"="0" ]  
 
                 then  
 
                         echo "Redis is running..."  
 
                 fi  
 
                 ;;  
 
         stop)  
 
                 if [ ! -f $PIDFILE ]  
 
                 then  
 
                         echo "$PIDFILE exists, process is not running."  
 
                 else  
 
                         PID=$(cat $PIDFILE)  
 
                         echo "Stopping..."  
 
                        $REDIS_CLI -p $REDISPORT  SHUTDOWN    
 
                         sleep 2  
 
                        while [ -x $PIDFILE ]  
 
                        do  
 
                                 echo "Waiting for Redis to shutdown..."  
 
                                sleep 1  
 
                         done  
 
                         echo "Redis stopped"  
 
                 fi  
 
                 ;;  
 
         restart|force-reload)  
 
                 ${0} stop  
 
                 ${0} start  
 
                 ;;  
 
         *)  
 
                echo "Usage: /etc/init.d/redis {start|stop|restart|force-reload}" >&2  
 
                 exit 1  
 
 esac
Copy after login

编写完成,保存

修改文件的权限为 可执行的  chmod 775 /etc/init.d/redis

测试一下redis 的启动

/etc/init.d/redis start

启动成功

设置自动启动

chkconfig redis on

此时就会自动启动了,系统会给你一些提示,创建了  XXX.service文件

如下图

How to set redis to start automatically at boot under Linux

这里要说一下 usr/lib/systemd/system/ 这个目录

刚开始我一直不知道 我的nginx mysql php 是怎么开机自动启动的 后来我进入了这个目录看了,才知道,原来它们都在这里,网上说这里linux centos 新的启动方式,我不怎么了解,但是我知道了,这里的 文件都是可以开机自启的服务

所以我们要想知道 本机开机都自启了什么服务 可以来这个文件夹下看一下。

Linux有哪些版本

Linux的版本有:Deepin、UbuntuKylin、Manjaro、LinuxMint、Ubuntu等版本。其中Deepin是国内发展最好的Linux发行版之一;UbuntuKylin是基于Ubuntu的衍生发行版;Manjaro是基于Arch的Linux发行版;LinuxMint默认的Cinnamon桌面类似Windows XP简单易用;Ubuntu则是以桌面应用为主的Linux操作系统。

The above is the detailed content of How to set redis to start automatically at boot under Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Apr 01, 2025 pm 03:06 PM

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Compilation and installation of Redis on Apple M1 chip Mac failed. How to troubleshoot PHP7.3 compilation errors? Compilation and installation of Redis on Apple M1 chip Mac failed. How to troubleshoot PHP7.3 compilation errors? Mar 31, 2025 pm 11:39 PM

Problems and solutions encountered when compiling and installing Redis on Apple M1 chip Mac, many users may...

Which country is the Nexo exchange from? Where is it? A comprehensive introduction to the Nexo exchange Which country is the Nexo exchange from? Where is it? A comprehensive introduction to the Nexo exchange Mar 05, 2025 pm 05:09 PM

Nexo Exchange: Swiss cryptocurrency lending platform In-depth analysis Nexo is a platform that provides cryptocurrency lending services, supporting the mortgage and lending of more than 40 crypto assets, fiat currencies and stablecoins. It dominates the European and American markets and is committed to improving the efficiency, security and compliance of the platform. Many investors want to know where the Nexo exchange is registered, and the answer is: Switzerland. Nexo was founded in 2018 by Swiss fintech company Credissimo. Nexo Exchange Geographical Location and Regulation: Nexo is headquartered in Zug, Switzerland, a well-known cryptocurrency-friendly region. The platform actively cooperates with the supervision of various governments and has been in the US Financial Crime Law Enforcement Network (FinCEN) and Canadian Finance

How to trigger the background asynchronous batch sending of SMS messages in the foreground without affecting the user experience? How to trigger the background asynchronous batch sending of SMS messages in the foreground without affecting the user experience? Mar 31, 2025 pm 11:45 PM

How to implement the function of triggering the background asynchronous batch sending of SMS messages in the foreground? In some application scenarios, users need to trigger batch short in the background through foreground operations...

How to solve the permissions problem encountered when viewing Python version in Linux terminal? How to solve the permissions problem encountered when viewing Python version in Linux terminal? Apr 01, 2025 pm 05:09 PM

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

Major update of Pi Coin: Pi Bank is coming! Major update of Pi Coin: Pi Bank is coming! Mar 03, 2025 pm 06:18 PM

PiNetwork is about to launch PiBank, a revolutionary mobile banking platform! PiNetwork today released a major update on Elmahrosa (Face) PIMISRBank, referred to as PiBank, which perfectly integrates traditional banking services with PiNetwork cryptocurrency functions to realize the atomic exchange of fiat currencies and cryptocurrencies (supports the swap between fiat currencies such as the US dollar, euro, and Indonesian rupiah with cryptocurrencies such as PiCoin, USDT, and USDC). What is the charm of PiBank? Let's find out! PiBank's main functions: One-stop management of bank accounts and cryptocurrency assets. Support real-time transactions and adopt biospecies

See all articles