You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@accumulo.apache.org by "Minh Duc Nguyen (Created) (JIRA)" <ji...@apache.org> on 2011/11/24 00:34:40 UTC

[jira] [Created] (ACCUMULO-184) Accumulo is logging a lot to tracer.log of failure to create tracer table

Accumulo is logging a lot to tracer.log of failure to create tracer table
-------------------------------------------------------------------------

                 Key: ACCUMULO-184
                 URL: https://issues.apache.org/jira/browse/ACCUMULO-184
             Project: Accumulo
          Issue Type: Bug
          Components: trace
    Affects Versions: 1.3.5
         Environment: CentOS release 5.6
single node Accumulo setup
            Reporter: Minh Duc Nguyen
            Assignee: Eric Newton
            Priority: Minor


Getting this error (over and over again) in tracer.log:

tracer_server1.bericotechnologies.com.log:23 17:34:25,785 [trace.TraceServer] INFO : waiting to checking/create the trace table: org.apache.accumulo.core.client.AccumuloSecurityException: Error BAD_CREDENTIALS - Username or Password is Invalid

I'm not sure what credentials are being used, I can verify via the accumulo shell that the root user and my generated user have the right passwords.  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (ACCUMULO-184) update documentation and prompt for the initial configuration of the trace table

Posted by "Keith Turner (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ACCUMULO-184?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Keith Turner resolved ACCUMULO-184.
-----------------------------------

    Resolution: Fixed
    
> update documentation and prompt for the initial configuration of the trace table
> --------------------------------------------------------------------------------
>
>                 Key: ACCUMULO-184
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-184
>             Project: Accumulo
>          Issue Type: Bug
>          Components: trace
>    Affects Versions: 1.3.5
>         Environment: CentOS release 5.6
> single node Accumulo setup
>            Reporter: Minh Duc Nguyen
>            Assignee: Eric Newton
>            Priority: Minor
>             Fix For: 1.4.0
>
>
> Getting this error (over and over again) in tracer.log:
> tracer_server1.bericotechnologies.com.log:23 17:34:25,785 [trace.TraceServer] INFO : waiting to checking/create the trace table: org.apache.accumulo.core.client.AccumuloSecurityException: Error BAD_CREDENTIALS - Username or Password is Invalid
> I'm not sure what credentials are being used, I can verify via the accumulo shell that the root user and my generated user have the right passwords.  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (ACCUMULO-184) Accumulo is logging a lot to tracer.log of failure to create tracer table

Posted by "Eric Newton (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ACCUMULO-184?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13156767#comment-13156767 ] 

Eric Newton commented on ACCUMULO-184:
--------------------------------------

The username/password for the tracer is configurable.  You'll need to make entries in accumulo-site.xml:

{noformat}

 <property>
    <name>trace.user</name>
    <value>root</name>
 </property>

 <property>
    <name>trace.password</name>
    <value>YourPasswordHere</name>
 </property>

{noformat}

If you use a different user, be sure to grant the user the ability to create tables, or create the table "trace" and grant the trace user the ability to write to the table.

                
> Accumulo is logging a lot to tracer.log of failure to create tracer table
> -------------------------------------------------------------------------
>
>                 Key: ACCUMULO-184
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-184
>             Project: Accumulo
>          Issue Type: Bug
>          Components: trace
>    Affects Versions: 1.3.5
>         Environment: CentOS release 5.6
> single node Accumulo setup
>            Reporter: Minh Duc Nguyen
>            Assignee: Eric Newton
>            Priority: Minor
>
> Getting this error (over and over again) in tracer.log:
> tracer_server1.bericotechnologies.com.log:23 17:34:25,785 [trace.TraceServer] INFO : waiting to checking/create the trace table: org.apache.accumulo.core.client.AccumuloSecurityException: Error BAD_CREDENTIALS - Username or Password is Invalid
> I'm not sure what credentials are being used, I can verify via the accumulo shell that the root user and my generated user have the right passwords.  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (ACCUMULO-184) Accumulo is logging a lot to tracer.log of failure to create tracer table

Posted by "Minh Duc Nguyen (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ACCUMULO-184?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13156855#comment-13156855 ] 

Minh Duc Nguyen commented on ACCUMULO-184:
------------------------------------------

The changes worked.  Just as an FYI, there is a small typo, though, with missing "</value>" tags in the example XML.
                
> Accumulo is logging a lot to tracer.log of failure to create tracer table
> -------------------------------------------------------------------------
>
>                 Key: ACCUMULO-184
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-184
>             Project: Accumulo
>          Issue Type: Bug
>          Components: trace
>    Affects Versions: 1.3.5
>         Environment: CentOS release 5.6
> single node Accumulo setup
>            Reporter: Minh Duc Nguyen
>            Assignee: Eric Newton
>            Priority: Minor
>
> Getting this error (over and over again) in tracer.log:
> tracer_server1.bericotechnologies.com.log:23 17:34:25,785 [trace.TraceServer] INFO : waiting to checking/create the trace table: org.apache.accumulo.core.client.AccumuloSecurityException: Error BAD_CREDENTIALS - Username or Password is Invalid
> I'm not sure what credentials are being used, I can verify via the accumulo shell that the root user and my generated user have the right passwords.  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Issue Comment Edited] (ACCUMULO-184) update documentation and prompt for the initial configuration of the trace table

Posted by "Eric Newton (Issue Comment Edited) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ACCUMULO-184?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13156767#comment-13156767 ] 

Eric Newton edited comment on ACCUMULO-184 at 12/27/11 7:32 PM:
----------------------------------------------------------------

The username/password for the tracer is configurable.  You'll need to make entries in accumulo-site.xml:

{noformat}

 <property>
    <name>trace.user</name>
    <value>root</value>
 </property>

 <property>
    <name>trace.password</name>
    <value>YourPasswordHere</value>
 </property>

{noformat}


If you use a different user, be sure to grant the user the ability to create tables, or create the table "trace" and grant the trace user the ability to write to the table.

edit: fixed typop
                
      was (Author: ecn):
    The username/password for the tracer is configurable.  You'll need to make entries in accumulo-site.xml:

{noformat}

 <property>
    <name>trace.user</name>
    <value>root</name>
 </property>

 <property>
    <name>trace.password</name>
    <value>YourPasswordHere</name>
 </property>

{noformat}

If you use a different user, be sure to grant the user the ability to create tables, or create the table "trace" and grant the trace user the ability to write to the table.

                  
> update documentation and prompt for the initial configuration of the trace table
> --------------------------------------------------------------------------------
>
>                 Key: ACCUMULO-184
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-184
>             Project: Accumulo
>          Issue Type: Bug
>          Components: trace
>    Affects Versions: 1.3.5
>         Environment: CentOS release 5.6
> single node Accumulo setup
>            Reporter: Minh Duc Nguyen
>            Assignee: Eric Newton
>            Priority: Minor
>             Fix For: 1.4.0
>
>
> Getting this error (over and over again) in tracer.log:
> tracer_server1.bericotechnologies.com.log:23 17:34:25,785 [trace.TraceServer] INFO : waiting to checking/create the trace table: org.apache.accumulo.core.client.AccumuloSecurityException: Error BAD_CREDENTIALS - Username or Password is Invalid
> I'm not sure what credentials are being used, I can verify via the accumulo shell that the root user and my generated user have the right passwords.  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Updated] (ACCUMULO-184) update documentation and prompt for the initial configuration of the trace table

Posted by "Eric Newton (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ACCUMULO-184?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Eric Newton updated ACCUMULO-184:
---------------------------------

    Fix Version/s: 1.4.0
          Summary: update documentation and prompt for the initial configuration of the trace table  (was: Accumulo is logging a lot to tracer.log of failure to create tracer table)
    
> update documentation and prompt for the initial configuration of the trace table
> --------------------------------------------------------------------------------
>
>                 Key: ACCUMULO-184
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-184
>             Project: Accumulo
>          Issue Type: Bug
>          Components: trace
>    Affects Versions: 1.3.5
>         Environment: CentOS release 5.6
> single node Accumulo setup
>            Reporter: Minh Duc Nguyen
>            Assignee: Eric Newton
>            Priority: Minor
>             Fix For: 1.4.0
>
>
> Getting this error (over and over again) in tracer.log:
> tracer_server1.bericotechnologies.com.log:23 17:34:25,785 [trace.TraceServer] INFO : waiting to checking/create the trace table: org.apache.accumulo.core.client.AccumuloSecurityException: Error BAD_CREDENTIALS - Username or Password is Invalid
> I'm not sure what credentials are being used, I can verify via the accumulo shell that the root user and my generated user have the right passwords.  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Issue Comment Edited] (ACCUMULO-184) update documentation and prompt for the initial configuration of the trace table

Posted by "Eric Newton (Issue Comment Edited) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ACCUMULO-184?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13156767#comment-13156767 ] 

Eric Newton edited comment on ACCUMULO-184 at 12/27/11 7:33 PM:
----------------------------------------------------------------

The username/password for the tracer is configurable.  You'll need to make entries in accumulo-site.xml:

{noformat}

 <property>
    <name>trace.user</name>
    <value>root</value>
 </property>

 <property>
    <name>trace.password</name>
    <value>YourPasswordHere</value>
 </property>

{noformat}


If you use a different user, be sure to grant the user the ability to create tables, or create the table "trace" and grant the trace user the ability to write to the table.

edit: fixed typo

                
      was (Author: ecn):
    The username/password for the tracer is configurable.  You'll need to make entries in accumulo-site.xml:

{noformat}

 <property>
    <name>trace.user</name>
    <value>root</value>
 </property>

 <property>
    <name>trace.password</name>
    <value>YourPasswordHere</value>
 </property>

{noformat}


If you use a different user, be sure to grant the user the ability to create tables, or create the table "trace" and grant the trace user the ability to write to the table.

edit: fixed typop
                  
> update documentation and prompt for the initial configuration of the trace table
> --------------------------------------------------------------------------------
>
>                 Key: ACCUMULO-184
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-184
>             Project: Accumulo
>          Issue Type: Bug
>          Components: trace
>    Affects Versions: 1.3.5
>         Environment: CentOS release 5.6
> single node Accumulo setup
>            Reporter: Minh Duc Nguyen
>            Assignee: Eric Newton
>            Priority: Minor
>             Fix For: 1.4.0
>
>
> Getting this error (over and over again) in tracer.log:
> tracer_server1.bericotechnologies.com.log:23 17:34:25,785 [trace.TraceServer] INFO : waiting to checking/create the trace table: org.apache.accumulo.core.client.AccumuloSecurityException: Error BAD_CREDENTIALS - Username or Password is Invalid
> I'm not sure what credentials are being used, I can verify via the accumulo shell that the root user and my generated user have the right passwords.  

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira