Question: I can not use chkconfig tools in Ubuntu 12.10 It's a very useful tools to configure the service to autostart or not. Why is it no longer available? Answer: sysv-rc-conf is an alternate option for Ubuntu. The usage is almost the same. To ins…
Chkcofig不再适用于Ubuntu系统,可用类似的软件sysv-rc-conf进行替换: Chkconfig is no longer available in Ubuntu. Chkconfig is a script. You can download it from here. sudo apt-get install sysv-rc-conf sysv-rc-conf --list xxxx 当然也可以 alias chkconfig=sysv-rc-conf chkconfig -…
The command chkconfig is no longer available in Ubuntu.The equivalent command to chkconfig is update-rc.d.This command nearly supports all the new versions of ubuntu. The similar commands are update-rc.d <service> defaults update-rc.d <service>…
/etc/init.d 是 /etc/rc.d/init.d 的软链接(soft link). [root@asus ~]# ll /etc/init.d lrwxrwxrwx. 1 root root 11 8月  28 05:12 /etc/init.d -> rc.d/init.d   都是用来放服务脚本的,当Linux启动时,会寻找这些目录中的服务脚本,并根据脚本的run level确定不同的启动级别. 在制作服务脚本的过程中,使用了Linux的两个版本,CentOS和Ubuntu,需要…
 Jsvc安装 一.下载安装包,地址如下: http://commons.apache.org/proper/commonsdaemon/download_daemon.cgi 二.安装步骤,参考链接 http://commons.apache.org/proper/commons-daemon/jsvc.html 1. 解压文件commons-daemon-1.0.15-src.tar.gz,进入到目录commons-daemon-1.0.15-src/src/native/unix 2.安装…
Linux下开启/关闭防火墙命令  1) 永久性生效,重启后不会复原 开启:chkconfigiptables on 关闭:chkconfigiptables off 2) 即时生效,重启后复原 开启: service iptables start 关闭: service iptables stop 需要说明的是对于Linux下的其它服务都可以用以上命令执行开启和关闭操作. Centos下防火墙配置及关闭 执行”setup”命令启动文字模式配置实用程序,在”选择一种工具”中选择”防火墙配置”,然…
使用chkconfig命令 修改tomcat/bin/startup.sh,在开头的地方添加如下内容 #chkconfig: #description:tomcat auto start #processname: tomcat 结果如下图: 添加链接,执行如下命令 ln -s xxx/tomcat/bin/startup.sh /etc/rc.d/init.d/tomcat 添加可执行权限 /etc/rc.d/init.d/tomcat 添加开机启动服务 chkconfig --add tom…
应用场景:在linux系统上进行项目开发,在部署java项目时,常用方法就是写一个shell脚本,但当服务器重启了,经常会忘了启动shell脚本了.所以我们需要把自己的应用变成linux的服务,当服务器启动的时候就自行启动自己的应用.使用JSVC就能够实现上面的功能. 在linux上以服务的方式启动java程序步骤: 注:其实bin目录下并没有jsvc.tar.gz这个文件,需要自己下载.解压完之后呢,执行sh support/buildconf.sh 命令,提示autoconf:not fou…
参考文献: tomcat注册成windows服务 背景 当前项目需要运行两个Tomcat,每次启动系统以后都要手动进入到tomcat目录执行startup.bat,非常烦,所以想将这两个tomcat直接注册为服务,这样开机就能够启动.这两个Tomcat安装路径如下: D:\app\Tomcat1 D:\app\Tomcat2 主要tomcat为windows服务的方法是先进入到tomcat的bin如入下,然后输入: service.bat install '服务名' //如果服务名有空格隔开,则…
一.简单说明 /etc/init.d 是 /etc/rc.d/init.d 的软链接(soft link).可以通过 ll 命令查看. ls -ld /etc/init.d lrwxrwxrwx. root root Aug /etc/init.d -> rc.d/init.d 都是用来放服务脚本的,当Linux启动时,会寻找这些目录中的服务脚本,并根据脚本的run level确定不同的启动级别. 在制作服务脚本的过程中,使用了Linux的两个版本,CentOS和Ubuntu,需要在两个版本中都…