您的位置:首页 > 技术中心 > 运维 >

Linux service无法使用系统环境变量问题如何解决

时间:2023-05-17 06:38

    Linux service无法使用系统环境变量

    详细描述

    之前在做一个mysql多实例安装时,安装成功,linux也能成功启动;但是将support-files/mysqld_multi.server移动到/etc/init.d/目录下并设置开机启动(chkconfig xxx on)失败;

    问题探索

    发现了问题,开始解决,发现service xxx start 无法启动mysql的多实例,但是mysqld_multi start就可以使用;然后经过各种尝试,发现在普通环境下可以打印出/etc/profile设置的mysql环境变量,但是在shell做成的service中无法打印该mysql环境变量;

    我的/etc/frofile文件:

    export PATH=/usr/local/mysql/bin:$PATH

    执行:可以看到是有设置的mysql环境变量的

    [root@localhost init.d]# echo $PATH/usr/local/mysql/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin

    然后我们定义一个system V的脚本

    [root@localhost init.d]# vi /etc/init.d/mysqlmul#!/bin/bash#chkconfig: - 75 15#description: test

    赋予权限并设置为service

    [root@localhost init.d]#chmod +x /etc/init.d/mysqlmul[root@localhost init.d]#chkconfig --add mysqlmul

    执行service:结果可以看到是没有mysql环境变量的

    [root@localhost init.d]# service mysqlmul start/sbin:/usr/sbin:/bin:/usr/bin

    解决办法

    1、在/etc/init.d/xxx刚才设置的service中添加export PATH=/usr/local/mysql/bin:$PATH

    注意:

    当把一个shell脚本放入到service中时,需要设定好PATH等环境。

    service文件中环境变量文件的使用

    测试准备

    c++测试程序

    LogTest.cpp内容如下:

    // 测试代码#include <stdio.h>#include <iostream>using namespace std;int main(int argc, const char* argv[]){    int size = 0;    // 解析传入参数(argc和argv),代码略    // ...    	cout << size <<endl;    	while(1);	return 0;}

    service文件

    LogTest.service文件

    [Unit]Description=LogTestAfter=network.target [Service]Type=simpleEnvironmentFile=-/etc/sysconfig/LogTestExecStart=/usr/local/MyTest/LogTest -s ${TESTSIZE}ExecStop=/bin/kill -s QUIT $MAINPIDStandardOutput=syslogStandardError=syslogSyslogIdentifier=LogTest[Install]WantedBy=multi-user.target

    环境变量文件

    环境变量文件LogTest放在/etc/sysconfig/目录下。

    # 环境变量文件,可根据需要新增TESTSIZE=10

    测试流程

    1)编译c++测试程序,并将测试程序拷贝至/usr/local/MyTest/目录下。

    cp LogTest /usr/local/MyTest/

    2)日志配置

    关于日志相关配置,可查看https://blog.csdn.net/www_dong/article/details/128053496。

    3)service文件加载

    # 文件拷贝cp LogTest.service /usr/lib/systemd/system# 文件加载systemctl daemon-reload# 程序启动systemctl start LogTest# 查看进程是否启动成功ps -aux | grep LogTest

    4)查看LogTest程序日志

    # 进入日志所在目录cd /var/log# 查看LogTest.logcat LogTest.log

    说明: 日志打印出10,说明整个流程成功

    以上就是Linux service无法使用系统环境变量问题如何解决的详细内容,更多请关注Gxl网其它相关文章!

    热门排行

    今日推荐

    热门手游