Linux运维
两万马力
热爱生活,热爱工作
展开
-
CentOS下配置iptables防火墙
转载自http://www.cnblogs.com/hiroada/articles/2220809.htmlLinux上iptables防火墙的基本应用教程/etc/init.d/iptables restart#重启防火墙以便改动生效,当然如果不觉得麻烦也可重启系统(命令:reboot)/etc/rc.d/init.d/iptables save#将更改转载 2012-05-09 22:31:25 · 7173 阅读 · 0 评论 -
nginx 403错误排查
经过一天的nginx 403错误排查,将相关错误原因列述如下:1.权限问题看nginx.conflocation / { root html; index index.html index.htm ; }修改root目录及目录内文件的权限为可执行权限。index中添加需要的文件类型,如index.原创 2012-05-09 22:38:48 · 2101 阅读 · 0 评论 -
tomcat的初始化脚本(启动、退出、查看状态)
具体使用参见nginx的启动脚本。脚本内容如下:#!/bin/bash## Startup script for the tomcat## chkconfig: 345 80 15# description: Tomcat is a Servlet+JSP Engine.# Source function library.. /etc/rc.d/init转载 2012-05-29 16:20:46 · 662 阅读 · 0 评论 -
CentOS Jboss7的一个初始化脚本(用于启动、停止)
具体使用同nginx的启动脚本。脚本内容如下:#!/bin/sh#chkconfig: 345 99 10#description: JBoss auto start-stop script.# Source function library.. /etc/rc.d/init.d/functions# Get config.. /etc/sysconfig/翻译 2012-05-11 17:00:05 · 2424 阅读 · 0 评论 -
CentOS Nginx的一个初始化脚本(用于启动、停止、查看状态)
http://articles.slicehost.com/2009/2/2/centos-adding-an-nginx-init-script1.在/etc/rc.d/init.d/目录下建立nginx文件2.粘贴以下内容#!/bin/sh## nginx - this script starts and stops the nginx daemin## chk转载 2012-05-11 16:35:03 · 3412 阅读 · 0 评论 -
RPM 文件安装过程中 最后加上的--nodeps 和--force参数是什么意思
--nodeps就是安装时不检查依赖关系,比如你这个rpm需要A,但是你没装A,这样你的包就装不上,用了--nodeps你就能装上了。--force就是强制安装,比如你装过这个rpm的版本1,如果你想装这个rpm的版本2,就需要用--force强制安装原创 2013-06-12 17:06:41 · 58228 阅读 · 0 评论