Bogdan Cristea wrote:
On Sunday 26 December 2010 11:02:18 xPol wrote:
I have been using a local dictionary, until a few day ago, with no problems. The dictionary can be reached by a web browser pointing at http://localhost:9000.
Recently, probably following the installation of a mysql-related package, my dictionary cannot be reached any more. Here is the message i get: Can't connect to MySQL server on '127.0.0.1' (111
Try to start your MySQL server from Yast. If you still have problems, you could disable all repositories except the DVD and do an unconditional update on mysql
Thank you to your help, i have been able to disable all extra repositories and to to unconditional upgrade. Sadly, nothing has changed. The script starts and the dictionary layout is displayed in my web browser, but every query returns: Can't connect to MySQL server on '127.0.0.1' (111) Any hints? The script is perl script, here included. Thank you ---p ----,----[ /home/xpol/OP_Build05-autorun ] | #!/bin/sh | | #NOTE: if your filesystem is mounted with 'noexec' flag, run this file | #as | #sh autorun | #instead of | #./autorun | | #FOR UNIX-like platforms ONLY!! | #autorun script for starting Stunnix Perl Web Server locally and directing | #user's browser to the page on the site served by it. | # | #Copyright (c) 2004-2005 by Stunnix company - see http://www.stunnix.com | #for more details. | | cd `dirname $0` | | PERLLIB=$PERLLIB:`pwd`/perl/common-inc/ | export PERLLIB | | if [ `uname` = "Linux" ]; then | if uname -m | grep 86 >/dev/null ; then | if perl/linux-x86/perl -v >/dev/null 2>&1; then | exec nohup perl/linux-x86/perl site/stunnixwebsrv/starter.pl \ | site/stunnixwebsrv/startsite.pl $@ </dev/null >/dev/null 2>&1 & | exit 0 | fi | fi | fi | | #we are here because there is no prebuilt perl included for OS this | #script is running under. Let's hope packager #listed all modules in | #perl/fallback-inc and that system we are running on includes perl | PERLLIB=$PERLLIB:`pwd`/perl/fallback-inc/ | export PERLLIB | | exec nohup perl site/stunnixwebsrv/startsite.pl $@ </dev/null >/dev/null | 2>&1 & `---- -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org For additional commands, e-mail: opensuse+help@opensuse.org