Re: [Toolserver-l] SSH login issue

2011-06-20 Thread Jimmy Xu
Hi,

Using the new key in JIRA I still got the same error. I'm connecting from
50.93.195.17*. However FYI I did SSH'd to that host to try so this wouldn't
seem to be a firewall or something.

2011/06/20 22:14 "DaB." :
> > ssh -i privatekey.rsa  platoni...@toolserver.org
>
> please try that on your own server, not on the TS.
>

I did got denied and falled-back to the "Password:" prompt.

-- 
Jimmy Xu
___
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette

Re: [Toolserver-l] SSH login issue

2011-06-20 Thread DaB.
Hello,
At Tuesday 21 June 2011 00:11:38 DaB. wrote:
> Try connecting to my account:
> 
> wget http://toolserver.org/~platonides/sandbox/privatekey.rsa
> chmod 700 privatekey.rsa
> ssh -i privatekey.rsa  platoni...@toolserver.org

please try that on your own server, not on the TS.

Sincerly,
DaB.

-- 
Userpage: [[:w:de:User:DaB.]] — PGP: 2B255885


signature.asc
Description: This is a digitally signed message part.
___
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette

Re: [Toolserver-l] SSH login issue

2011-06-20 Thread Platonides
Jimmy Xu wrote:
> On Sat, Jun 18, 2011 at 6:35 PM, Andre Koopal  wrote:
>> Silly question, as it seems the key is accepted, did you change anything
>> to your dotfiles? Maybe you can ask the roots to move your .bashrc and
>> .bash_login out of the way?
>
> No, I don't recall any changes to my dotfiles, including permission. Since
> it didn't reach the "interactive session" period, I don't believe .bash* is
> related.
>
> Still, any hint would be appreciated. Still unable to access my account
> by now.

I have no problem with the same ssh version as you.
Try connecting to my account:

wget http://toolserver.org/~platonides/sandbox/privatekey.rsa
chmod 700 privatekey.rsa
ssh -i privatekey.rsa  platoni...@toolserver.org


___
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette


Re: [Toolserver-l] Apache testing

2011-06-20 Thread River Tarnell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

River Tarnell:
> I was looking at your encoding problem earlier; the most likely 
> possibility seemed to be that after the MySQL 5.5 upgrade, the default 
> client character set changed to UTF-8, which broke some tools.  I've 
> changed that back to latin1 to restore the old behaviour, but it 
> didn't fix your problem.

It looks like the problem is that you override --defaults-file in 
~lvova/public_html/cgi-bin/ts.  This prevents the client from reading 
/etc/my.cnf, so you don't get the correct default character set.

If you do this instead:

HOME=$(getent passwd $(id -u)|cut -f6 -d:)
export HOME

... then you don't need to use --defaults-file and your script will 
probably work correct.

(Example: .)

- river.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (SunOS)

iEYEARECAAYFAk3/s60ACgkQIXd7fCuc5vLYkwCglkXkbQjuKX8XeAuPaityD3kU
X5MAn0dew3FwKcwDrTXRmdKCTMd+I1Oa
=DlPv
-END PGP SIGNATURE-

___
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette


Re: [Toolserver-l] Apache testing

2011-06-20 Thread River Tarnell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Mashiah Davidson:
> Much better than zws. No issues with database strings encoding, compare:
 
> http://wolfsbane.toolserver.org:81/~lvova/cgi-bin/go.sh?language=ru&interface=en&listby=zns
> http://toolserver.org/~lvova/cgi-bin/go.sh?language=ru&interface=en&listby=zns

This is not an innate difference between the two, but some kind of 
configuration difference.  I was looking at your encoding problem 
earlier; the most likely possibility seemed to be that after the MySQL 
5.5 upgrade, the default client character set changed to UTF-8, which 
broke some tools.  I've changed that back to latin1 to restore the old 
behaviour, but it didn't fix your problem.

Looking at the difference in environment between the two:




... the most obvious difference is that Apache doesn't set 
LANG=en_US.UTF-8.  This doesn't seem to affect the MySQL client, though:

river@wolfsbane:~$ LANG= sql enwiki_p
...
Server characterset:latin1
Db characterset:latin1
Client characterset:latin1
Conn.  characterset:latin1

river@wolfsbane:~$ LANG=en_US.UTF-8 sql enwiki_p
...
Server characterset:latin1
Db characterset:latin1
Client characterset:latin1
Conn.  characterset:latin1

If you could add the output of SHOW VARIABLES LIKE '%character_set%'; to 
the script, and see if there's a difference between them, it would help 
track down the problem.

- river.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (SunOS)

iEYEARECAAYFAk3/sGoACgkQIXd7fCuc5vKi1gCgtXLmDP7Q6HSNv+q5tsH6fx/9
8zYAnjE1kHL4mctgrCTvYbfsPiccaI5B
=1WLY
-END PGP SIGNATURE-

___
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette


Re: [Toolserver-l] Apache testing

2011-06-20 Thread Mashiah Davidson
> I've set up an Apache instance on wolfsbane for testing.  Please have a
> look at  and then test
> your tools (note the caveat about PHP, in particular).

Much better than zws. No issues with database strings encoding, compare:

http://wolfsbane.toolserver.org:81/~lvova/cgi-bin/go.sh?language=ru&interface=en&listby=zns
http://toolserver.org/~lvova/cgi-bin/go.sh?language=ru&interface=en&listby=zns

mashiah

___
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette

[Toolserver-l] Apache testing

2011-06-20 Thread River Tarnell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I've set up an Apache instance on wolfsbane for testing.  Please have a 
look at  and then test 
your tools (note the caveat about PHP, in particular).

We're not in any rush to move off ZWS, so this is mostly just 
preliminary testing.  Nonetheless, it would be useful to know about any 
problems now rather than later.

- river.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (SunOS)

iEYEARECAAYFAk3/ahAACgkQIXd7fCuc5vI6+gCfe58t1WD4D1NYnQlACu5miPjV
WUsAnR0jWJDB2bkXFQFl2qhnPUt3iDfX
=EFB1
-END PGP SIGNATURE-

___
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette


Re: [Toolserver-l] SSH login issue

2011-06-20 Thread Jimmy Xu
On Mon, Jun 20, 2011 at 8:41 AM, DaB.  wrote:
> please generate a new (temporary) ssh-key-pair and submit the public-part to
> JIRA. Let us look if the key is the problem in some way or the other.
>

Done, .

-- 
Jimmy Xu

___
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette


Re: [Toolserver-l] SSH login issue

2011-06-20 Thread DaB.
Hello,
At Monday 20 June 2011 10:40:00 DaB. wrote:
> Still, any hint would be appreciated. Still unable to access my account
> by now.

please generate a new (temporary) ssh-key-pair and submit the public-part to 
JIRA. Let us look if the key is the problem in some way or the other.

Sincerly,
DaB.

-- 
Userpage: [[:w:de:User:DaB.]] — PGP: 2B255885


signature.asc
Description: This is a digitally signed message part.
___
Toolserver-l mailing list (Toolserver-l@lists.wikimedia.org)
https://lists.wikimedia.org/mailman/listinfo/toolserver-l
Posting guidelines for this list: 
https://wiki.toolserver.org/view/Mailing_list_etiquette