linux
jdkleo
这个作者很懒,什么都没留下…
展开
-
linux实用命令
查看redhat(centos)版本cat /etc/redhat-release查看某个端口被哪个进程占用lsof -i:port 查看进程资源ps -elf | grep XXX原创 2013-12-19 17:14:54 · 69 阅读 · 0 评论 -
nginx根据COOKIE信息重定向URL并将COOKIE转换为QUERYSTRING
location /{ set $ody_cookie ""; if ($http_cookie ~* "ody_ab_gray_group=(.*)"){ set $ody_cookie "ody_ab_gray_group=$1"; } if ($query_string ~* "^\?.*"){ rewrite ^(.*) ^$1&$ody_cooki...原创 2017-10-17 18:13:05 · 1565 阅读 · 0 评论 -
Jenkins+SVN+Maven+Shell 实现项目一键发布
Jenkins+SVN+Maven+Shell实现项目一键发布一、前言众所周知,Jenkins默认情况下可以实现项目更新(通过SVN),和项目发布,通过(MAVEN插件),但是这种情况下发布到一些容器底下(如Tomcat)时,经过多次发布后JVM会报OutOfMemoryError PermGen space,这个原因是由于这些容器在覆盖老项目后并不会释放老项目内存永久区的资源,久...原创 2014-11-24 18:57:49 · 888 阅读 · 0 评论 -
openssl genrsa
介绍openssl genrsa 用于生成rsa私钥文件,生成是可以指定私钥长度和密码保护。语法openssl genrsa[-out filename] [-passout arg] [-des] [-des3] [-idea] [-f4] [-3] [-rand file(s)] [-engine id] [numbits]一般使用E:\OpenSSL\foo>...原创 2015-10-08 13:23:31 · 289 阅读 · 0 评论 -
nginx启用https 443
一、安装nginx并启用ssl模块 beforesvn checkout http://nginx-upstream-jvm-route.googlecode.com/svn/trunk/ /root/dev/nginx-upstream-jvm-route-read-only patch -p0 < /root/dev/nginx-upstream-jvm-rout...原创 2015-09-12 11:19:12 · 583 阅读 · 0 评论 -
RHEL换YUM库
本文摘选至:http://www.th7.cn/system/lin/201402/50472.shtml 一、卸载已有YUM#rpm -qa | grep yum | xargs rpm -e --nodeps 二、安装下载的安装包(见附件)#rpm -ivh python-iniparse-0.3.1-2.1.el6.noarch.rpm#rpm -ivh yu...原创 2015-08-19 15:03:20 · 91 阅读 · 0 评论 -
LINUX挂载磁盘
--看盘子fdisk -l--进行分区fdisk /dev/sdb --出现command(m help)按n--出现e extendedp primary partition(1-4)按p--partition number(1-4)1--First Cylinder是选择该分区的起始磁盘数,这里可自定义也可不做选择,默认是1,如无特殊需求强烈建...原创 2015-08-10 14:24:39 · 126 阅读 · 0 评论 -
linux查看磁盘空间
FROM: http://www.2cto.com/os/201207/142116.html如果要查看磁盘还剩多少空间,当然是用df的命令了。[root@localhost ~]# df -h 文件系统 容量 已用 可用 已用% 挂载点 /dev/sda2 14G 11G 2.6G 82% / /dev/sda1 ...原创 2014-09-28 15:06:07 · 75 阅读 · 0 评论 -
使用NFS挂载目录
环境服务器 10.32.8.22客户端 10.32.8.21 服务器 1)配置目录vi /etc/exports/save/nfs_dir 10.32.8.21(rw,no_root_squash) /save/nfs_dir 为访问目录 10.32.8.21 允许访问的IP,如果设置为*表示 任意IP都可以访问 rw 为可进行读...原创 2015-07-06 13:06:23 · 624 阅读 · 1 评论 -
LINUX中文乱码的解决方案
LANG=zh_CN.GB2312export LANG原创 2015-06-24 10:49:58 · 158 阅读 · 0 评论 -
每天一个linux命令系列 - head
HeadUsage: head [OPTION]... [FILE]...Print the first 10 lines of each FILE to standard output.With more than one FILE, precede each with a header giving the file name.With no FILE, or when FILE is ...原创 2016-04-29 15:59:50 · 100 阅读 · 0 评论 -
Linux查看文本文件命令
转载至:http://www.360doc.com/content/13/1230/16/11253639_341277474.shtml1. cat 用法: cat [options] filename options: -A: 显示全部. -E: 在每一行的后面加上"$"符号结尾. -b: 在所有的非空白行上标示编号. 2.tac...原创 2015-06-20 00:01:48 · 301 阅读 · 0 评论 -
实战RHEL(或CENTOS)安装JDK和JRE
1.查看OpenJDK的安装包$ rpm -qa |grep javajava-1.6.0-openjdk-1.6.0.0-1.50.1.11.5.el6_3.x86_64java-1.7.0-openjdk-1.7.0.9-2.3.4.1.el6_3.x86_64tzdata-java-2012j-1.el6.noarch 2.检查OpenJDK版本$ java -...原创 2015-06-02 11:08:14 · 178 阅读 · 0 评论 -
每天一个linux命令系列 - tail
tailUsage: tail [OPTION]... [FILE]...Print the last 10 lines of each FILE to standard output.With more than one FILE, precede each with a header giving the file name.With no FILE, or when FILE is -...原创 2016-04-27 10:16:46 · 114 阅读 · 0 评论 -
配置Linux防火墙
关闭防火墙或添加防火墙规则(二选一)1)关闭防火墙重启后生效Ruby代码 [root@CentOS-6 ~]# chkconfig iptables off 即时生效,重启后失效service 方式Ruby代码 [root@CentOS-6 ~]# service iptables stop 2)添加规...原创 2015-04-21 15:41:25 · 96 阅读 · 0 评论 -
MongoDB日志logappend方式以每天为单位自动切割日志解决方案
RHEL 6.4 X86_64一、编写logAppend.jsuse admin;db.runCommand({logRotate:1});二、编写logAppend.sh/save/mongodb-linux-x86_64-2.6.0/bin/mongo 127.0.0.1:27017/admin /save/mongodb/shell/logAppend.js三、权...原创 2015-03-31 16:53:21 · 1138 阅读 · 0 评论 -
lvs+keepalived+vsftp配置FTP服务器负载均衡
STEP 1 准备机器和环境 准备4台机器,这里以152-155四台机器为例(CENTOS 6.4) 173.1.3.152 (keepalived负载均衡 主机 MASTER)173.1.3.153 (keepalived负载均衡 备机 BACKUP)173.1.3.154 (FTP服务器1)173.1.3.155 (FTP服务器2) ...原创 2014-08-20 09:30:01 · 1967 阅读 · 0 评论 -
centos的软件安装方法rpm和yum
from:http://blog.163.com/yang_jianli/blog/static/1619900062012912115552188/ centos的软件安装大致可以分为两种类型:[centos]rpm文件安装,使用rpm指令 类似[ubuntu]deb文件安装,使用dpkg指令[centos]yum安装 类似[ubuntu]apt-get安...原创 2014-05-27 10:00:06 · 111 阅读 · 0 评论 -
简单发布tomcat带日志输出
t_pid=`ps -ef | grep tomcat | grep global.config.path | awk '{print $2}'`echo $t_pidkill -9 $t_pid/bin/rm -rf /data/tomcat/webapps/* /data/tomcat/work/Catalina/localhost/* /data/tomcat/temp/*...原创 2017-03-09 19:46:13 · 160 阅读 · 0 评论