centos7 开机启动管理】的更多相关文章

systemd提供更优秀的框架以表示系统服务间的依赖关系实现系统初始化时服务的并行启动,同时达到降低Shell的系统开销的效果systemd的目标是:尽可能启动更少进程:尽可能将更多进程并行启动.systemd尽可能减少对shell脚本的依赖. systemd单位类型 (systemctl --type=单位类型,用来过滤单位):服务(service):管理着后台服务:挂载(mount)自动挂载(automount):用来挂载文件系统:目票(target):运行级别:套接字(socket):用来…
查看开机启动项 ls /etc/systemd/system/multi-user.target.wants/ 设置开机启动 systemctl enable mongodb.service…
debian开机启动管理(转文) linux下,services的启动.停止等通常是通过/etc/init.d的目录下的脚本来控制的.在启动或改变运行级别是在/etc/rcX.d中来搜索脚本.其中X是运行级别. 比如Apache2,安装完成后,默认或启动.比如我安装了vagrant的LMPA的box.需要禁止掉自启动,就需要禁止掉这个服务,然后在需要的时候使用 /usr/sbin/apachectl start #/etc/init.d/apache2 start 在debian中使用 upda…
常用命令  使某服务自动启动 systemctl enable httpd.service 使某服务不自动启动 systemctl disable httpd.service 检查服务状态 systemctl status httpd.service (服务详细信息) systemctl is-active httpd.service (仅显示是否 Active) 显示所有已启动的服务 systemctl list-units --type=service 启动某服务 systemctl sta…
在百度上可以找到好几种Linux开机启动各种服务的方法,在这里我写的是自己喜欢的方式. 博主是一个不怎么记事的人,有些配置在系统的目录下,配置了一次后就忘了,再也不想去系统的目录下找各种奇奇怪怪的目录和名字.就比如说这个开机启动,在配置完了后的某一天,想要在加一个启动的服务,然而那时已经忘了以前是在哪个目录下配置的了,一个大写的懵逼,所以就自己新建一个脚本放在自己能找到的目录,只用在系统的目录下配置一次,以后就在自己新建的脚本里面写启动服务的命令就好了 1. 自己新建一个脚本,如centnet-…
环境:centos7 创建的开机启动的链接地址: /etc/systemd/system/multi-user.target.wants/ 如: [root@tiaobanji system]# ll /etc/systemd/system/multi-user.target.wants/total 0lrwxrwxrwx. 1 root root 38 Feb 28 12:18 auditd.service -> /usr/lib/systemd/system/auditd.servicelr…
常用命令 使某服务自动启动 systemctl enable httpd.service 使某服务不自动启动 systemctl disable httpd.service 检查服务状态 systemctl status httpd.service (服务详细信息) systemctl is-active httpd.service (仅显示是否 Active) 显示所有已启动的服务 systemctl list-units --type=service 启动某服务 systemctl star…
1.进入tomcat/bin vi setenv.sh      (原来没有这个文件,需要创建出来) 添加 #add tomcat pid CATALINA_PID="$CATALINA_BASE/tomcat.pid" #add java opts JAVA_OPTS="-server -XX:PermSize=256M -XX:MaxPermSize=1024m -Xms512M -Xmx1024M -XX:MaxNewSize=256m" 保存 catalin…
1. 自己新建一个脚本,如centnet-service.sh 经过后面的几个步骤后,这个脚本在开机的时候会执行,在这个脚本里面可以写你开机的时候想执行的命令,如启动tomcat,oracle等服务. 2. 在脚本中输入启动服务的命令,如(开机启动tomcat): #!/bin/bash export JDK_HOME=/home/java/jdk1.8.0_91 export JAVA_HOME=/home/java/jdk1.8.0_91 /home/tomcat/apache-tomcat…
针对svn,nginx每次重启后均要手工启动,好麻烦,所以考虑将其做成开机启动,做成服务好麻烦,考虑像windows 一样,放在某个启动项中完成. 打开启动文件后,发现里面文件内容如下: #!/bin/bash # THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES # # It is highly advisable to create own systemd services or udev rules # to run scripts during…
以Linux下指定sun用户在linux开机时执行/home/sun/startrun.sh为例: 以root登录linux 执行vi /etc/rc.d/rc.local 在文档末尾添加一行语句:su sun -c "/home/sun/startrun.sh" 保存rc.local即可.…
1.在图形界面下单击鼠标右键,选择“Konsole”: 2. 获取当前系统启动模式,输入:systemctl get-default 3.查看配置文件, cat /etc/inittab 4.通过以上显示,目前系统为命令行模式 更改模式命令:systemctl set-default graphical.target 由命令行模式更改为图形界面模式 systemctl set-default multi-user.target 由图形界面模式更改为命令行模式 5.更改后验证是否正确 shutdo…
一.& 在 Linux 命令后加上 &  可以在后台运行 二.nohup 对 SIGHUP 信号免疫,对 SIGINT 信号不免疫,可用 shopt | grep hup 查看. 当关闭终端时,shell 默认会发送 SIGHUP 信号给与该终端关联的进程,从而导致其进程跟随终端退出.nohup 捕获了 SIGHUP,并做了忽略处理,因此进程不会退出. 在 Linux 命令前加上 nohup 命令可以在退出帐户/关闭终端之后继续运行相应的进程.默认会将进程的所有输出都重定向到一个名为 no…
/etc/profile.d 下建立一个xxxname.sh…
一.CentOS7 systemd 介绍 在 CentOS7 中,使用 systemd 来管理其他服务是否开机启动,systemctl 是 systemd 服务的命令行工具 [root@mysql ~]# systemctl start httpd.service // 启动服务 [root@mysql ~]# systemctl stop httpd.service // 关闭服务 [root@mysql ~]# systemctl restart httpd.service // 重启服务…
本文转载:http://blog.chinaunix.net/uid-24648266-id-5729891.html CentOS7开始,从/etc/init.d脚本改为了systemctl管理服务. 亲自测试成功. 1.首先,需要为tomcat配置pid. bin/catalina.sh # Copy CATALINA_BASE from CATALINA_HOME if not already set [ -z "$CATALINA_BASE" ] && CATA…
一.开机启动服务的配置 1.创建服务配置(权限754) vim /usr/lib/systemd/system/nginx.service 文件内容解释 [Unit]:服务的说明Description:描述服务After:描述服务类别 [Service]服务运行参数的设置Type=forking是后台运行的形式ExecStart为服务的具体运行命令ExecReload为重启命令ExecStop为停止命令PrivateTmp=True表示给服务分配独立的临时空间注意:启动.重启.停止命令全部要求使…
一.CentOS7 systemd 介绍 在 CentOS7 中,使用 systemd 来管理其他服务是否开机启动,systemctl 是 systemd 服务的命令行工具 [root@localhost ~]$ systemctl start httpd.service # 启动服务 [root@localhost ~]$ systemctl stop httpd.service # 关闭服务 [root@localhost ~]$ systemctl restart httpd.servic…
centos7提供开启服务启动的方式: 1.系统服务管理命令,如果是通过yum安装的软件,开机启动脚本,已经自动创建好了,直接执行如下命令 nginx.service后缀可以省略 systemctl enable nginx.service #这里nginx指的是提前配置好的开机脚本文件 systemctl start nginx.service #启动nginx服务,也是执行一个nginx脚本文件 2.因为/usr/lib/systemd/system/这个目录是存放启动文件,里面一般都是 x…
在centos7中所有对服务的管理都集中到了systemctl当中,所以服务的启动.关闭.重启.开机启动等等的操作都可以用systemctl. systemctl对服务的管理都是通过配置文件,配置文件的目录在/usr/lib/systemd/system/,默认情况下没有mysql的配置文件,那就手动添加一个名为mysql.service的配置文件. 在此之前先看一下mysql的安装目录: whereis mysql 显示mysql: /usr/lib64/mysql /usr/local/my…
CentOS下开机启动查看管理命令:chkconfig用法   CentOS下开机启动查看管理的命令是:chkconfig   1. 开机启动列表查看: chkconfig --list     说明:输出所有服务列表,如果列表中没有你要启动的服务 2. 添加服务:     chkconfig --add servicename 3. 删除服务:    chkconfig --del servicename   4. 查看具体启动服务信息:    chkconfig --list  servic…
CentOS7安装完毕,重新开机启动后显示: Initial setup of CentOS Linux 7 (core) 1) [x] Creat user 2) [!] License information (no user will be created) (license not accepted) Please make your choice from above ['q' to quit | 'c' to continue | 'r' to refresh]: 解决方法: 输入“…
#!/bin/bash#chkconfig:235 80 20#description:start or stop vbox#Author:Qty~20180502#OS:RedHatEnterprise6.4,上传vbox至/etc/init.d/并赋权755,chkconfig --add vbox添加后可开机启动并用service命令管理 . /etc/rc.d/init.d/functions. /etc/sysconfig/network VBoxManage list vms &>…
第一.启动.终止.重启 systemctl start httpd.service #启动 systemctl stop httpd.service #停止 systemctl restart httpd.service #重启 第二.设置开机启动/关闭 systemctl enable httpd.service #开机启动 systemctl disable httpd.service #开机不启动 第三.检查httpd状态 systemctl status httpd.service 另外…
一.添加开机启动脚本 #!/bin/bash # THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES # # It is highly advisable to create own systemd services or udev rules # to run scripts during boot instead of using this file. # # In contrast to previous versions due to parall…
问题描述: 最近安装了zabbix设置了一些开机启动服务 例如:zabbix-server.service,httpd.service,mariadb.service,或者系统的firework.service 想知道这些服务开机有没有自启服务,查询了一下网上都讲到chkconfig,但是centos7已不用chkconfig了 解决方法: 使用 systemctl list-unit-files 可以查看启动项 左边是服务名称,右边是状态,enabled是开机启动,disabled是开机不启动…
习惯于在/etc/rc.local文件里配置我们需要开机启动的服务,这个在centos6系统下是正常生效的.但是到了centos7系统下,发现/etc/rc.local文件里的开机启动项不执行了!仔细研究/etc/rc.local文件内容,发现问题如下: [root@openstack ~]# cat /etc/rc.local #!/bin/bash # THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES # # It is highly advisab…
1. 自己新建一个脚本,如centnet-service.sh 经过后面的几个步骤后,这个脚本在开机的时候会执行,在这个脚本里面可以写你开机的时候想执行的命令,如启动nginx,phpf-pm等服务 2. 在脚本中输入启动服务的命令,如(开机启动nginx): #!/bin/bash #nginx /usr/local/nginx/nginx #phpf-pm /usr/local/php/sbin/php-fpm 3. 执行如下命令,将该脚本标记为可执行文件(添加可执行的权限) chmod +…
centos7上查看服务开机启动列表 命令: systemctl list-unit-files; 点击回车,可以向下翻页查询…