Announcement

Collapse
No announcement yet.

Login admin with error 404

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Login admin with error 404

    Hello,

    I've a problem with a fresh installation of Hyperion on my Debian testing machine.

    After followed subsection about installation "Open-Xchange Admin GUI" in the documentation found here http://www.open-xchange.com/wiki//wi...ange_Admin_GUI, when I try to connect oxadmin user on login page, I've this error:
    Error : 404 - Not Found

    And in my Apache2 log:
    [Mon Mar 31 23:17:30 2008] [error] [client XXX.XXX.XXX.XXX] File does not exist: /var/www/html/oxadmin/login, referer: http://myserver/ox/admin/

    What's wrong please ?

    Thank you in advance.

    Binerf

  • #2
    Hi,

    did you add the /oxadmin/ servlet path to the mod_jk configuration?

    Greetings

    Comment


    • #3
      Hi,

      This is my /etc/apache2/conf.d/ox.conf:
      <IfModule mod_jk.c>
      JkWorkersFile /etc/apache2/workers.properties
      JkLogFile /var/log/apache2/mod_jk.log
      JkLogLevel debug
      JkMount /ajax/* ajp13_worker
      JkMount /servlet/* ajp13_worker
      JkMount /infostore ajp13_worker
      JkMount /infostore/* ajp13_worker
      JkMount /oxadmin/* ajp13_worker
      JkMount /oxadmin ajp13_worker
      </IfModule>


      and this my /etc/apache2/workers.properties:
      ps=/
      worker.list=ajp13_worker
      worker.ajp13_worker.port=8009
      worker.ajp13_worker.host=localhost
      worker.ajp13_worker.type=ajp13


      Binerf

      Comment


      • #4
        Is there a mistake in my conf files ?

        Binerf

        Comment


        • #5
          Hi,

          those configs look ok - but i am just a bit curious about the /html/ at you wwwroot - is there some kind of redirect? The logs say that a request from /ox/admin is redirected to /html/oxadmin - i guess at /html are no oxadmin files available, that's why the 404 occurs.

          Greetings
          Last edited by Martin Heiland; 04-06-2008, 01:27 PM.

          Comment


          • #6
            Originally posted by Martin Braun View Post
            Hi,

            those configs look ok - but i am just a bit curious about the /html/ at you wwwroot - is there some kind of redirect? The logs say that a request from /ox/admin is redirected to /html/oxadmin - i guess at /html are no oxadmin files available, that's why the 404 occurs.

            Greetings
            Hi,

            Yes my DocumentRoot is /var/www/html in my apache file conf.

            But I don't understand if I would find a "login" directory or file in /var/www/html/oxadmin and if yes, which part of installation would create this login directory or file.
            Perhaps I've forgotten this part...

            Thank you.

            Binerf

            Comment


            • #7
              Hi,

              "login" is part of the servlet provided at /oxadmin - it is no directory or file but a interface to mod_jk to call groupware functionality. What do you get when calling:

              http://www.your-server.tld/oxadmin/ (with trailing /)


              I'm pretty sure the servlet is linked to /oxadmin and not to /html/oxadmin which causes this issue.

              Comment

              Working...
              X