how to connect hive with multiple usersHadoop/Hive - Split a single row into multiple rowsHive connectivity to MySQL: Access denied for user 'hive'@'localhost' hiveHive multiple users on same tablesWhere does Hive store data on the file system?Not able to hive query from webinterfaceHive Metastore asking for Derby DB in defaultHow to connect hive server with phpconnecting no authentication apache hive with MicroStrategyCannot access Hive via PySparkHive remote postgres metastore

How to power down external drive safely

LWC component not rendering

Transistor design with beta variation

On the expression " sun-down"

Return last number in sub-sequences in a list of integers

Why are sugars in whole fruits not digested the same way sugars in juice are?

Deflecting lasers with lightsabers

French equivalents of "a double bind"

Why interlaced CRT scanning wasn't done back and forth?

"Fewer errors means better products" or "Fewer errors mean better products"?

Overprovisioning SSD on ubuntu. How? Ubuntu 19.04 Samsung SSD 860

Password management for kids - what's a good way to start?

Declaring a visitor to the UK as my "girlfriend" - effect on getting a Visitor visa?

Gold Battle KoTH

Does the use of a new concept require a prior definition?

A conjectural trigonometric identity

Windows del command not working?

Do the rules for the "Buying a Magic Item" downtime activity allow a character an opportunity to purchase the item later?

Matrix condition number and reordering

Were there any unmanned expeditions to the moon that returned to Earth prior to Apollo?

Accurately recalling the key - can everyone do it?

A wiild aanimal, a cardinal direction, or a place by the water

What is time? Does it flow linearly? If so, how are we sure?

linearization of objective function



how to connect hive with multiple users


Hadoop/Hive - Split a single row into multiple rowsHive connectivity to MySQL: Access denied for user 'hive'@'localhost' hiveHive multiple users on same tablesWhere does Hive store data on the file system?Not able to hive query from webinterfaceHive Metastore asking for Derby DB in defaultHow to connect hive server with phpconnecting no authentication apache hive with MicroStrategyCannot access Hive via PySparkHive remote postgres metastore






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I am very new to Hadoop and some how we managed to install it with apache distribution and Derby database.



My requirement is having multiple users to access hive at a single time. But right now we are only able to allow a single user at a time.



I searched some of the blogs but haven't found the solution.



Could some one help me with solution?










share|improve this question
































    0















    I am very new to Hadoop and some how we managed to install it with apache distribution and Derby database.



    My requirement is having multiple users to access hive at a single time. But right now we are only able to allow a single user at a time.



    I searched some of the blogs but haven't found the solution.



    Could some one help me with solution?










    share|improve this question




























      0












      0








      0








      I am very new to Hadoop and some how we managed to install it with apache distribution and Derby database.



      My requirement is having multiple users to access hive at a single time. But right now we are only able to allow a single user at a time.



      I searched some of the blogs but haven't found the solution.



      Could some one help me with solution?










      share|improve this question
















      I am very new to Hadoop and some how we managed to install it with apache distribution and Derby database.



      My requirement is having multiple users to access hive at a single time. But right now we are only able to allow a single user at a time.



      I searched some of the blogs but haven't found the solution.



      Could some one help me with solution?







      hadoop hive






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 9 '15 at 13:35









      Cameron

      2,18919 silver badges34 bronze badges




      2,18919 silver badges34 bronze badges










      asked Jan 9 '15 at 12:50









      midhun bezawadamidhun bezawada

      12 bronze badges




      12 bronze badges

























          2 Answers
          2






          active

          oldest

          votes


















          1














          Derby only allows single connection (process) to access the database at a give time, hence only one user can access the Hive.



          Upgrade your hive metastore to either MySQL, PostgreSQL to support multiple concurrent connections to Hive.



          For upgrading your metastore from Derby to MySQL/PostgreSQL there are lot resources online here's some of them:



          • From Cloudera

          • From Apache Hive Wiki





          share|improve this answer


































            0














            There are many different ways to access metastore by multiple users concurrently.



            1. Embedded metastore.(default metastore:derby)

            2. Local metastore.

            3. Remote metastore.

            Let's see the usage of above mentioned metastore.



            Embedded metastore :



            This metastore is only using for Unit test. And it's limitation that, it allows only a user to access Hive at same (Multiple sessions are not allowed and it throws error).



            Local metastore:(By using MySql or Oracle DB)



            To overcome the default metastore limitation the Local metastore is used, this can allow multiple user in same JVM (It allows multiple session on same machine). To setup this mode see below of this answer.



            Remote Metastore(This metastore is using in production)



            In a same project multiple hive users need to worked on it, and they can use hive concurrently on different machine but the metadata should be stored on centralized by using MySql or Oracle, ect,. Here, hive are running on each users JVM, If users are are processing, then they want to communicate with metastore which is centralized, for communicating we are going with Thrift Network APIs. To setup this mode see below of this answer.



            METASTORE SETUP FOR MULTIPLE USER:



            Step 1 : Download and install mysql server



            sudo apt-get install mysql-server


            Step 2 : Download and install JDBC driver.



            sudo apt-get install libmysql-java


            Step 3 : We need to copy the downloaded JDBC driver to hive/lib/ or link the JDBC location to hive/lib.



            -Goto to the $HIVE_HOME/lib folder and create a link to the MySQL JDBC library.



            ln -s /usr/share/java/mysql-connector-java.jar


            Step 4 : Create users on metastore to access remotly and locally.



            mysql -u root -p <Give password while installing DB>
            mysql> CREATE USER 'user1'@'%' IDENTIFIED BY 'user1pass';
            mysql> GRANT ALL PRIVILEGES ON *.* TO 'hduserdb'@'%' WITH GRANT OPTION;
            mysql> flush privileges;


            • IF you want multiple user to access do repeat the step 4 by giving user name, password.

            Step 5 :: Goto hive/conf/hive-site.xml (If it's not available create it.)



            <configuration>

            <property>
            <name>javax.jdo.option.ConnectionURL</name>
            <value>jdbc:mysql://localhost:3306/metastore?createDatabaseIfNotExist=true</value>
            <description>replace -master- with your database hostname</description>
            </property>

            <property>
            <name>javax.jdo.option.ConnectionDriverName</name>
            <value>com.mysql.jdbc.Driver</value>
            <description>MySQL JDBC driver class</description>
            </property>

            <property>
            <name>javax.jdo.option.ConnectionUserName</name>
            <value>user1</value>
            <description>user name for connecting to mysql server</description>
            </property>

            <property>
            <name>javax.jdo.option.ConnectionPassword</name>
            <value>user1pass</value>
            <description>password for connecting to mysql server</description>
            </property>

            <property>
            <name>hive.metastore.uris</name>
            <value>thrift://slave2:9083</value>
            <description>Here use your metasore host name to access from different machine</description>
            </property>

            </configuration>


            • Do repeat only Step 5 on all users machine and change user name and password according.

            Step 6 : From hive-2.. onwards we must give this comment.



            slave@ubuntu~$: schematool -initSchema -dbType mysql 


            Step 7 : To start hive metastore server



            ~$: hive --service metastore &


            Now, check hive with different user concurrently from different machine.






            share|improve this answer



























              Your Answer






              StackExchange.ifUsing("editor", function ()
              StackExchange.using("externalEditor", function ()
              StackExchange.using("snippets", function ()
              StackExchange.snippets.init();
              );
              );
              , "code-snippets");

              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "1"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );













              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f27860982%2fhow-to-connect-hive-with-multiple-users%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              1














              Derby only allows single connection (process) to access the database at a give time, hence only one user can access the Hive.



              Upgrade your hive metastore to either MySQL, PostgreSQL to support multiple concurrent connections to Hive.



              For upgrading your metastore from Derby to MySQL/PostgreSQL there are lot resources online here's some of them:



              • From Cloudera

              • From Apache Hive Wiki





              share|improve this answer































                1














                Derby only allows single connection (process) to access the database at a give time, hence only one user can access the Hive.



                Upgrade your hive metastore to either MySQL, PostgreSQL to support multiple concurrent connections to Hive.



                For upgrading your metastore from Derby to MySQL/PostgreSQL there are lot resources online here's some of them:



                • From Cloudera

                • From Apache Hive Wiki





                share|improve this answer





























                  1












                  1








                  1







                  Derby only allows single connection (process) to access the database at a give time, hence only one user can access the Hive.



                  Upgrade your hive metastore to either MySQL, PostgreSQL to support multiple concurrent connections to Hive.



                  For upgrading your metastore from Derby to MySQL/PostgreSQL there are lot resources online here's some of them:



                  • From Cloudera

                  • From Apache Hive Wiki





                  share|improve this answer















                  Derby only allows single connection (process) to access the database at a give time, hence only one user can access the Hive.



                  Upgrade your hive metastore to either MySQL, PostgreSQL to support multiple concurrent connections to Hive.



                  For upgrading your metastore from Derby to MySQL/PostgreSQL there are lot resources online here's some of them:



                  • From Cloudera

                  • From Apache Hive Wiki






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Jan 9 '15 at 13:20

























                  answered Jan 9 '15 at 12:55









                  AshrithAshrith

                  5,7301 gold badge22 silver badges33 bronze badges




                  5,7301 gold badge22 silver badges33 bronze badges


























                      0














                      There are many different ways to access metastore by multiple users concurrently.



                      1. Embedded metastore.(default metastore:derby)

                      2. Local metastore.

                      3. Remote metastore.

                      Let's see the usage of above mentioned metastore.



                      Embedded metastore :



                      This metastore is only using for Unit test. And it's limitation that, it allows only a user to access Hive at same (Multiple sessions are not allowed and it throws error).



                      Local metastore:(By using MySql or Oracle DB)



                      To overcome the default metastore limitation the Local metastore is used, this can allow multiple user in same JVM (It allows multiple session on same machine). To setup this mode see below of this answer.



                      Remote Metastore(This metastore is using in production)



                      In a same project multiple hive users need to worked on it, and they can use hive concurrently on different machine but the metadata should be stored on centralized by using MySql or Oracle, ect,. Here, hive are running on each users JVM, If users are are processing, then they want to communicate with metastore which is centralized, for communicating we are going with Thrift Network APIs. To setup this mode see below of this answer.



                      METASTORE SETUP FOR MULTIPLE USER:



                      Step 1 : Download and install mysql server



                      sudo apt-get install mysql-server


                      Step 2 : Download and install JDBC driver.



                      sudo apt-get install libmysql-java


                      Step 3 : We need to copy the downloaded JDBC driver to hive/lib/ or link the JDBC location to hive/lib.



                      -Goto to the $HIVE_HOME/lib folder and create a link to the MySQL JDBC library.



                      ln -s /usr/share/java/mysql-connector-java.jar


                      Step 4 : Create users on metastore to access remotly and locally.



                      mysql -u root -p <Give password while installing DB>
                      mysql> CREATE USER 'user1'@'%' IDENTIFIED BY 'user1pass';
                      mysql> GRANT ALL PRIVILEGES ON *.* TO 'hduserdb'@'%' WITH GRANT OPTION;
                      mysql> flush privileges;


                      • IF you want multiple user to access do repeat the step 4 by giving user name, password.

                      Step 5 :: Goto hive/conf/hive-site.xml (If it's not available create it.)



                      <configuration>

                      <property>
                      <name>javax.jdo.option.ConnectionURL</name>
                      <value>jdbc:mysql://localhost:3306/metastore?createDatabaseIfNotExist=true</value>
                      <description>replace -master- with your database hostname</description>
                      </property>

                      <property>
                      <name>javax.jdo.option.ConnectionDriverName</name>
                      <value>com.mysql.jdbc.Driver</value>
                      <description>MySQL JDBC driver class</description>
                      </property>

                      <property>
                      <name>javax.jdo.option.ConnectionUserName</name>
                      <value>user1</value>
                      <description>user name for connecting to mysql server</description>
                      </property>

                      <property>
                      <name>javax.jdo.option.ConnectionPassword</name>
                      <value>user1pass</value>
                      <description>password for connecting to mysql server</description>
                      </property>

                      <property>
                      <name>hive.metastore.uris</name>
                      <value>thrift://slave2:9083</value>
                      <description>Here use your metasore host name to access from different machine</description>
                      </property>

                      </configuration>


                      • Do repeat only Step 5 on all users machine and change user name and password according.

                      Step 6 : From hive-2.. onwards we must give this comment.



                      slave@ubuntu~$: schematool -initSchema -dbType mysql 


                      Step 7 : To start hive metastore server



                      ~$: hive --service metastore &


                      Now, check hive with different user concurrently from different machine.






                      share|improve this answer





























                        0














                        There are many different ways to access metastore by multiple users concurrently.



                        1. Embedded metastore.(default metastore:derby)

                        2. Local metastore.

                        3. Remote metastore.

                        Let's see the usage of above mentioned metastore.



                        Embedded metastore :



                        This metastore is only using for Unit test. And it's limitation that, it allows only a user to access Hive at same (Multiple sessions are not allowed and it throws error).



                        Local metastore:(By using MySql or Oracle DB)



                        To overcome the default metastore limitation the Local metastore is used, this can allow multiple user in same JVM (It allows multiple session on same machine). To setup this mode see below of this answer.



                        Remote Metastore(This metastore is using in production)



                        In a same project multiple hive users need to worked on it, and they can use hive concurrently on different machine but the metadata should be stored on centralized by using MySql or Oracle, ect,. Here, hive are running on each users JVM, If users are are processing, then they want to communicate with metastore which is centralized, for communicating we are going with Thrift Network APIs. To setup this mode see below of this answer.



                        METASTORE SETUP FOR MULTIPLE USER:



                        Step 1 : Download and install mysql server



                        sudo apt-get install mysql-server


                        Step 2 : Download and install JDBC driver.



                        sudo apt-get install libmysql-java


                        Step 3 : We need to copy the downloaded JDBC driver to hive/lib/ or link the JDBC location to hive/lib.



                        -Goto to the $HIVE_HOME/lib folder and create a link to the MySQL JDBC library.



                        ln -s /usr/share/java/mysql-connector-java.jar


                        Step 4 : Create users on metastore to access remotly and locally.



                        mysql -u root -p <Give password while installing DB>
                        mysql> CREATE USER 'user1'@'%' IDENTIFIED BY 'user1pass';
                        mysql> GRANT ALL PRIVILEGES ON *.* TO 'hduserdb'@'%' WITH GRANT OPTION;
                        mysql> flush privileges;


                        • IF you want multiple user to access do repeat the step 4 by giving user name, password.

                        Step 5 :: Goto hive/conf/hive-site.xml (If it's not available create it.)



                        <configuration>

                        <property>
                        <name>javax.jdo.option.ConnectionURL</name>
                        <value>jdbc:mysql://localhost:3306/metastore?createDatabaseIfNotExist=true</value>
                        <description>replace -master- with your database hostname</description>
                        </property>

                        <property>
                        <name>javax.jdo.option.ConnectionDriverName</name>
                        <value>com.mysql.jdbc.Driver</value>
                        <description>MySQL JDBC driver class</description>
                        </property>

                        <property>
                        <name>javax.jdo.option.ConnectionUserName</name>
                        <value>user1</value>
                        <description>user name for connecting to mysql server</description>
                        </property>

                        <property>
                        <name>javax.jdo.option.ConnectionPassword</name>
                        <value>user1pass</value>
                        <description>password for connecting to mysql server</description>
                        </property>

                        <property>
                        <name>hive.metastore.uris</name>
                        <value>thrift://slave2:9083</value>
                        <description>Here use your metasore host name to access from different machine</description>
                        </property>

                        </configuration>


                        • Do repeat only Step 5 on all users machine and change user name and password according.

                        Step 6 : From hive-2.. onwards we must give this comment.



                        slave@ubuntu~$: schematool -initSchema -dbType mysql 


                        Step 7 : To start hive metastore server



                        ~$: hive --service metastore &


                        Now, check hive with different user concurrently from different machine.






                        share|improve this answer



























                          0












                          0








                          0







                          There are many different ways to access metastore by multiple users concurrently.



                          1. Embedded metastore.(default metastore:derby)

                          2. Local metastore.

                          3. Remote metastore.

                          Let's see the usage of above mentioned metastore.



                          Embedded metastore :



                          This metastore is only using for Unit test. And it's limitation that, it allows only a user to access Hive at same (Multiple sessions are not allowed and it throws error).



                          Local metastore:(By using MySql or Oracle DB)



                          To overcome the default metastore limitation the Local metastore is used, this can allow multiple user in same JVM (It allows multiple session on same machine). To setup this mode see below of this answer.



                          Remote Metastore(This metastore is using in production)



                          In a same project multiple hive users need to worked on it, and they can use hive concurrently on different machine but the metadata should be stored on centralized by using MySql or Oracle, ect,. Here, hive are running on each users JVM, If users are are processing, then they want to communicate with metastore which is centralized, for communicating we are going with Thrift Network APIs. To setup this mode see below of this answer.



                          METASTORE SETUP FOR MULTIPLE USER:



                          Step 1 : Download and install mysql server



                          sudo apt-get install mysql-server


                          Step 2 : Download and install JDBC driver.



                          sudo apt-get install libmysql-java


                          Step 3 : We need to copy the downloaded JDBC driver to hive/lib/ or link the JDBC location to hive/lib.



                          -Goto to the $HIVE_HOME/lib folder and create a link to the MySQL JDBC library.



                          ln -s /usr/share/java/mysql-connector-java.jar


                          Step 4 : Create users on metastore to access remotly and locally.



                          mysql -u root -p <Give password while installing DB>
                          mysql> CREATE USER 'user1'@'%' IDENTIFIED BY 'user1pass';
                          mysql> GRANT ALL PRIVILEGES ON *.* TO 'hduserdb'@'%' WITH GRANT OPTION;
                          mysql> flush privileges;


                          • IF you want multiple user to access do repeat the step 4 by giving user name, password.

                          Step 5 :: Goto hive/conf/hive-site.xml (If it's not available create it.)



                          <configuration>

                          <property>
                          <name>javax.jdo.option.ConnectionURL</name>
                          <value>jdbc:mysql://localhost:3306/metastore?createDatabaseIfNotExist=true</value>
                          <description>replace -master- with your database hostname</description>
                          </property>

                          <property>
                          <name>javax.jdo.option.ConnectionDriverName</name>
                          <value>com.mysql.jdbc.Driver</value>
                          <description>MySQL JDBC driver class</description>
                          </property>

                          <property>
                          <name>javax.jdo.option.ConnectionUserName</name>
                          <value>user1</value>
                          <description>user name for connecting to mysql server</description>
                          </property>

                          <property>
                          <name>javax.jdo.option.ConnectionPassword</name>
                          <value>user1pass</value>
                          <description>password for connecting to mysql server</description>
                          </property>

                          <property>
                          <name>hive.metastore.uris</name>
                          <value>thrift://slave2:9083</value>
                          <description>Here use your metasore host name to access from different machine</description>
                          </property>

                          </configuration>


                          • Do repeat only Step 5 on all users machine and change user name and password according.

                          Step 6 : From hive-2.. onwards we must give this comment.



                          slave@ubuntu~$: schematool -initSchema -dbType mysql 


                          Step 7 : To start hive metastore server



                          ~$: hive --service metastore &


                          Now, check hive with different user concurrently from different machine.






                          share|improve this answer













                          There are many different ways to access metastore by multiple users concurrently.



                          1. Embedded metastore.(default metastore:derby)

                          2. Local metastore.

                          3. Remote metastore.

                          Let's see the usage of above mentioned metastore.



                          Embedded metastore :



                          This metastore is only using for Unit test. And it's limitation that, it allows only a user to access Hive at same (Multiple sessions are not allowed and it throws error).



                          Local metastore:(By using MySql or Oracle DB)



                          To overcome the default metastore limitation the Local metastore is used, this can allow multiple user in same JVM (It allows multiple session on same machine). To setup this mode see below of this answer.



                          Remote Metastore(This metastore is using in production)



                          In a same project multiple hive users need to worked on it, and they can use hive concurrently on different machine but the metadata should be stored on centralized by using MySql or Oracle, ect,. Here, hive are running on each users JVM, If users are are processing, then they want to communicate with metastore which is centralized, for communicating we are going with Thrift Network APIs. To setup this mode see below of this answer.



                          METASTORE SETUP FOR MULTIPLE USER:



                          Step 1 : Download and install mysql server



                          sudo apt-get install mysql-server


                          Step 2 : Download and install JDBC driver.



                          sudo apt-get install libmysql-java


                          Step 3 : We need to copy the downloaded JDBC driver to hive/lib/ or link the JDBC location to hive/lib.



                          -Goto to the $HIVE_HOME/lib folder and create a link to the MySQL JDBC library.



                          ln -s /usr/share/java/mysql-connector-java.jar


                          Step 4 : Create users on metastore to access remotly and locally.



                          mysql -u root -p <Give password while installing DB>
                          mysql> CREATE USER 'user1'@'%' IDENTIFIED BY 'user1pass';
                          mysql> GRANT ALL PRIVILEGES ON *.* TO 'hduserdb'@'%' WITH GRANT OPTION;
                          mysql> flush privileges;


                          • IF you want multiple user to access do repeat the step 4 by giving user name, password.

                          Step 5 :: Goto hive/conf/hive-site.xml (If it's not available create it.)



                          <configuration>

                          <property>
                          <name>javax.jdo.option.ConnectionURL</name>
                          <value>jdbc:mysql://localhost:3306/metastore?createDatabaseIfNotExist=true</value>
                          <description>replace -master- with your database hostname</description>
                          </property>

                          <property>
                          <name>javax.jdo.option.ConnectionDriverName</name>
                          <value>com.mysql.jdbc.Driver</value>
                          <description>MySQL JDBC driver class</description>
                          </property>

                          <property>
                          <name>javax.jdo.option.ConnectionUserName</name>
                          <value>user1</value>
                          <description>user name for connecting to mysql server</description>
                          </property>

                          <property>
                          <name>javax.jdo.option.ConnectionPassword</name>
                          <value>user1pass</value>
                          <description>password for connecting to mysql server</description>
                          </property>

                          <property>
                          <name>hive.metastore.uris</name>
                          <value>thrift://slave2:9083</value>
                          <description>Here use your metasore host name to access from different machine</description>
                          </property>

                          </configuration>


                          • Do repeat only Step 5 on all users machine and change user name and password according.

                          Step 6 : From hive-2.. onwards we must give this comment.



                          slave@ubuntu~$: schematool -initSchema -dbType mysql 


                          Step 7 : To start hive metastore server



                          ~$: hive --service metastore &


                          Now, check hive with different user concurrently from different machine.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Aug 9 '18 at 8:20









                          ArunTnpArunTnp

                          247 bronze badges




                          247 bronze badges






























                              draft saved

                              draft discarded
















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f27860982%2fhow-to-connect-hive-with-multiple-users%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                              Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                              Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript