Torque: Unauthorized Request





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







6















Following this guide:



https://jabriffa.wordpress.com/2015/02/11/installing-torquepbs-job-scheduler-on-ubuntu-14-04-lts/



I installed TORQUE on Ubuntu 16-04-lts (he claims the process works the same on 16.04)



A short summary of his install instructions so this can be self sufficient:



apt-get install torque-server torque-client torque-mom torque-pam
/etc/init.d/torque-mom stop
/etc/init.d/torque-scheduler stop
/etc/init.d/torque-server stop
pbs_server -t create

killall pbs_server

echo SERVER.DOMAIN > /etc/torque/server_name
echo SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/acl_hosts
echo root@SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/operators
echo root@SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/managers

echo "SERVER.DOMAIN np=4" > /var/spool/torque/server_priv/nodes
echo SERVER.DOMAIN > /var/spool/torque/mom_priv/config

/etc/init.d/torque-server start
/etc/init.d/torque-scheduler start
/etc/init.d/torque-mom start
# set scheduling properties
qmgr -c 'set server scheduling = true'
qmgr -c 'set server keep_completed = 300'
qmgr -c 'set server mom_job_sync = true


After following his directions up to:



qmgr -c 'set server scheduling = true'


I get the error message



qmgr obj=master.node svr=master.node: Unauthorized Request


I grep the logs as he mentions and find this unhelpful snippet:
grep Unauthorized /var/spool/torque/server_logs/*



08/25/2018 15:48:43;0080;PBS_Server;Req;req_reject;Reject reply code=15007(Unauthorized Request ), aux=0, type=Manager, from root@master.node


This is my hostname:



master


This is my hosts file:



127.0.1.1 master master
127.0.0.1 localhost
10.136.7.155 master.node
10.136.7.155 master
10.136.65.29 slave1
10.136.73.247 slave2
10.136.44.128 slave3


This is how I configured the various config files:



echo master.node > /etc/torque/server_name
echo master.node > /var/spool/torque/server_priv/acl_svr/acl_hosts
echo root@master.node > /var/spool/torque/server_priv/acl_svr/operators
echo root@master.node > /var/spool/torque/server_priv/acl_svr/managers

echo "master.node np=4" > /var/spool/torque/server_priv/nodes
echo master.node > /var/spool/torque/mom_priv/config


Each time I fiddle with it I restart the various daemons with:



/etc/init.d/torque-server restart
/etc/init.d/torque-scheduler restart
/etc/init.d/torque-mom restart


I am currently running as root.



I am at a total loss as to what TORQUE wants here. Why am I unauthorized?



Also qmgr thinks there are no nodes despite having a /var/spool/torque/server_priv/nodes file. Why?



Qmgr: list node
No Active Nodes, nothing done.









share|improve this question





























    6















    Following this guide:



    https://jabriffa.wordpress.com/2015/02/11/installing-torquepbs-job-scheduler-on-ubuntu-14-04-lts/



    I installed TORQUE on Ubuntu 16-04-lts (he claims the process works the same on 16.04)



    A short summary of his install instructions so this can be self sufficient:



    apt-get install torque-server torque-client torque-mom torque-pam
    /etc/init.d/torque-mom stop
    /etc/init.d/torque-scheduler stop
    /etc/init.d/torque-server stop
    pbs_server -t create

    killall pbs_server

    echo SERVER.DOMAIN > /etc/torque/server_name
    echo SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/acl_hosts
    echo root@SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/operators
    echo root@SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/managers

    echo "SERVER.DOMAIN np=4" > /var/spool/torque/server_priv/nodes
    echo SERVER.DOMAIN > /var/spool/torque/mom_priv/config

    /etc/init.d/torque-server start
    /etc/init.d/torque-scheduler start
    /etc/init.d/torque-mom start
    # set scheduling properties
    qmgr -c 'set server scheduling = true'
    qmgr -c 'set server keep_completed = 300'
    qmgr -c 'set server mom_job_sync = true


    After following his directions up to:



    qmgr -c 'set server scheduling = true'


    I get the error message



    qmgr obj=master.node svr=master.node: Unauthorized Request


    I grep the logs as he mentions and find this unhelpful snippet:
    grep Unauthorized /var/spool/torque/server_logs/*



    08/25/2018 15:48:43;0080;PBS_Server;Req;req_reject;Reject reply code=15007(Unauthorized Request ), aux=0, type=Manager, from root@master.node


    This is my hostname:



    master


    This is my hosts file:



    127.0.1.1 master master
    127.0.0.1 localhost
    10.136.7.155 master.node
    10.136.7.155 master
    10.136.65.29 slave1
    10.136.73.247 slave2
    10.136.44.128 slave3


    This is how I configured the various config files:



    echo master.node > /etc/torque/server_name
    echo master.node > /var/spool/torque/server_priv/acl_svr/acl_hosts
    echo root@master.node > /var/spool/torque/server_priv/acl_svr/operators
    echo root@master.node > /var/spool/torque/server_priv/acl_svr/managers

    echo "master.node np=4" > /var/spool/torque/server_priv/nodes
    echo master.node > /var/spool/torque/mom_priv/config


    Each time I fiddle with it I restart the various daemons with:



    /etc/init.d/torque-server restart
    /etc/init.d/torque-scheduler restart
    /etc/init.d/torque-mom restart


    I am currently running as root.



    I am at a total loss as to what TORQUE wants here. Why am I unauthorized?



    Also qmgr thinks there are no nodes despite having a /var/spool/torque/server_priv/nodes file. Why?



    Qmgr: list node
    No Active Nodes, nothing done.









    share|improve this question

























      6












      6








      6


      1






      Following this guide:



      https://jabriffa.wordpress.com/2015/02/11/installing-torquepbs-job-scheduler-on-ubuntu-14-04-lts/



      I installed TORQUE on Ubuntu 16-04-lts (he claims the process works the same on 16.04)



      A short summary of his install instructions so this can be self sufficient:



      apt-get install torque-server torque-client torque-mom torque-pam
      /etc/init.d/torque-mom stop
      /etc/init.d/torque-scheduler stop
      /etc/init.d/torque-server stop
      pbs_server -t create

      killall pbs_server

      echo SERVER.DOMAIN > /etc/torque/server_name
      echo SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/acl_hosts
      echo root@SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/operators
      echo root@SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/managers

      echo "SERVER.DOMAIN np=4" > /var/spool/torque/server_priv/nodes
      echo SERVER.DOMAIN > /var/spool/torque/mom_priv/config

      /etc/init.d/torque-server start
      /etc/init.d/torque-scheduler start
      /etc/init.d/torque-mom start
      # set scheduling properties
      qmgr -c 'set server scheduling = true'
      qmgr -c 'set server keep_completed = 300'
      qmgr -c 'set server mom_job_sync = true


      After following his directions up to:



      qmgr -c 'set server scheduling = true'


      I get the error message



      qmgr obj=master.node svr=master.node: Unauthorized Request


      I grep the logs as he mentions and find this unhelpful snippet:
      grep Unauthorized /var/spool/torque/server_logs/*



      08/25/2018 15:48:43;0080;PBS_Server;Req;req_reject;Reject reply code=15007(Unauthorized Request ), aux=0, type=Manager, from root@master.node


      This is my hostname:



      master


      This is my hosts file:



      127.0.1.1 master master
      127.0.0.1 localhost
      10.136.7.155 master.node
      10.136.7.155 master
      10.136.65.29 slave1
      10.136.73.247 slave2
      10.136.44.128 slave3


      This is how I configured the various config files:



      echo master.node > /etc/torque/server_name
      echo master.node > /var/spool/torque/server_priv/acl_svr/acl_hosts
      echo root@master.node > /var/spool/torque/server_priv/acl_svr/operators
      echo root@master.node > /var/spool/torque/server_priv/acl_svr/managers

      echo "master.node np=4" > /var/spool/torque/server_priv/nodes
      echo master.node > /var/spool/torque/mom_priv/config


      Each time I fiddle with it I restart the various daemons with:



      /etc/init.d/torque-server restart
      /etc/init.d/torque-scheduler restart
      /etc/init.d/torque-mom restart


      I am currently running as root.



      I am at a total loss as to what TORQUE wants here. Why am I unauthorized?



      Also qmgr thinks there are no nodes despite having a /var/spool/torque/server_priv/nodes file. Why?



      Qmgr: list node
      No Active Nodes, nothing done.









      share|improve this question














      Following this guide:



      https://jabriffa.wordpress.com/2015/02/11/installing-torquepbs-job-scheduler-on-ubuntu-14-04-lts/



      I installed TORQUE on Ubuntu 16-04-lts (he claims the process works the same on 16.04)



      A short summary of his install instructions so this can be self sufficient:



      apt-get install torque-server torque-client torque-mom torque-pam
      /etc/init.d/torque-mom stop
      /etc/init.d/torque-scheduler stop
      /etc/init.d/torque-server stop
      pbs_server -t create

      killall pbs_server

      echo SERVER.DOMAIN > /etc/torque/server_name
      echo SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/acl_hosts
      echo root@SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/operators
      echo root@SERVER.DOMAIN > /var/spool/torque/server_priv/acl_svr/managers

      echo "SERVER.DOMAIN np=4" > /var/spool/torque/server_priv/nodes
      echo SERVER.DOMAIN > /var/spool/torque/mom_priv/config

      /etc/init.d/torque-server start
      /etc/init.d/torque-scheduler start
      /etc/init.d/torque-mom start
      # set scheduling properties
      qmgr -c 'set server scheduling = true'
      qmgr -c 'set server keep_completed = 300'
      qmgr -c 'set server mom_job_sync = true


      After following his directions up to:



      qmgr -c 'set server scheduling = true'


      I get the error message



      qmgr obj=master.node svr=master.node: Unauthorized Request


      I grep the logs as he mentions and find this unhelpful snippet:
      grep Unauthorized /var/spool/torque/server_logs/*



      08/25/2018 15:48:43;0080;PBS_Server;Req;req_reject;Reject reply code=15007(Unauthorized Request ), aux=0, type=Manager, from root@master.node


      This is my hostname:



      master


      This is my hosts file:



      127.0.1.1 master master
      127.0.0.1 localhost
      10.136.7.155 master.node
      10.136.7.155 master
      10.136.65.29 slave1
      10.136.73.247 slave2
      10.136.44.128 slave3


      This is how I configured the various config files:



      echo master.node > /etc/torque/server_name
      echo master.node > /var/spool/torque/server_priv/acl_svr/acl_hosts
      echo root@master.node > /var/spool/torque/server_priv/acl_svr/operators
      echo root@master.node > /var/spool/torque/server_priv/acl_svr/managers

      echo "master.node np=4" > /var/spool/torque/server_priv/nodes
      echo master.node > /var/spool/torque/mom_priv/config


      Each time I fiddle with it I restart the various daemons with:



      /etc/init.d/torque-server restart
      /etc/init.d/torque-scheduler restart
      /etc/init.d/torque-mom restart


      I am currently running as root.



      I am at a total loss as to what TORQUE wants here. Why am I unauthorized?



      Also qmgr thinks there are no nodes despite having a /var/spool/torque/server_priv/nodes file. Why?



      Qmgr: list node
      No Active Nodes, nothing done.






      networking server hosts torque






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 25 '18 at 16:02









      John DunlapJohn Dunlap

      111116




      111116






















          1 Answer
          1






          active

          oldest

          votes


















          0














          I followed the instructions from the same link and has the same error.



          The problem is the server is running on the localhost hence if you specified an FQDN other than localhost, the request will appear to come from an unauthorized user.



          I had to change server domain in my case to localhost:



          echo localhost > /etc/torque/server_name
          echo localhost > /var/spool/torque/server_priv/acl_svr/acl_hosts
          echo root@localhost > /var/spool/torque/server_priv/acl_svr/operators
          ...
          ...





          share|improve this answer
























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            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%2faskubuntu.com%2fquestions%2f1068884%2ftorque-unauthorized-request%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I followed the instructions from the same link and has the same error.



            The problem is the server is running on the localhost hence if you specified an FQDN other than localhost, the request will appear to come from an unauthorized user.



            I had to change server domain in my case to localhost:



            echo localhost > /etc/torque/server_name
            echo localhost > /var/spool/torque/server_priv/acl_svr/acl_hosts
            echo root@localhost > /var/spool/torque/server_priv/acl_svr/operators
            ...
            ...





            share|improve this answer




























              0














              I followed the instructions from the same link and has the same error.



              The problem is the server is running on the localhost hence if you specified an FQDN other than localhost, the request will appear to come from an unauthorized user.



              I had to change server domain in my case to localhost:



              echo localhost > /etc/torque/server_name
              echo localhost > /var/spool/torque/server_priv/acl_svr/acl_hosts
              echo root@localhost > /var/spool/torque/server_priv/acl_svr/operators
              ...
              ...





              share|improve this answer


























                0












                0








                0







                I followed the instructions from the same link and has the same error.



                The problem is the server is running on the localhost hence if you specified an FQDN other than localhost, the request will appear to come from an unauthorized user.



                I had to change server domain in my case to localhost:



                echo localhost > /etc/torque/server_name
                echo localhost > /var/spool/torque/server_priv/acl_svr/acl_hosts
                echo root@localhost > /var/spool/torque/server_priv/acl_svr/operators
                ...
                ...





                share|improve this answer













                I followed the instructions from the same link and has the same error.



                The problem is the server is running on the localhost hence if you specified an FQDN other than localhost, the request will appear to come from an unauthorized user.



                I had to change server domain in my case to localhost:



                echo localhost > /etc/torque/server_name
                echo localhost > /var/spool/torque/server_priv/acl_svr/acl_hosts
                echo root@localhost > /var/spool/torque/server_priv/acl_svr/operators
                ...
                ...






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Feb 13 at 7:22









                T. ObadiahT. Obadiah

                6913




                6913






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • 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%2faskubuntu.com%2fquestions%2f1068884%2ftorque-unauthorized-request%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

                    Human spaceflight

                    Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

                    File:DeusFollowingSea.jpg