Solr6.3 Getting Started 设置Solr开机启动
在虚拟机中安装Solr6.3后,每次开机都要执行一次/home/solr/solr-6.3.0/bin/solr start觉得好麻烦,把Solr设置成开机启动岂不更好?Centos如何设置开机启动?参见CentOS设置程序开机启动编辑/etc/rc.d/rc.local文件第一种方式:#使用root用户强制启动Solr添加home/solr/sol
在虚拟机中安装Solr6.3后,每次开机都要执行一次
/home/solr/solr-6.3.0/bin/solr start
觉得好麻烦,把Solr设置成开机启动岂不更好?
Centos如何设置开机启动?参见CentOS设置程序开机启动
编辑/etc/rc.d/rc.local文件
第一种方式:
#使用root用户强制启动Solr
添加
home/solr/solr-6.3.0/bin/solr start -force
[root@c1 ~]# vi /etc/rc.d/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
home/solr/solr-6.3.0/bin/solr start -force
第二种方式:
#使用非root用户启动Solr(以用户solr为例)
添加
su solr -c "home/solr/solr-6.3.0/bin/solr start"
[root@c1 ~]# vi /etc/rc.d/rc.local
#!/bin/sh#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
su solr -c "home/solr/solr-6.3.0/bin/solr start"
更多推荐
所有评论(0)