Ubuntu开机启动svn】的更多相关文章

一.创建脚本 $cd /etc/init.d/$sudo vim svnserve 内容如下#! /bin/shsudo svnserve -d -r /home/svn 二.脚本权限设置 sudo chmod +x svnserve 三.将脚本加入启动顺序 sudo update-rc.d svnserve defaults Adding system startup for /etc/init.d/svnserve .../etc/rc0.d/K20svnserve -> ../init.d…
注意:rc.local脚本里面启动的用户默认为root权限. 一.rc.local脚本 rc.local脚本是一个Ubuntu开机后会自动执行的脚本,我们可以在该脚本内添加命令行指令.该脚本位于/etc/路径下,需要root权限才能修改. 该脚本具体格式如下: #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the scrip…
1.编译源码,生成可执行文件: 2.将生成的可执行文件拷贝到 /user/local/bin目录下,若没有x权限请加上: 3.将安装包中的 redis.conf配置文件移到/etc/redis.conf;并设置相应的配置值: daemonize yes //将该属性设为yes,默认非后台启动 pidfile /var/run/redis.pid //将pid文件设为此值 4.编写启动脚本:redis-server:内容可如下所示: #! /bin/sh PATH=/usr/local/sbin:…
1.在 vi /etc/rc.local文件下添加以下: /home/svn/subversion-1.8.18/bin/svnserve -d --listen-port 3690 -r /home/svn/product 说明: /home/svn/subversion-1.8.18/bin/svnserve 为svn安装路径 /home/svn/product 为svn库路径 -listen-port 3690 启动svn端口配置 如果不设置,使用默认端口(默认端口为3690),如下: /…
1.在/etc/init.d中添加启停脚本ros_daemon.bash: #!/bin/bash ### BEGIN INIT INFO # Provides: ros_daemon.bash # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start daemo…
最近想在Ubuntu的基础上,再在硬盘的一个分区安装Windows,其中有次不小心,在安装windows的时候,删除了一个分区,造成下次启动Ubuntu系统出现 grub rescue 下面是我的修复方法,参考了http://www.linuxidc.com/Linux/2012-07/65249.htm,有些修改 先使用ls命令,找到Ubuntu的安装在哪个分区,ls会罗列所有的磁盘分区信息,比方说: grub rescue>ls (hd0),(hd0,msdos3),(hd0,msdos2)…
方法一:--------------------------------------------------1. 在/etc/init.d/下放置启动脚本,比如postgresqlroot@ubuntu:/etc/init.d# cat postgresql #!/bin/shset -e ### BEGIN INIT INFO# Provides: postgresql# Required-Start: $local_fs $remote_fs $network $time# Required…
1.创建shell启动脚本test 2.将启动脚本复制到 /etc/init.d 目录下 3.设置脚本文件权限 sudo chmod 755 /etc/init.d/test 4.设置脚本启动 sudo update-rc.d test defaults 95   //95 为启动优先级,越小优先级越高 // 执行后输出信息 update-rc.d: warning: /etc/init.d/test missing LSB informationupdate-rc.d: see <http:/…
/rc.local  (ran as root) https://unix.stackexchange.com/questions/210939/what-user-runs-the-commands-defined-in-etc-rc-local crontab -e (ran as login user) https://askubuntu.com/questions/814/how-to-run-scripts-on-start-up https://serverfault.com/que…
解决方案: 1.将/etc/rc.local的命令改成更加兼容的模式,将"#!/bin/sh"改为"#!/bin/bash" 2.将/bin/sh重新链接到/bin/bash,方法如下: 方法一:终端执行 sudo dpkg-reconfigure dash,然后选择 no. 方法二:重新进行软链接,执行以下命令: sudo rm /bin/shsudo ln -s /bin/bash /bin/sh 使用方法 1 :将"#!/bin/sh"改为…
Ubuntu 16.04设置rc.local开机启动命令/脚本的方法       Ubuntu 16.04设置rc.local开机启动命令/脚本的方法(通过update-rc.d管理Ubuntu开机启动程序/服务) 注意:rc.local脚本里面启动的用户默认为root权限. 一.rc.local脚本 rc.local脚本是一个Ubuntu开机后会自动执行的脚本,我们可以在该脚本内添加命令行指令.该脚本位于/etc/路径下,需要root权限才能修改. 该脚本具体格式如下: #!/bin/sh -…
原文:http://blog.csdn.net/dante_k7/article/details/7213151 在ubuntu10.04之前的版本都是使用chkconfig来进行管理,而在之后的版本就没有了,如果想继续使用chkconfig命令,只好自己apt-get install下了. [plain] view plaincopy   sudo apt-get install chkconfig 在这里我给大家介绍另两个命令来配置ubuntu的启动服务,sysv-rc-conf和updat…
开机自启动,将要执行的语句写入/etc/rc.local. #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this…
关于Ubuntu运行级别.开机启动脚本的说明 目录简介 1.1介绍Ubuntu下面的自启动脚本目录 1.2 Linux操作系统运行级别的概念 1.3关于操作系统自启脚本的启动顺序 1.4    Linux操作系统运行级别的概念 1.5 自启和关闭自启服务 1.6 对于init [number]命令 Content: 1.1 介绍Ubuntu操作系统关于自启动脚本的几个目录 其中rc0.d~rc.6.d文件夹下分别对应的是操作系统0-6级运行的状态下需要执行的脚本.此外还有rcS.d文件夹和rc.…
lampp 在linux ubuntu下自动开机启动 lampp在linux下是不会自动启动的.需要手工处理.如下: 假如,你的lampp安装在 /opt/lampp 目录下,那么可以如下处理: 1. sudo vim /etc/init.d/lampp.sh 加入以下内容: #!/bin/sh /opt/lampp/lampp start 保存 2. chmode 755 /etc/init.d/lampp.sh 3. sudo vim /etc/init.d/rc.local 在最后加入以下…
直接将启动程序放在rc.local即可.但是如果自动启动的程序奔溃后,会返回到ubuntu的unity桌面系统. 我遇到的问题是程序还有调用 xset 去定时关闭屏幕.在桌面启动后调用没问题.如果rc.local自动启动,则报 Unable to open display" 错误,调试了2天也不行.后来找到用 ebvtool,见上一篇博客. 另外一篇博客中的详细解释: 一.前言 无论你想要在ubuntu 12.04(11.10适用)开机启动图形程序,或者非图形程序,相信这篇文章能帮上大忙. 我将…
Ubuntu下关闭apache和mysql的开机启动 sudo apt-get install sysv-rc-conf sudo sysv-rc-conf sudo vi /etc/init/mysql.conf Ubuntu运行级别的总结 一般的linux分7个级别: 0代表关机(halt) 1级别是单用户模式(single) 2级别是多用户级别,这个是默认级别 ,,5未定义,可以提供给用户定义其他多用户级别 6代表重启(restart) S级别系统内部定义的单用户恢复模式. 相关问题: 按…
我们要让openerp开机运行起来. 第一步,先进入系统目录: cd /etc/init.d 第二步,创建文件.命名为openerp-server sudo vi openepr-server 第三步:在openerp-server文件中添加下面内容: #!/bin/sh ### BEGIN INIT INFO# Provides: openerp-server# Required-Start: $remote_fs $syslog# Required-Stop: $remote_fs $sys…
在Ubuntu下用sysv-rc-conf命令,它是chkconfig的替代命令,而使用方法与chkconfig基本相同. 安装: sudo apt-get install sysv-rc-conf 配置nginx开机启动 sudo sysv-rc-conf nginx on 检查nginx在各运行级别下是否为开机启动 sysv-rc-conf --list nginx 一般在2~5运行级别下为开机启动就行了…
转自:http://jingyan.baidu.com/article/ed15cb1b05d0311be369818a.html 对 于安装Ubuntu系统和windows系统(windows xp.windows Vista.windows 7等)的电脑,一般安装完Ubuntu系统后,开机启动项默认为Ubuntu,小编就来分享如何将开机启动项改为windows系统,就不用去按键选择 了. 方法/步骤 如图所示现在的开机启动项为Ubuntu系统,这里我们选择Ubuntu系统启动,进入Ubunt…
1.检查是否已安装 rpm -qa subversion 如果要卸载旧版本: yum remove subversion 2.安装 yum install subversion PS:yum install httpd httpd-devel subversion mod_dav_svn mod_auth_mysql(这是安装配合Apache的模块,我暂时还没做,做了再补上,你可以只装subversion,多装了也无所谓)   #确认是否已安装svn模块[root@localhost ~]# c…
原文:windows下架设SVN服务器并设置开机启动 1.安装SVN服务器,到http://subversion.apache.org/packages.html上下载windows版的SVN,并安装,在命令行下运行svn命令,如下所以,则svn服务器安装成功. C:\Documents and Settings\Administrator>svn 使用“svn help”得到用法.  2.创建仓库Repository:运行命令 C:\Documents and Settings\Adminis…
安装完svn服务器后虽然好用但是因为经常重启Linux服务器,每次重启完就要去手动启动svn服务器,很是麻烦,于是在网上找了一些方法后,自己把svn服务器设置成开机启动 步骤一:安装svn服务器: http://www.cnblogs.com/puloieswind/p/5856326.html 我是借鉴这位大哥的方法,成功安装并运行svn服务器 1. 安装SVN服务器: 检查是否已安装 # rpm -qa subversion 安装SVN服务器 # yum install httpd http…
Win10中安装Ubuntu子系统后默认是没有开启SSH服务的,需要手动配置开启, 1.先通过 bash 进入子系统修改配置 vi /etc/ssh/sshd_config  备注 输入i 表示键入, 按键(ESC)外加 冒号(:WQ) 退出保存 如果文件不存在说明尚未安装,则执行安装 apt-get install openssh-server 2.继续修改配置,下面以密码登录的配置作说明: Port = 22 # 默认是22端口,如果和windows端口冲突或你想换成其他的否则不用动#Lis…
需求:公司卡片机容量太小,只有100G,由于使用的人比较的多,开机使用后有时候就会出现磁盘空间占满数据写不进去的情况,影响工作进度,而且每次使用完都得关掉卡片机,所以就有必要写个清理磁盘的脚本,当卡片机开机启动后执行脚本,如果磁盘达到设置的阈值,就进行空间的清理. rc.local脚本 rc.local脚本是一个ubuntu开机后会自动执行的脚本,我们可以在该脚本内添加命令行指令.该脚本位于/etc/路径下,需要root权限才能修改. 该脚本具体格式如下: #!/bin/sh -e # # rc…
以前在windows上安装svn服务器,用的是VisualSVN-Server用起来还不错,但只能用在windows,在linux上部署使用是 subversion,具体说明如下 参考原文:http://blog.csdn.net/fancy1993/article/details/52911400 1. 检查并安装 检测是否已安装,如果已安装,则会显示版本信息 #rpm -qa subversion 如果要卸载旧版本: #yum remove subversion 安装 #yum instal…
rc.local脚本 rc.local脚本是一个ubuntu开机后会自动执行的脚本,我们可以在该脚本内添加命令行指令.该脚本位于/etc/路径下,需要root权限才能修改. 该脚本具体格式如下: #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success o…
svnserve -d -r /home/svn/repo --listen-port=3690,svn仓库地址,及监听端口 vi svn_startup.sh,位置在/root下面编辑一个启动脚本,内容如下: #!/bin/bash /usr/bin/svnserve -d -r /home/svn/repo --listen-port=3690 然后设置chmod 777 /root/svn_startup.sh 然后在设置该脚本为开机启动 vi /etc/rc.d/rc.local,将上述…
ubuntu 18.04 不再使用 inited 管理系统,改用 systemd systemd 默认读取 /etc/systemd/system 下的文件,该目录下的文件会链接/lib/systemd/system/下的文件. 执行 ls /lib/systemd/system 你可以看到有很多启动脚本,其中就有我们需要的 rc.local.service 打开脚本内容: [Unit] Description=/etc/rc.local Compatibility ConditionFileI…
在服务器(我的环境是centos6.5)上部署完svn之后,一般都希望每次重启的时候svn服务能够随着启动.上网搜索了一下,一般有两种做法: 一.启动脚本+/etc/rc.local启动 1. 在某个目录下写一个启动svn服务的脚本,譬如我在/root目录下增加一个svn.sh文件,内容如下: #!/bin/bash svnserve -d -r /root/.subversion/repos 2. 保存后加x权限: chmod u+x svn.sh 3. 在/root/svn.sh文件最后一行…