chkconfig

CentOS 6 添加php-fpm系统服务

心不动则不痛 提交于 2019-12-26 20:23:15
简介: php-fpm安装完成后默认不会注册为系统服务,所以需要手工添加系统服务脚本。在/etc/init.d目录下新建php-fpm文件,并更改权限其即可。 1、检测/usr/local/php/var/run/php-fpm.pid是否存 CentOS6.4 添加php-fpm系统服务 在 1.1、不存在:去除/usr/local/php/etc/php-fpm.conf里的“;pid = run/php-fpm.pid”前面的分号,并重启php-fpm就会自动生成php-fpm.pid 1.2、如何重启php-fpm(当然重启系统也是可以的) 1.2.1、查看php-fpm当前的进程ps -ef | grep php-fpm 1.2.2、结束php-fpm所有进程即可 例:kill -9 1228 1.2.3、启动php-fpm:/usr/local/php/sbin/php-fpm 2、新建php-fpm文件 2.1、新建文件:vi /etc/init.d/php-fpm 2.2、添加内容如下 1 #! /bin/sh 2 # Comments to support chkconfig on CentOS 3 # chkconfig: 2345 65 37 4 # 5 set -e 6 7 PATH=/usr/local/sbin:/usr/local/bin:/sbin:

CentOS6.4 添加php-fpm系统服务

拟墨画扇 提交于 2019-12-26 20:23:02
简介: php-fpm安装完成后默认不会注册为系统服务,所以需要手工添加系统服务脚本。在/etc/init.d目录下新建php-fpm文件,并更改权限其即可。 1、检测/usr/local/php/var/run/php-fpm.pid是否存在 1.1、不存在:去除 /usr/local/php/etc/php-fpm.conf 里的“;pid = run/php-fpm.pid”前面的分号,并重启php-fpm就会自动生成php-fpm.pid 1.2、如何重启php-fpm(当然重启系统也是可以的) 1.2.1、查看php-fpm当前的进程 ps -ef | grep php-fpm 1.2.2、结束php-fpm所有进程即可 例: kill -9 1228 1.2.3、启动php-fpm: /usr/local/php/sbin/php-fpm 2、新建php-fpm文件 2.1、新建文件: vi /etc/init.d/php-fpm 2.2、添加内容如下 #! /bin/sh # Comments to support chkconfig on CentOS # chkconfig: 2345 65 37 # set -e PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DESC="php

linux nginx,php开机启动

不打扰是莪最后的温柔 提交于 2019-12-26 20:22:34
nginx开机启动 1.首先,在linux系统的/etc/init.d/目录下创建nginx文件 vim /etc/init.d/nginx 2.加入脚本 1 #!/bin/bash 2 # nginx Startup script for the Nginx HTTP Server 3 # it is v.0.0.2 version. 4 # chkconfig: - 85 15 5 # description: Nginx is a high-performance web and proxy server. 6 # It has a lot of features, but it's not for everyone. 7 # processname: nginx 8 # pidfile: /var/run/nginx.pid 9 # config: /usr/local/nginx/conf/nginx.conf 10 nginxd=/usr/local/nginx/sbin/nginx 11 nginx_config=/usr/local/nginx/conf/nginx.conf 12 nginx_pid=/var/run/nginx.pid 13 RETVAL=0 14 prog="nginx" 15 # Source function library. 16 .

nginx配置开机启动/usr/local/nginx/sbin/nginx【引】

↘锁芯ラ 提交于 2019-12-26 20:22:02
Nginx 是一个很强大的高性能Web和反向代理服务器。虽然使用命令行可以对nginx进行各种操作,比如启动等,但是还是根据不太方便。下面介绍在 Linux 下安装后,如何设置开机自启动。 首先,在linux系统的/etc/init.d/目录下创建nginx文件,使用如下命令: vim /etc/init.d/nginx 在脚本中添加如下命令: #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: NGINX is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check

Linux(CentOS)下设置nginx开机自动启动和chkconfig管理

感情迁移 提交于 2019-12-26 20:21:45
Nginx 是一个很强大的高性能Web和反向代理服务器。虽然使用命令行可以对nginx进行各种操作,比如启动等,但是还是根据不太方便。下面介绍在 Linux 下安装后,如何设置开机自启动。 首先,在 linux 系统的/etc/init.d/目录下创建nginx文件,使用如下命令: vim /etc/init.d/nginx 在脚本中添加如下命令: #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: NGINX is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check

Linux(CentOS)下设置nginx开机自动启动(2个办法)

天涯浪子 提交于 2019-12-26 20:21:36
首先,在linux系统的/etc/init.d/目录下创建nginx文件,使用如下命令: 1 vim /etc/init.d/nginx 在脚本中添加如下命令: #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: NGINX is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0 nginx="/usr/sbin/nginx" prog=$

nginx 自启动设置

女生的网名这么多〃 提交于 2019-12-26 20:21:18
首先,在linux系统的/etc/init.d/目录下创建nginx文件,使用如下命令: 1 vim /etc/init.d/nginx 在脚本中添加如下命令: #!/bin/sh # # nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: NGINX is an HTTP(S) server, HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: nginx # config: /etc/nginx/nginx.conf # config: /etc/sysconfig/nginx # pidfile: /var/run/nginx.pid # Source function library. . /etc/rc.d/init.d/functions # Source networking configuration. . /etc/sysconfig/network # Check that networking is up. [ "$NETWORKING" = "no" ] && exit 0 nginx="/usr/sbin/nginx" prog=$

实例学习Ansible系列(18)服务管理的几种方式

孤者浪人 提交于 2019-12-26 19:34:57
Ansible中使用service等模块进行服务的管理,也可直接使用非幂等性的模块诸如shell等进行控制,这篇文章介绍常用的使用示例。 示例1: 使用service停止单个服务 比如停止etcd服务,示例如下 ## stop etcd service - name: stop etcd service service: name: etcd state: stopped 示例2: 使用service停止多个服务 比如停止kubernetes的master相关的服务,示例如下 ## stop kubernetes master service - name: stop master service service: name: "{{ item }}" state: stopped with_items: - kube-scheduler - kube-controller-manager - kube-apiserver 示例3: 无视错误 如果当当前机器上不存在service文件时,可能会出现如下类似的错误信息 fatal: [localhost]: FAILED! => {"changed": false, "msg": "Could not find the requested service flanneld: host"} 这种情况下可以使用ignore

linux任务计划cron、chkconfig工具、systemd管理服务、unit介绍和targe

谁说胖子不能爱 提交于 2019-12-26 16:54:27
一、 linux任务计划cron 关于cron任务计划功能的操作都是通过crontab这个命令来完成的。 其中常用的选项有: -u :指定某个用户,不加-u选项则为当前用户; /etc/crontab 任务计划的配置文件 前面两行是定义变量,第三行是指发送邮件给谁,然后最后一行有五个点分别对应着五个位,也就是上面的五行, 分别表示: 1.表示分钟(0-59) 2.表示小时(0-23) 3.表示日期(1-31) 4.表示月份(1-12可以写数字或者英文的简写) 5.表示星期(0-6,0或者7表示周日,也可以写成英文的简写) 最后一行开头部分是用户(在root用户下不写默认就是root) 后面部分,也就是com开头的位置是你要执行的命令。 crontab -e定义任务计划(用法和vim一样) 从左到右:在12月5日(这一天必须是星期2)的10点01分执行命令 echo “ok” > /root/cron.log 编写格式:分 时 日 月 周 user command -l :列出计划任务; -r :删除计划任务 注: crontab -e 实际上是打开了 “/var/spool/cron/username” (如果是root则打开的是/var/spool/cron/root)这个文件,所以不要直接去编辑那个文件,因为可能会出错,所以一定要使用 crontab -e 来编辑,另外备份的话

CENTOS6.6下mysql5.6的源码安装

我只是一个虾纸丫 提交于 2019-12-25 03:22:26
本文来自我的github pages博客http://galengao.github.io/ 即www.gaohuirong.cn 1、下载:当前mysql版本到了5.6.28 http://dev.mysql.com/downloads/mysql 选择Source Code wget http://cdn.mysql.com//Downloads/MySQL-5.6/mysql-5.6.28.tar.gz 2、必要软件包 yum -y install gcc gcc-c++ gcc-g77 autoconf automake zlib* fiex* libxml* ncurses-devel libmcrypt* libtool-ltdl-devel* make cmake 3、编译安装 添加用户 groupadd mysql useradd -r -g mysql mysql 编译安装 tar -zxvf mysql-5.6.28.tar.gz cd mysql-5.6.28 默认情况下是安装在/usr/local/mysql cmake . make && make install 编译参数 cmake . \ -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \ -DMYSQL_DATADIR=/usr/local/mysql/data \