linux
文章平均质量分 50
stonexmx
工作10余年了,一直从事JAVA技术相关工作。之前上各种论坛,但是很少具体记录、收录一些好的资料。感觉应该有一个好的记录、收录习惯,以便用时查阅。
展开
-
linux平台下防火墙iptables原理(转)
iptables简介 netfilter/iptables(简称为iptables)组成Linux平台下的包过滤防火墙,与大多数的Linux软件一样,这个包过滤防火墙是免费的,它可以代替昂贵的商业防火墙解决方案,完成封包过滤、封包重定向和网络地址转换(NAT)等功能。iptables基础 规则(rules)其实就是网络管理员预定义的条件,规则一般的定义为“如果数据包头符转载 2015-08-21 10:00:44 · 382 阅读 · 0 评论 -
java jar 自启动 centos7 systemctl
我本地有一个 data-service.jar1. 编写启动脚本 data-service-start[root@iz2ze0fq2isg8vphkpos5sz shell]# more data-service-start#!/bin/shexport JAVA_HOME=/usr/local/jdk1.8.0_131export PATH=$JAVA_HOME/bin:$P原创 2017-06-21 12:52:57 · 7602 阅读 · 0 评论 -
centos7 分区 格式化
1. 查看磁盘[root@yzb-centos72-3 ~]# fdisk -lDisk /dev/vda: 32.2 GB, 32212254720 bytes, 62914560 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytes原创 2017-05-04 11:49:06 · 16444 阅读 · 0 评论 -
CentOS7 增加tomcat 启动,停止,使用systemctl进行配置
查看全部服务命令:systemctl list-unit-files --type service查看服务systemctl status name.service启动服务systemctl start name.service停止服务systemctl stop name.service重启服务systemctl restart name.service增加开转载 2017-06-16 13:40:06 · 368 阅读 · 0 评论 -
centos7 mogodb-3.4.4 dockerfile
下载 wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-3.4.2.tgz解压 tar -xvzf mongodb-linux-x86_64-rhel70-3.4.2.tgzmv mongodb-linux-x86_64-rhel70-3.4.2 mongodb-3.4.2原创 2017-05-18 11:12:27 · 1928 阅读 · 1 评论 -
Cgroups控制cpu,内存,io示例
原文:http://www.cnblogs.com/yanghuahui/p/3751826.html本文用脚本运行示例进程,来验证Cgroups关于cpu、内存、io这三部分的隔离效果。测试机器:CentOS release 6.4 (Final)启动Cgroupsservice cgconfig start #开启cgroups服务chkconfig cg转载 2017-05-23 10:58:28 · 415 阅读 · 0 评论 -
Centos6.4 升级 centos7.2
1. 查看当前系统版本[root@uf201102372 ~]# lsb_release -aLSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0原创 2016-08-12 10:56:26 · 3881 阅读 · 0 评论 -
linux history 记录 时间 ip 登录用户
vi /etc/profile#historyUSER_IP=`who -u am i 2>/dev/null| awk '{print $NF}'|sed -e 's/[()]//g'`if [ -z $USER_IP ]thenUSER_IP=`hostname`fiexport HISTTIMEFORMAT="[%Y.%m.%d %H:%M:%S]原创 2016-08-19 11:02:21 · 1777 阅读 · 0 评论 -
Centos7 nfs 共享 mount远程目录
安装 NFS 服务器所需的软件包服务器 10.44.154.200安装nfs:yum -y install nfs-utils rpcbind编辑exports文件编辑/etc/exports,增加一行/mnt/files/stone 10.170.184.39(rw,no_root_squash,no_all_squash,sync)生效 exportfs原创 2016-04-22 16:58:35 · 10987 阅读 · 0 评论 -
centos7 安装nfs报错
yum -y install nfs-utils rpcbind报错Transaction check error: file /usr/lib/systemd/system/blk-availability.service from install of device-mapper-7:1.02.107-5.el7_2.1.x86_64 conflicts with file原创 2016-04-22 13:51:43 · 2042 阅读 · 1 评论 -
linux centos7 swap 设置 添加 删除
操作 需要 root 用户 权限dd 命令 创建swap用的分区文件 /var/swap dd if=/dev/zero of=/var/swap bs=1024 count=2048000分区大小设为2gmkswap /var/swapmkswap -f /var/swap将文件变成swap分区 swapon /var/swap开启swap原创 2016-05-12 16:09:52 · 10891 阅读 · 2 评论 -
linux centos7 安装tomcat8
前提是安装了JDK, 并配置了JAVA_HOME具体可参考:http://blog.csdn.net/stonexmx/article/details/51075877下载tomcat8wget http://mirrors.cnnic.cn/apache/tomcat/tomcat-8/v8.0.33/bin/apache-tomcat-8.0.33.zip解原创 2016-04-06 16:40:10 · 497 阅读 · 0 评论 -
centos7 安装 jdk8
将下载的rpm格式的jdk上传到centos查看是否已安装jdk,有则卸载[root@iZ25sabz8p5Z soft]# rpm -qa | grep jdk卸载rpm -e --nodeps * 或者 yum -y remove * 安装[root@iZ25sabz8p5Z soft]# rpm -ivh jdk-8u77-linux-x6原创 2016-04-06 16:25:45 · 333 阅读 · 0 评论 -
centos7 安装 nginx g++、gcc、openssl-devel、pcre-devel和zlib-devel
查看系统版本号[root@iZ25sabz8p5Z soft]# lsb_release -aLSB Version: :core-4.1-amd64:core-4.1-noarchDistributor ID: CentOSDescription: CentOS Linux release 7.0.1406 (Core) Release: 7.0.1原创 2016-04-06 11:50:55 · 21970 阅读 · 1 评论 -
nginx 代理 再次重定向
今天搞一个nginx的配置,就是一个后端代理,但这个后端代理的url会有登录校验,因此会重定向到登录中心应用。一般如下配置即可, location ^~/TIMS-Server { proxy_pass http://tims.app.yyuap.com/TIMS-Server/; }但就是因为有一个重定向,所以总是不能代理过去经原创 2017-07-06 17:57:11 · 1368 阅读 · 0 评论