CentOS 6.5 开机启动指定服务

gedit /etc/rc.d/rc.local 

#关闭防火墙
service iptables stop
#开启samba服务
service smb start
#开启ntopng 端口5000
service redis start
ntopng -w 5000
#开启snort

#开启snorby
时间: 2024-10-07 07:01:13

CentOS 6.5 开机启动指定服务的相关文章

CentOS设置程序开机启动程序/服务的方法(转)

注意:CentOS 6下基本没什么问题,CentOS 7估计不一定能行. 在CentOS系统下,主要有两种方法设置自己安装的程序开机启动. 1.把启动程序的命令添加到/etc/rc.d/rc.local文件中,比如下面的是设置开机启动httpd. #!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in

Ubuntu 16.04设置rc.local开机启动命令/脚本的方法(通过update-rc.d管理Ubuntu开机启动程序/服务)

注意: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

Centos7 设置Mongodb开机启动-自定义服务

一.官网下载 mongodb,解压到指定目录 本机mongodb目录为:/usr/context/mongodb/mongodb-3.2.10/ 二 .编写配置文件,主要指定数据库文件,日志文件,以及一些启动参数. (1).在mongodb下新建data文件夹,以及子文件夹db,logs, 在logs中新建mongodb.log日志文件,其中db文件夹用来存储数据库文件,logs用来存储日志文件 (2).在mongodb-3.2.10/bin/目录下新建mongodb.conf配置文件,内容如下

Centos7开机启动Seafile服务和Nginx服务

我们之前在Seafile服务器的基础上完成Openssl+Nginx反向代理8000端口部署.如今我们让seafile相关的服务能开机启动. 1.创建/usr/lib/systemd/system/seafile.service文件"注意ExecStart和ExecStop参数的路径",内容如下: #cat /usr/lib/systemd/system/seafile.service [Unit]Description=Seafile ServiceAfter=network.tar

centos 6.8 开机启动配置

查看系统开机启动项 chkconfig --list 把写好的启动脚本添加到目录/etc/rc.d/init.d/,然后使用命令chkconfig设置开机启动. chkconfig 功能说明:检查,设置系统的各种服务. 语法:chkconfig [--add][--del][--list][系统服务] 或 chkconfig [--level <等级代号>][系统服务][on/off/reset] --add 添加服务 --del 删除服务 --list 查看各服务启动状态 如: 将mysql

精简开机启动linux服务

命令的处理方法:1)ntsysv2) setup-system service3) 脚本一键完成处理 我们用脚本处理 开机我们需要启动一下4个服务crond -- 定时任务network -- 网络服务rsyslog --系统日志功能sshd --这个就是允许远程链接服务 chkconfig --list|grep "3:启用" 查看有哪些服务启动类似window下的msconfig for value in chkconfig --list|grep "3:启用"

linux开机启动smb服务

修改/etc/rc.local文件(增加红色部分) [[email protected] ~]# cat /etc/rc.local #!/bin/sh## This script will be executed *after* all the other init scripts.# You can put your own initialization stuff in here if you don't# want to do the full Sys V style init stuf

CentOS 5.X 开机启动流程

ubuntu12.04添加开机启动程序(开机启动svn服务)

环境:ubuntu12.04 在/etc/init.d目录建立一个脚本文件svnd.sh cd /etc/init.d touch svnd.sh chmod +x svnd.sh vim svnd.sh 输入如下内容: #!/bin/bash #svnserve startup svnserve -d -r /ysh/svn 更新修改权限: update-rc.d svnd.sh defaults