- 浏览: 154036 次
- 性别:
- 来自: 上海
文章列表
http://www.ruanyifeng.com/blog/2007/10/ascii_unicode_and_utf-8.html
export FLUME_HOME=/usr/development/apache-flume-1.3.0-bin
export FLUME_CONF_DIR=$FLUME_HOME/conf
export FLUME_LOG_DIR=$FLUME_HOME/log
export PATH=$PATH:$FLUME_HOME/bin
参考:http://www.linuxidc.com/Linux/2013-06/86598.htm
Jconsole监控远程Linux的Kafka
- 博客分类:
- 应用
1、配置启动参数:
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port={port to access}
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false
-Djava.rmi.server.hostname={optional, allow what ip to access this Tomcat}
vi kafka-run-class.sh
在KAFKA_JVM_OPTS ...
http://jiajun.iteye.com/blog/810150
http://jiajun.iteye.com/blog/1180230
http://blog.csdn.net/zxcvg/article/details/18218483
There was an error while executing `VBoxManage`, a CLI used by Vagrant
for controlling VirtualBox. The command and stderr is shown below.
Command: ["hostonlyif", "create"]
Stderr: 0%...
Progress state: NS_ERROR_FAILURE
VBoxManage: error: Failed to create the host-only adapt ...
http://blog.chinaunix.net/uid-28903506-id-4139071.html
之前使用 VM VirtualBox安装了CentOS 的 i386版本,但一些64位的应用在这个系统无法安装,那就改用X86_64吧。最近接触到Vagrant,一番了解之后,决定尝试一下。
Vagrant 安装虚拟机十分便捷,下载好CentOS-6.3-x86_64-minimal.box之后,在DOS命令行执行几个命令即可完成安装:
vagrant box add Centos CentOS-6.3-x86_64-minimal.box #需要切换到box所在的目录
vagr ...
http://tieba.baidu.com/p/2188626266
首先说一下环境:
centos6.3
业务环境:weiboyi
情况说明一下:
为了适应公司业务发展需要,公司新购买了一批新机器,作为weiboyi的新环境,安装了比较新的操作系统:通统:centos6.3
一开始硬件(Dell R410)主板坏了,更换后再进行各种测试。
测试前是用root用户启动业务,没有什么问题。但是后来在用非root用户启动时出现种问题。java报如下错误:
There is insufficient memory for the Java Runtime Environment to conti ...
Linux--在Linux下永久或暂时关闭防火墙命令
- 博客分类:
- 应用
(1) 重启后永久性生效:
开启:chkconfig iptables on
关闭:chkconfig iptables off
(2) 即时生效,重启后失效(即重启后防火墙自动开启):
开启:service iptables start
关闭:service iptables stop
service iptables status
转载:http://www.jb51.net/LINUXjishu/64000.html
(1)Ifconfig命令
第一种使用ifconfig命令配置网卡的ip地址。此命令通常用来零时的测试用,计算机启动后
ip地址的配置将自动失效。具体用法如下。Ipconfig ethx ipadd netmask x.x.x.x。
其中ethx中的x代表第几快以太网卡,默认第一块为0.ipadd代表ip地址。x.x.x..x为子网掩码。例如给网卡eth0配置的ip地址为192.168.1.1 子网掩码为 255.255.255.0 。如下下图所
注意(此方法配置的i ...
Linux--Linux安装 jdk
- 博客分类:
- 应用
1.将jdk-7u5-linux-x64.tar.gz拷贝到/usr/lib/java/目录下面,这里如果没有java文件夹,则创建该文件夹,命令:
sudo mkdir java//创建文件夹java
sudo cp -r ~/download/jdk-7u10-linux-x64.tar.gz /usr/lib/java/ //把下载的文件拷贝到新创建的目录下面
sudo tar -zxvg jdk-7u10-linux-x64.tar.gz //解压缩文件
2.设置环境变量,用gedit打开/etc/profile文件
...
Linux--vi的基本操作
- 博客分类:
- 应用
a) 进入vi
在系统提示符号输入vi及文件名称后,就进入vi全屏幕编辑画面:
$ vi myfile
不过有一点要特别注意,就是您进入vi之后,是处于「命令行模式(command mode)」,您要切换到「插入模式(Insert mode)」才 ...
servlet什么时候被实例化?
- 博客分类:
- 面试
http://blog.csdn.net/ji_ju/article/details/8603445
http://blog.csdn.net/li_tengfei/article/details/6098134
谈谈对软件开发过程的认识
- 博客分类:
- 应用
http://blog.csdn.net/richard_2010/article/details/5659830