Send Netdot-users mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://osl.uoregon.edu/mailman/listinfo/netdot-users
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Netdot-users digest..."
Today's Topics:
1. Can't login as admin to netdot (Seun Ojedeji)
2. Re: Can't login as admin to netdot (Phil Regnauld)
3. Re: Can't login as admin to netdot (Seun Ojedeji)
4. Re: Can't login as admin to netdot (Phil Regnauld)
5. Re: Can't login as admin to netdot (Seun Ojedeji)
6. Re: Can't login as admin to netdot (Phil Regnauld)
----------------------------------------------------------------------
Message: 1
Date: Sun, 11 Nov 2012 10:10:09 +0100
From: Seun Ojedeji <[email protected]>
Subject: [Netdot-users] Can't login as admin to netdot
To: [email protected]
Message-ID:
<cad_dc6h+8qta+vpy8qrwrudlw_j5mpz+veofzigmwlrwwpy...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
Hello,
I have netdot running on ubuntu 12.04, but to my surprise after
installation i am unable to login to the interface...i tried admin/admin,
netdot/admin admin/netdot et all...without success.
my apache log is not reporting anything that has to do with authentication
failure
Is there a way of fixing this?
Thanks
--
------------------------------------------------------------------------
*Seun Ojedeji,
Federal University Oye-Ekiti
web: http://www.fuoye.edu.ng
Mobile: +2348035233535
**alt email: <http://goog_1872880453>[email protected]*
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://osl.uoregon.edu/pipermail/netdot-users/attachments/20121111/71f5a6dc/attachment-0001.html
------------------------------
Message: 2
Date: Sun, 11 Nov 2012 13:02:44 +0100
From: Phil Regnauld <[email protected]>
Subject: Re: [Netdot-users] Can't login as admin to netdot
To: Seun Ojedeji <[email protected]>
Cc: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii
Seun Ojedeji (seun.ojedeji) writes:
> Hello,
>
> I have netdot running on ubuntu 12.04, but to my surprise after
> installation i am unable to login to the interface...i tried admin/admin,
> netdot/admin admin/netdot et all...without success.
> my apache log is not reporting anything that has to do with authentication
> failure
> Is there a way of fixing this?
First, are you accessing /netdot or /netdot/ ?
If that doesn't help, you could try resetting the password via the
database. First, check the password:
mysql> select username,password from person where username = 'admin';
+----------+---------------------------------------------+
| username | password |
+----------+---------------------------------------------+
| admin | jGl25bVBBBW96Qi9Te4V37Fnqchz/Eu4qB9vKrRIqRg |
+----------+---------------------------------------------+
... this is the default encrypted string for 'admin' (which makes
me think, Netdot should probably use salt in tha crypt function :)
To reset:
update person set password='jGl25bVBBBW96Qi9Te4V37Fnqchz/Eu4qB9vKrRIqRg' where
username='admin';
... but if it's already set to the above, then you have another
problem. I seem to remember some old issues with sessions...
Phil
------------------------------
Message: 3
Date: Sun, 11 Nov 2012 13:58:49 +0100
From: Seun Ojedeji <[email protected]>
Subject: Re: [Netdot-users] Can't login as admin to netdot
To: Phil Regnauld <[email protected]>
Cc: [email protected]
Message-ID:
<CAD_dc6hqZF6q=hi_nuqbgleqf3gxv7l9w8xe1fgwf9hohrb...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
Hi Phil,
Yeah I tried with both extension also the password is already set and I
have even reset it again, still no luck.
Could you tell me about the session thing, perhaps that's my problem?
Cheers!
On Nov 11, 2012 1:02 PM, "Phil Regnauld" <[email protected]> wrote:
> Seun Ojedeji (seun.ojedeji) writes:
> > Hello,
> >
> > I have netdot running on ubuntu 12.04, but to my surprise after
> > installation i am unable to login to the interface...i tried admin/admin,
> > netdot/admin admin/netdot et all...without success.
> > my apache log is not reporting anything that has to do with
> authentication
> > failure
> > Is there a way of fixing this?
>
> First, are you accessing /netdot or /netdot/ ?
>
> If that doesn't help, you could try resetting the password via the
> database. First, check the password:
>
> mysql> select username,password from person where username = 'admin';
>
> +----------+---------------------------------------------+
> | username | password |
> +----------+---------------------------------------------+
> | admin | jGl25bVBBBW96Qi9Te4V37Fnqchz/Eu4qB9vKrRIqRg |
> +----------+---------------------------------------------+
>
> ... this is the default encrypted string for 'admin' (which makes
> me think, Netdot should probably use salt in tha crypt function :)
>
> To reset:
>
> update person set password='jGl25bVBBBW96Qi9Te4V37Fnqchz/Eu4qB9vKrRIqRg'
> where username='admin';
>
> ... but if it's already set to the above, then you have another
> problem. I seem to remember some old issues with sessions...
>
> Phil
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://osl.uoregon.edu/pipermail/netdot-users/attachments/20121111/5cf2242d/attachment-0001.html
------------------------------
Message: 4
Date: Sun, 11 Nov 2012 15:04:34 +0100
From: Phil Regnauld <[email protected]>
Subject: Re: [Netdot-users] Can't login as admin to netdot
To: Seun Ojedeji <[email protected]>
Cc: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii
Seun Ojedeji (seun.ojedeji) writes:
> Hi Phil,
> Yeah I tried with both extension also the password is already set and I
> have even reset it again, still no luck.
> Could you tell me about the session thing, perhaps that's my problem?
Hmm, can't find the reference - there are no messages in the logs ?
(Both access and error logs)
Debugging should be turned on already in
/etc/apache2/conf.d/netdot_apache2_local.conf - so it would complain
if there was a problem with the backend.
What browser are you using ? Are you allowing cookies ?
I have installed NetDot on Ubuntu 12.04 last week and it worked like
a charm...
Phil
------------------------------
Message: 5
Date: Sun, 11 Nov 2012 15:32:46 +0100
From: Seun Ojedeji <[email protected]>
Subject: Re: [Netdot-users] Can't login as admin to netdot
To: Phil Regnauld <[email protected]>
Cc: [email protected]
Message-ID:
<cad_dc6j7kscoxwjzvjfwm4pf-onn7cezmnxnojqzcfn4oxf...@mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"
On Sun, Nov 11, 2012 at 3:04 PM, Phil Regnauld <[email protected]> wrote:
> Hmm, can't find the reference - there are no messages in the logs ?
> (Both access
n" "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:14.0) Gecko/20100101
Firefox/14.0.1"
192.168.2.209 - - [11/Nov/2012:15:25:25 +0100] "GET
/netdot/java_script/jsrsClient.js HTTP/1.1" 403 1423 "
http://ubuntu.ui.edu.ng/netdot/NetdotLogin" "Mozilla/5.0 (X11; Ubuntu;
Linux i686; rv:14.0) Gecko/20100101 Firefox/14.0.1"
192.168.2.209 - - [11/Nov/2012:15:25:26 +0100] "GET
/netdot/java_script/select.js HTTP/1.1" 403 1423 "
http://ubuntu.ui.edu.ng/netdot/NetdotLogin" "Mozilla/5.0 (X11; Ubuntu;
Linux i686; rv:14.0) Gecko/20100101 Firefox/14.0.1"
192.168.2.209 - - [11/Nov/2012:15:25:26 +0100] "GET
/netdot/java_script/jsrsClient.js HTTP/1.1" 403 1423 "
http://ubuntu.ui.edu.ng/netdot/NetdotLogin" "Mozilla/5.0 (X11; Ubuntu;
Linux i686; rv:14.0) Gecko/20100101 Firefox/14.0.1"
192.168.2.209 - - [11/Nov/2012:15:25:26 +0100] "GET
/netdot/java_script/toggle.js HTTP/1.1" 403 1423 "
http://ubuntu.ui.edu.ng/netdot/NetdotLogin" "Mozilla/5.0 (X11; Ubuntu;
Linux i686; rv:14.0) Gecko/20100101 Firefox/14.0.1"
and error logs)
>
[Sun Nov 11 15:25:26 2012] [error] Could not load
Apache2::SiteControl::UserFactory: Attempt to reload
Apache2/SiteControl/UserFactory.pm aborted.\nCompilation failed in require
at (eval 859) line 2.\n\nStack:\n [(eval 859):2]\n
[/usr/local/netdot/lib/Netdot/UI.pm:2183]\n
[/usr/local/netdot/htdocs/autohandler:23]\n
[Sun Nov 11 15:25:26 2012] [error] Using user factory
Apache2::SiteControl::UserFactory
[Sun Nov 11 15:25:26 2012] [error] ses_key_cookie
Use of uninitialized value in lc at
/usr/share/perl5/HTML/Mason/ApacheHandler.pm line 920.
[Sun Nov 11 15:25:26 2012] [error] Session cookie: UNSET
[Sun Nov 11 15:25:26 2012] [error] Loading module
Apache2::SiteControl::UserFactory
[Sun Nov 11 15:25:26 2012] [error] Could not load
Apache2::SiteControl::UserFactory: Attempt to reload
Apache2/SiteControl/UserFactory.pm aborted.\nCompilation failed in require
at (eval 862) line 2.\n\nStack:\n [(eval 862):2]\n
[/usr/local/netdot/lib/Netdot/UI.pm:2183]\n
[/usr/local/netdot/htdocs/autohandler:23]\n
[Sun Nov 11 15:25:26 2012] [error] Using user factory
Apache2::SiteControl::UserFactory
>
> Debugging should be turned on already in
> /etc/apache2/conf.d/netdot_apache2_local.conf - so it would
> complain
> if there was a problem with the backend.
>
> Yeah debug is turned on:
# Turn on debugging
PerlSetVar AccessControllerDebug 1
PerlSetVar AuthCookieDebug 1
PerlSetVar SiteControlDebug 1
> What browser are you using ? Are you allowing cookies ?
>
> Firefox, i did try on Chrome too with no luck
> I have installed NetDot on Ubuntu 12.04 last week and it worked
> like
> a charm...
>
> You can say that again, i have also done a few installations(on 10.04
though), which worked perfectly... however this "although was not initially
setup by me" is becoming a nut to crack. I am gonna wait to hear from you
before resolving to total re-install :(
Cheers!
> Phil
>
>
--
------------------------------------------------------------------------
*Seun Ojedeji,
Federal University Oye-Ekiti
web: http://www.fuoye.edu.ng
Mobile: +2348035233535
**alt email: <http://goog_1872880453>[email protected]*
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://osl.uoregon.edu/pipermail/netdot-users/attachments/20121111/87affae3/attachment-0001.html
------------------------------
Message: 6
Date: Sun, 11 Nov 2012 16:21:07 +0100
From: Phil Regnauld <[email protected]>
Subject: Re: [Netdot-users] Can't login as admin to netdot
To: Seun Ojedeji <[email protected]>
Cc: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=us-ascii
Seun Ojedeji (seun.ojedeji) writes:
> >
> [Sun Nov 11 15:25:26 2012] [error] Could not load
> Apache2::SiteControl::UserFactory: Attempt to reload
> Apache2/SiteControl/UserFactory.pm aborted.\nCompilation failed in require
> at (eval 859) line 2.\n\nStack:\n [(eval 859):2]\n
> [/usr/local/netdot/lib/Netdot/UI.pm:2183]\n
> [/usr/local/netdot/htdocs/autohandler:23]\n
> [Sun Nov 11 15:25:26 2012] [error] Using user factory
> Apache2::SiteControl::UserFactory
> [Sun Nov 11 15:25:26 2012] [error] ses_key_cookie
> Use of uninitialized value in lc at
> /usr/share/perl5/HTML/Mason/ApacheHandler.pm line 920.
> [Sun Nov 11 15:25:26 2012] [error] Session cookie: UNSET
> [Sun Nov 11 15:25:26 2012] [error] Loading module
> Apache2::SiteControl::UserFactory
> [Sun Nov 11 15:25:26 2012] [error] Could not load
> Apache2::SiteControl::UserFactory: Attempt to reload
> Apache2/SiteControl/UserFactory.pm aborted.\nCompilation failed in require
> at (eval 862) line 2.\n\nStack:\n [(eval 862):2]\n
> [/usr/local/netdot/lib/Netdot/UI.pm:2183]\n
> [/usr/local/netdot/htdocs/autohandler:23]\n
> [Sun Nov 11 15:25:26 2012] [error] Using user factory
> Apache2::SiteControl::UserFactory
I'm not sure the above are errors, but they sure do like it. I don't
have these messages in my logs.
> You can say that again, i have also done a few installations(on 10.04
> though), which worked perfectly... however this "although was not initially
> setup by me" is becoming a nut to crack. I am gonna wait to hear from you
> before resolving to total re-install :(
There's a similar problem here:
http://osl.uoregon.edu/pipermail/netdot-users/2012-August/001245.html
But you're not using LDAP.
Is this a fresh system, or do you perhaps have older version of modules
installed that Netdot is picking up ?
Make testdeps is happy ?
Phil
------------------------------
_______________________________________________
Netdot-users mailing list
[email protected]
https://osl.uoregon.edu/mailman/listinfo/netdot-users
End of Netdot-users Digest, Vol 48, Issue 7
*******************************************