jupyter自启动脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jupyter自启动脚本相关的知识,希望对你有一定的参考价值。
参考技术A 作用:Linux系统启动并自动运行jupyter服务,可查看运行状态、启动或停止。在/etc/init.d/下创建一个脚本文件,名称自拟。
#! /bin/bash
# jupyter Bring up/down/#
# chkconfig: 2345 10 90
# description: jupyter controller
[ -f /etc/init.d/functions ] && . /etc/init.d/functions
case $1 in
start)
jus=$(netstat -luntp| grep 8888 |grep -v grep|awk 'print $7'|awk -F "/" 'print $1'|wc -l)
if [ $jus -eq 1 ];then
echo -e "\njupyter is already run\n"
exit 0
else
su - python -c "cd /tmp/test1 && jupyter notebook --ip=0.0.0.0 &"
action "jupyter >>>\t$1 " /bin/true
fi
;;
stop)
pkill jupyter && action "jupyter >>>\t$1 " /bin/true
;;
status)
stat=$(netstat -luntp|grep 8888|wc -l)
if [ $stat -eq 1 ];then
echo -e "\njupyter already run\n"
fi
;;
*)
echo "please use [start|stop|status]"
exit 0
esac
最后将该脚本加入到系统启动服务。linux内核3.x与linux内核2.x服务启动方式不同,需注意。
开机自启脚本
参考技术A电脑或服务器开机都会有一些需要启动的程序,每次都需要一个一个点击启动,耗时耗力,还有可能漏启动。所以添加一个开机自启的脚本,脚本中帮我们打开需要启动的程序,如Snipaste、FRP客户端等。
修改 /etc/rc.local 文件,添加启动服务的命令
先写好启动脚本或者启动命令,事先保证启动脚本或命令能正常启动服务,然后将脚本路径或启动命令添加至/etc/rc.local文件中,这个方法适合比较简单的shell脚本。
创建脚本myservice,写入
将脚本放到/etc/init.d或/etc/rc.d/init.d目录下,并添加脚本为服务
输入如下命令调用myservice服务,然后查看/tmp下的test.txt文件发现已经写入了日期。
将myservice服务设置为开机自启
查看服务是否开机启动
重启服务器,就会执行 systemctl start myservice 命令和 rc.local 中的命令。
编辑脚本
根据实际情况修改Service中的User和ExecStart的属性,然后将将本放到 /usr/lib/systemd/system/node_exporter.service 路径下。
设为开机自启动
systemctl enable node_exporter.service
会将文件路由到 /etc/systemd/system/multi-user.target.wants/ 目录下
可以通过如下命令查看日志信息
journalctl -u node_exporter -n 10 -f
以上是关于jupyter自启动脚本的主要内容,如果未能解决你的问题,请参考以下文章