You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by ykrips <gi...@git.apache.org> on 2014/12/08 03:59:17 UTC

[GitHub] tajo pull request: TAJO-1230: Disable ipv6 support on JVM

GitHub user ykrips opened a pull request:

    https://github.com/apache/tajo/pull/291

    TAJO-1230: Disable ipv6 support on JVM

    Before applying this option, it would be shown like following line.
    ```
    tcp        0      0 127.0.0.1:26001             0.0.0.0:*                   LISTEN      4494/java           
    tcp        0      0 127.0.0.1:26002             0.0.0.0:*                   LISTEN      4494/java           
    tcp        0      0 127.0.0.1:26003             0.0.0.0:*                   LISTEN      4494/java           
    tcp        0      0 127.0.0.1:26005             0.0.0.0:*                   LISTEN      4494/java           
    tcp        0      0 0.0.0.0:26080               0.0.0.0:*                   LISTEN      4494/java          
    tcp        0      0 :::28091                    :::*                        LISTEN      4692/java           
    tcp        0      0 :::28092                    :::*                        LISTEN      4692/java           
    tcp        0      0 :::28093                    :::*                        LISTEN      4692/java           
    tcp        0      0 :::38818                    :::*                        LISTEN      4595/java           
    tcp        0      0 ::ffff:192.168.122.18:28080 :::*                        LISTEN      4692/java 
    ```
    
    With this disable IPv6 option, it will be disable the ipv6 capability on servers.
    ```
    tcp        0      0 127.0.0.1:26001             0.0.0.0:*                   LISTEN      3796/java           
    tcp        0      0 127.0.0.1:26002             0.0.0.0:*                   LISTEN      3796/java           
    tcp        0      0 127.0.0.1:26003             0.0.0.0:*                   LISTEN      3796/java           
    tcp        0      0 127.0.0.1:26005             0.0.0.0:*                   LISTEN      3796/java           
    tcp        0      0 0.0.0.0:28091               0.0.0.0:*                   LISTEN      3995/java           
    tcp        0      0 0.0.0.0:28092               0.0.0.0:*                   LISTEN      3995/java           
    tcp        0      0 0.0.0.0:28093               0.0.0.0:*                   LISTEN      3995/java           
    tcp        0      0 0.0.0.0:26080               0.0.0.0:*                   LISTEN      3796/java           
    tcp        0      0 192.168.122.185:28080       0.0.0.0:*                   LISTEN      3995/java           
    tcp        0      0 0.0.0.0:11728               0.0.0.0:*                   LISTEN      3897/java 
    ```


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/ykrips/tajo TAJO-1230

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/tajo/pull/291.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #291
    
----
commit eefe43d742804db604a89ffddd2aa3f473eb5926
Author: Jihun Kang <yk...@gmail.com>
Date:   2014-12-08T02:56:21Z

    TAJO-1230: Disable ipv6 support on JVM

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] tajo pull request: TAJO-1230: Disable ipv6 support on JVM

Posted by asfgit <gi...@git.apache.org>.
Github user asfgit closed the pull request at:

    https://github.com/apache/tajo/pull/291


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---

[GitHub] tajo pull request: TAJO-1230: Disable ipv6 support on JVM

Posted by hyunsik <gi...@git.apache.org>.
Github user hyunsik commented on the pull request:

    https://github.com/apache/tajo/pull/291#issuecomment-66039504
  
    +1 
    
    The patch looks straightforward. This patch does not affect any tests. The unit test was failed due to time zone issue (TAJO-1234). I'll commit it shortly.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---