-->

DEVOPSZONES

  • Recent blogs

    How to use sysvinit scripts in Systemd Of Apache SOLR

    How to use sysvinit scripts in Systemd?




    Solution:


    1. Create init.d script in /etc/init.d/solr
    2. Make it Executable: chmod +x /etc/init.d/solr

    3. Do following given steps.

    systemctl daemon-reload
    systemctl enable solr
    systemctl start solr

    4. Check the Status

    systemctl status solr

    No comments