Broken Pier admin user

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
8 messages Options
Reply | Threaded
Open this post in threaded view
|

Broken Pier admin user

David Zmick
I appear to have broken my admin user in pier somehow, how do I change the password from inside of squeak?

--
David Zmick
/dz0004455\
http://dz0004455.googlepages.com
http://dz0004455.blogspot.com


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Broken Pier admin user

Lukas Renggli-2
> I appear to have broken my admin user in pier somehow, how do I  
> change the password from inside of squeak?

Inspect "PRKernel instances".

Then look for instances of PUUser.

self password: 'foo'.

Cheers,
Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Broken Pier admin user

cedreek


> I appear to have broken my admin user in pier somehow, how do I
> change the password from inside of squeak?

Inspect "PRKernel instances".

Then look for instances of PUUser.

self password: 'foo'.

Or you can use the System users components (I think it's a default one). The best is probably to have an admin page where you put all system components.

Cédrick



 


Cheers,
Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki



_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Broken Pier admin user

Lukas Renggli-2
> > I appear to have broken my admin user in pier somehow, how do I
> > change the password from inside of squeak?
>
> Inspect "PRKernel instances".
>
> Then look for instances of PUUser.
>
> self password: 'foo'.
>
> Or you can use the System users components (I think it's a default  
> one). The best is probably to have an admin page where you put all  
> system components.

Heh, but these are disabled if you are not logged in as admin ;-)

Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Broken Pier admin user

David Zmick
thanks!
here is what I executed in a workspace:
| x |
x := PRKernel instanceNamed: 'Pier'.
x adminUser password: 'foo'

On Tue, Aug 19, 2008 at 2:21 AM, Lukas Renggli <[hidden email]> wrote:
> > I appear to have broken my admin user in pier somehow, how do I
> > change the password from inside of squeak?
>
> Inspect "PRKernel instances".
>
> Then look for instances of PUUser.
>
> self password: 'foo'.
>
> Or you can use the System users components (I think it's a default
> one). The best is probably to have an admin page where you put all
> system components.

Heh, but these are disabled if you are not logged in as admin ;-)

Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki



--
David Zmick
/dz0004455\
http://dz0004455.googlepages.com
http://dz0004455.blogspot.com


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Broken Pier admin user

David Zmick
is there a maximum number a characters I can have in the password?

On Tue, Aug 19, 2008 at 9:23 AM, David Zmick <[hidden email]> wrote:
thanks!
here is what I executed in a workspace:
| x |
x := PRKernel instanceNamed: 'Pier'.
x adminUser password: 'foo'


On Tue, Aug 19, 2008 at 2:21 AM, Lukas Renggli <[hidden email]> wrote:
> > I appear to have broken my admin user in pier somehow, how do I
> > change the password from inside of squeak?
>
> Inspect "PRKernel instances".
>
> Then look for instances of PUUser.
>
> self password: 'foo'.
>
> Or you can use the System users components (I think it's a default
> one). The best is probably to have an admin page where you put all
> system components.

Heh, but these are disabled if you are not logged in as admin ;-)

Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki






--
David Zmick
/dz0004455\
http://dz0004455.googlepages.com
http://dz0004455.blogspot.com


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Broken Pier admin user

Lukas Renggli-2
> is there a maximum number a characters I can have in the password?


I don't think so.

Pier only stores the SHA hash anyway. So you could put 1 MB worth of  
password characters and SHA would (loss) compress it down to a couple  
of bytes.

Lukas


On Aug 19, 2008, at 16:25 , David Zmick wrote:

>
>
> On Tue, Aug 19, 2008 at 9:23 AM, David Zmick <[hidden email]>  
> wrote:
> thanks!
> here is what I executed in a workspace:
> | x |
> x := PRKernel instanceNamed: 'Pier'.
> x adminUser password: 'foo'
>
>
> On Tue, Aug 19, 2008 at 2:21 AM, Lukas Renggli  
> <[hidden email]> wrote:
> > > I appear to have broken my admin user in pier somehow, how do I
> > > change the password from inside of squeak?
> >
> > Inspect "PRKernel instances".
> >
> > Then look for instances of PUUser.
> >
> > self password: 'foo'.
> >
> > Or you can use the System users components (I think it's a default
> > one). The best is probably to have an admin page where you put all
> > system components.
>
> Heh, but these are disabled if you are not logged in as admin ;-)
>
> Lukas
>
> --
> Lukas Renggli
> http://www.lukas-renggli.ch
>
>
> _______________________________________________
> SmallWiki, Magritte, Pier and Related Tools ...
> https://www.iam.unibe.ch/mailman/listinfo/smallwiki
>
>
>
> --
> David Zmick
> /dz0004455\
> http://dz0004455.googlepages.com
> http://dz0004455.blogspot.com
>
>
>
> --
> David Zmick
> /dz0004455\
> http://dz0004455.googlepages.com
> http://dz0004455.blogspot.com
>
> _______________________________________________
> SmallWiki, Magritte, Pier and Related Tools ...
> https://www.iam.unibe.ch/mailman/listinfo/smallwiki

--
Lukas Renggli
http://www.lukas-renggli.ch


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki
Reply | Threaded
Open this post in threaded view
|

Re: Broken Pier admin user

David Zmick
ok, thanks again

On Tue, Aug 19, 2008 at 9:32 AM, Lukas Renggli <[hidden email]> wrote:
> is there a maximum number a characters I can have in the password?


I don't think so.

Pier only stores the SHA hash anyway. So you could put 1 MB worth of
password characters and SHA would (loss) compress it down to a couple
of bytes.

Lukas


On Aug 19, 2008, at 16:25 , David Zmick wrote:

>
>
> On Tue, Aug 19, 2008 at 9:23 AM, David Zmick <[hidden email]>
> wrote:
> thanks!
> here is what I executed in a workspace:
> | x |
> x := PRKernel instanceNamed: 'Pier'.
> x adminUser password: 'foo'
>
>
> On Tue, Aug 19, 2008 at 2:21 AM, Lukas Renggli
> <[hidden email]> wrote:
> > > I appear to have broken my admin user in pier somehow, how do I
> > > change the password from inside of squeak?
> >
> > Inspect "PRKernel instances".
> >
> > Then look for instances of PUUser.
> >
> > self password: 'foo'.
> >
> > Or you can use the System users components (I think it's a default
> > one). The best is probably to have an admin page where you put all
> > system components.
>
> Heh, but these are disabled if you are not logged in as admin ;-)
>
> Lukas
>
> --
> Lukas Renggli
> http://www.lukas-renggli.ch
>
>
> _______________________________________________
> SmallWiki, Magritte, Pier and Related Tools ...
> https://www.iam.unibe.ch/mailman/listinfo/smallwiki
>
>
>
> --
> David Zmick
> /dz0004455\
> http://dz0004455.googlepages.com
> http://dz0004455.blogspot.com
>
>
>
> --
> David Zmick
> /dz0004455\
> http://dz0004455.googlepages.com
> http://dz0004455.blogspot.com
>
> _______________________________________________
> SmallWiki, Magritte, Pier and Related Tools ...
> https://www.iam.unibe.ch/mailman/listinfo/smallwiki

--
Lukas Renggli
http://www.lukas-renggli.ch


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki



--
David Zmick
/dz0004455\
http://dz0004455.googlepages.com
http://dz0004455.blogspot.com


_______________________________________________
SmallWiki, Magritte, Pier and Related Tools ...
https://www.iam.unibe.ch/mailman/listinfo/smallwiki