`
shihuan830619
  • 浏览: 574531 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/install/centos                  --centos安装gitlab https://github.com/gitlabhq/gitlab-recipes/tree/master/install/centos                    --centos安装gitlab https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation.md             ...
[root@testgit rpmlib]# pwd /opt/rpmlib [root@testgit rpmlib]# ls asciidoc-8.6.9-1.el6.rfx.noarch.rpm   gettext-devel-0.17-16.el6.x86_64.rpm autoconf-2.63-5.1.el6.noarch.rpm      libiconv-1.14.tar.gz curl-devel-7.13.1-3.x86_64.rpm        openssl-devel-1.0.1e-42.el6.x86_64.rpm docbook2X-0.8.8-2.1.x86_6 ...
https://rvm.io/     官方网站 https://github.com/rvm/rvm    官方离线包 在线安装步骤: [root@testagent ~]# \curl -sSL https://get.rvm.io | bash -s stable curl: (6) Couldn't resolve host 'get.rvm.io' 在浏览器里访问https://get.rvm.io会跳转到下面的地址 https://raw.githubusercontent.com/wayneeseguin/rvm/master/binscripts/rvm-installer 修 ...
验证RedHat6是否能够联网: [root@testagent ~]# ping 8.8.8.8 [root@testagent ~]# ping 8.8.4.4 下载www.baidu.com首页并且显示下载信息: [root@testagent ~]# wget -d http://www.baidu.com 能成功下载百度首页index.html文件,但不一定能ping http://www.baidu.com [root@testagent ~]# ping 180.76.76.76 [root@testagent ~]# ping 23.5.5.5 [root@testagent ...
cloog-ppl-0.15.7-1.2.el6.x86_64.rpm cpp-4.4.6-4.el6.x86_64.rpm gcc-4.4.7-16.el6.x86_64.rpm gcc-c++-4.4.7-16.el6.x86_64.rpm glibc-devel-2.12-1.166.el6.x86_64.rpm glibc-headers-2.12-1.80.el6.x86_64.rpm kernel-headers-2.6.32-279.el6.x86_64.rpm libstdc++-devel-4.4.6-4.el6.x86_64.rpm mpfr-2.4.1-6.el6.x86_ ...
工程结构图如下: SubscribeReqProto.java文件内容如下: package com.shihuan.netty.codec.protobuf; public final class SubscribeReqProto { private SubscribeReqProto() { } public static void registerAllExtensions(com.google.protobuf.ExtensionRegistry registry) { } public interface Subscri ...
工程结构图如下: NettyConstant.java文件内容如下: package com.shihuan.netty.protocol; public final class NettyConstant { public static final String REMOTEIP = "127.0.0.1"; public static final int PORT = 8080; public static final int LOCAL_PORT = 12088; public static final String ...
项目结构图: SubscribeReq.java文件内容如下: package com.shihuan.netty.codec.marshalling.pojo; import java.io.Serializable; public class SubscribeReq implements Serializable { private int subReqID; private String userName; private String productName; private String phoneNumber; ...
官方网站: http://www.inletex.ca 永久免费:它是完全免费的!对企业免费!对个人免费! 绿色软件:无需安装,不对系统产生垃圾。 点对点传输:它是点对点传输的,支持LAN/WAN,可以在私人网络、局域网、互联网中使用,支持多人同时共享同一电脑屏幕。 容易使用: 不管是主机还是客户机,都是同一个执行程序;任何人都可以做主机,任何人也可以做客户机;界面操作简单,一看就懂。 安全可靠:加拉大荣誉出品,国际品质,老外精心打造!(AD) 体积小巧:仅有 1.18M,是的,不是118M,而是1.18M,国内最低网速下载也可秒下,一键OK,您还等什么,快来抢吧! 本地 ...
[oracle@pamiddle ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Tue Dec 15 10:33:08 2015 Copyright (c) 1982, 2013, Oracle.  All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining ...
最近学习了下hadoop的安装。下面详细说明下步骤。 一、环境 我的是在Linux环境下进行安装的。 现在有三台服务器,分配如下: 192.168.3.100 NameNode          --主机名testhadoop 192.168.3.201 DataNode1         --主机名hadoopsub1 192.168.3.202 DataNode2         --主机名hadoopsub2 NameNode(主服务器)可以看作是分布式文件系统中的管理者,主要负责管理文件系统的命名空间、集群配置信息和存储块的复制等。 DataNode(从服务器)是文件存储的基 ...
[oracle@pacollector ~]$ lsnrctl status [oracle@pacollector ~]$ lsnrctl start [oracle@pacollector ~]$ lsnrctl stop [oracle@pacollector ~]$ sqlplus /nolog SQL> conn /as sysdba SQL> startup                                                --"启动数据库实例" SQL> shutdown immediate             ...
[root@pacollector ~]# vi /etc/hosts 这里要把本机IP和主机名加入hosts文件中 VMWare设置CD/DVD处勾选已连接并指定RedHat6的ISO安装包 [root@pacollector ~]#mkdir /mnt/cdrom [root@pacollector ~]#mount -o loop /dev/cdrom /mnt/cdrom [root@pacollector ~]#yum list|grep vsftpd [root@pacollector software]# groupadd oinstall [root@pacollec ...

Netty5 AIO

    博客分类:
  • J2SE
工程结构图: TimeServer.java文件内容如下: package com.shihuan.netty.server; public class TimeServer { public static void main(String[] args) { int port = 8080; if (args != null && args.length > 0) { try { port = Integer.valueOf(args[0]); } catch (NumberFormatExce ...

JDK1.7 AIO

    博客分类:
  • J2SE
工程结构图: Helper.java文件内容如下: package com.shihuan.aio.util; import java.util.Random; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import java.util.concurrent.TimeUnit; public class Helper { private static BlockingQueue<String> words; ...
Global site tag (gtag.js) - Google Analytics