".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })
VirMach是一家性价比非常高的[美国VPS](/#)提供商,成立于2014年。这几年发展的很不错,势头正猛,在国内外的风评都不错。今天给大家介绍的是一个快速教程,向您展示如何通过crontab设置脚本或应用程序在开机时自动启动。
![](https://www.idcspy.com/wp-content/uploads/2020/06/virmach.jpg)
这个教程需要有可以通过命令行启动的应用程序/脚本。在这种情况下,我们要确保以下文件夹中的脚本“ tutorial.sh”:/ root / tutorial /在重启时可以自动重启,而无需人工干预。
第一步
通过SSH连接到将要运行脚本的VPS。
第二步
然后,使用以下命令:
crontab -e
第三步
这将打开一个名为“ crontab”的文本文件。然后,将以下行(更改成与您的应用程序匹配)添加到文件末尾。
@reboot /bin/bash /root/tutorial/tutorial.sh
第四步
退出编辑器。确保crontab编辑器验证了新的crontab,并且没有错误。
最后一步
重新启动服务器以验证脚本是否自动启动。
以上就是[VirMach](/#)通过脚本实现在Linux上自动重启程序的方法。有需要的朋友可以自行尝试一下。
更多教程:[VirMach教程](/#)"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/107164.html