• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

MYSQL-Problem

@spoensche:
in in my.cnf finde ich folgendes:
Code:
[mysqld_multi]
mysqld     = /usr/bin/mysqld_safe
mysqladmin = /usr/bin/mysqladmin
log        = /var/log/mysqld_multi.log
# user       = multi_admin
# password   = secret

# If you want to use mysqld_multi uncomment 1 or more mysqld sections
# below or add your own ones.

# WARNING
# --------
# If you uncomment mysqld1 than make absolutely sure, that database mysql,
# configured above, is not started.  This may result in corrupted data!
# [mysqld1]
# port       = 3306
# datadir    = /var/lib/mysql
# pid-file   = /var/lib/mysql/mysqld.pid
# socket     = /var/lib/mysql/mysql.sock
# user       = mysql

# [mysqld2]
# port       = 3307
# datadir    = /var/lib/mysql-databases/mysqld2
# pid-file   = /var/lib/mysql-databases/mysqld2/mysql.pid
# socket     = /var/lib/mysql-databases/mysqld2/mysql.sock
# user       = mysql

# [mysqld3]
# port       = 3308
# datadir    = /var/lib/mysql-databases/mysqld3
# pid-file   = /var/lib/mysql-databases/mysqld3/mysql.pid
# socket     = /var/lib/mysql-databases/mysqld3/mysql.sock
# user       = mysql

# [mysqld6]
# port       = 3309
# datadir    = /var/lib/mysql-databases/mysqld6
# pid-file   = /var/lib/mysql-databases/mysqld6/mysql.pid
# socket     = /var/lib/mysql-databases/mysqld6/mysql.sock
# user       = mysql

demnach ist mysqld_multi nicht aktiviert - oder sehe ich das falsch?

Code:
Sowohl innodb_force_reovery = 5 als auch innodb_force_recovery = 5

bringen folgendes Ergebnis

Code:
fhf@linux-h0o3:~> su
Passwort: 
linux-h0o3:/home/fhf # innodb_force_reovery = 5
If 'innodb_force_reovery' is not a typo you can use command-not-found to lookup the package that contains it, like this:
    cnf innodb_force_reovery
linux-h0o3:/home/fhf #
 
...habe wie nachfolgend in my.cnf eingetragen - so richtig???
Code:
 # The MySQL server
[mysqld]
port		= 3306
innodb_force_recovery = 5 # fhf neu 120624
socket		= /var/run/mysql/mysql.sock
...auch nachdem ich (vorichtshalber) in der Console eingegeben habe:
Code:
linux-h0o3:/home/fhf # service mysql start
bleibt bei Programmaufruf die Fehlermeldung:
Code:
DBI connect('scan_jobs:localhost','root',...) failed: Can't connect to local MySQL server through socket '/var/run/mysql/mysql.sock' (2) at /srv/www/cgi-bin/perl_programme/firmen_suchen.pl line 1441
 
poiuz schrieb:
bleibt bei Programmaufruf die Fehlermeldung:
Code:
DBI connect('scan_jobs:localhost','root',...) failed: Can't connect to local MySQL server through socket '/var/run/mysql/mysql.sock' (2) at /srv/www/cgi-bin/perl_programme/firmen_suchen.pl line 1441

Wenn du den MySQL Server mit gesetzten Recovery (Wiederherstellen) startest und quasi keinerlei Möglichkeit besteht die Datenbank mit einem Backup in einen konsistenten Zustand zu versetzten, weil vorher die binären Logs überschrieben worden sind, dann sollte man es tunlichst vermeiden sofort wieder Daten abzurufen geschweige den in die Datenbank einzutragen. Dies kann dazu führen, dass man die Datenbank endgültig in die ewigen Jagdgründe schickt.
Die Option innodb_force_recovery = 5 sagt der InnoDB Engine, dass sie fehlende binäre Logs ignorieren und die fehlgeschlagenen Transaktionen rückgängig machen soll, um die Datenbank wieder in einen konsistenten (fehlerfreien) Zustand zu bringen.

Da beim starten des MySQL- Servers keine Fehlermeldungen aufgetreten sind, ist MySQL dabei das Recovery durchzuführen. Jetzt sollte man die Meldungen in /var/log/mysql/error.log und /var/log/mysql.log ganz genau im Auge behalten, den Recovery Vorgang keinesfalls abbrechen, unterbrechen o.ä.

Wenn MySQL keinen Socket erzeugt, kann dies zum eigenen Schutz dienen oder aber schlimmeres bedeuten. Also Finger weg von jeglichen Programmen die auf die Datenbank zugreifen, die haben vorerst Sendepause. Poste bitte mal den Inhalt der genannten Logfiles, damit wir analysieren können, was der DB-Server uns mitteilen will.
 
@spoensche:
Wo finde ich Mysql Logfiles ?
Meinst Du apache2/error_log?

apache2/error.log:
Code:
Can't connect to local MySQL server through socket '/var/run/mysql/mysql.sock' (2) at /srv/www/cgi-bin/perl_programme/firmen_suchen.pl line 1441

mysqld_multi.log ist leer

mysql-bin gibt es nicht. Ist das ein file, das ich erst anlegen muß oder wird das automatisch angelegt?

mysqld.log:
Code:
120622 07:40:11 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
/usr/sbin/mysqld: File '/var/log/mysql/mysql-bin.index' not found (Errcode: 13)
120622  7:40:11 [ERROR] Aborting

120622  7:40:11 [Note] /usr/sbin/mysqld: Shutdown complete

120622 07:40:11 mysqld_safe mysqld from pid file /var/run/mysql/mysqld.pid ended
120622 07:51:25 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
/usr/sbin/mysqld: File '/var/log/mysql/mysql-bin.index' not found (Errcode: 13)
120622  7:51:25 [ERROR] Aborting

120622  7:51:25 [Note] /usr/sbin/mysqld: Shutdown complete

120622 07:51:25 mysqld_safe mysqld from pid file /var/run/mysql/mysqld.pid ended
120623 13:12:09 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
/usr/sbin/mysqld: File '/var/log/mysql/mysql-bin.index' not found (Errcode: 13)
120623 13:12:09 [ERROR] Aborting

120623 13:12:09 [Note] /usr/sbin/mysqld: Shutdown complete

120623 13:12:10 mysqld_safe mysqld from pid file /var/run/mysql/mysqld.pid ended
120623 21:46:06 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
/usr/sbin/mysqld: File '/var/log/mysql/mysql-bin.index' not found (Errcode: 13)
120623 21:46:06 [ERROR] Aborting

120623 21:46:06 [Note] /usr/sbin/mysqld: Shutdown complete

120623 21:46:06 mysqld_safe mysqld from pid file /var/run/mysql/mysqld.pid ended
120624 14:24:55 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
/usr/sbin/mysqld: File '/var/log/mysql/mysql-bin.index' not found (Errcode: 13)
120624 14:24:55 [ERROR] Aborting

120624 14:24:55 [Note] /usr/sbin/mysqld: Shutdown complete

120624 14:24:55 mysqld_safe mysqld from pid file /var/run/mysql/mysqld.pid ended
120624 17:31:14 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
/usr/sbin/mysqld: File '/var/log/mysql/mysql-bin.index' not found (Errcode: 13)
120624 17:31:14 [ERROR] Aborting

120624 17:31:14 [Note] /usr/sbin/mysqld: Shutdown complete

120624 17:31:14 mysqld_safe mysqld from pid file /var/run/mysql/mysqld.pid ended
120625 18:55:03 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
/usr/sbin/mysqld: File '/var/log/mysql/mysql-bin.index' not found (Errcode: 13)
120625 18:55:03 [ERROR] Aborting

120625 18:55:03 [Note] /usr/sbin/mysqld: Shutdown complete

120625 18:55:03 mysqld_safe mysqld from pid file /var/run/mysql/mysqld.pid ended


Vorsichtshalber hier die aktuelle my.cnf: (evtl. habe ich dort unwissend etwas verändert).
Code:
# Example MySQL config file for medium systems.
#
# This is for a system with little memory (32M - 64M) where MySQL plays
# an important part, or systems up to 128M where MySQL is used together with
# other programs (such as a web server)
#
# MySQL programs look for option files in a set of
# locations which depend on the deployment platform.
# You can copy this option file to one of those
# locations. For information about these locations, see:
# http://dev.mysql.com/doc/mysql/en/option-files.html
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
#password	= your_password
port		= 3306
socket		= /var/run/mysql/mysql.sock

# Here follows entries for some specific programs

# The MySQL server
[mysqld]
port		= 3306
innodb_force_recovery = 5 # fhf neu 120624

socket		= /var/run/mysql/mysql.sock
# Change following line if you want to store your database elsewhere
datadir	= /var/lib/mysql
skip-external-locking
key_buffer_size = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
# 
#skip-networking

# Replication Master Server (default)
# binary logging is required for replication
# log-bin=mysql-bin # fhf
log-bin = /var/log/mysql/mysql-bin # fhf neu 120621
log-bin-index = /var/log/mysql/mysql-bin.index #fhf neu 120621


# binary logging format - mixed recommended
binlog_format=mixed

# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id	= 1

# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
#    the syntax is:
#
#    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
#    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
#    where you replace <host>, <user>, <password> by quoted strings and
#    <port> by the master's port number (3306 by default).
#
#    Example:
#
#    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
#    MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
#    start replication for the first time (even unsuccessfully, for example
#    if you mistyped the password in master-password and the slave fails to
#    connect), the slave will create a master.info file, and any later
#    change in this file to the variables' values below will be ignored and
#    overridden by the content of the master.info file, unless you shutdown
#    the slave server, delete master.info and restart the slaver server.
#    For that reason, you may want to leave the lines below untouched
#    (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id       = 2
#
# The replication master for this slave - required
#master-host     =   <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user     =   <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password =   <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port     =  <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin

# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /var/lib/mysql
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /var/lib/mysql
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 16M
#innodb_additional_mem_pool_size = 2M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 5M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50

# The safe_mysqld script
[safe_mysqld]
log-error	= /var/log/mysql/mysqld.log
socket		= /var/run/mysql/mysql.sock

[mysqldump]
socket		= /var/run/mysql/mysql.sock
quick
max_allowed_packet = 16M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[myisamchk]
key_buffer_size = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M

[mysqlhotcopy]
interactive-timeout

[mysqld_multi]
mysqld     = /usr/bin/mysqld_safe
mysqladmin = /usr/bin/mysqladmin
log        = /var/log/mysqld_multi.log
# user       = multi_admin
# password   = secret

# If you want to use mysqld_multi uncomment 1 or more mysqld sections
# below or add your own ones.

# WARNING
# --------
# If you uncomment mysqld1 than make absolutely sure, that database mysql,
# configured above, is not started.  This may result in corrupted data!
# [mysqld1]
# port       = 3306
# datadir    = /var/lib/mysql
# pid-file   = /var/lib/mysql/mysqld.pid
# socket     = /var/lib/mysql/mysql.sock
# user       = mysql

# [mysqld2]
# port       = 3307
# datadir    = /var/lib/mysql-databases/mysqld2
# pid-file   = /var/lib/mysql-databases/mysqld2/mysql.pid
# socket     = /var/lib/mysql-databases/mysqld2/mysql.sock
# user       = mysql

# [mysqld3]
# port       = 3308
# datadir    = /var/lib/mysql-databases/mysqld3
# pid-file   = /var/lib/mysql-databases/mysqld3/mysql.pid
# socket     = /var/lib/mysql-databases/mysqld3/mysql.sock
# user       = mysql

# [mysqld6]
# port       = 3309
# datadir    = /var/lib/mysql-databases/mysqld6
# pid-file   = /var/lib/mysql-databases/mysqld6/mysql.pid
# socket     = /var/lib/mysql-databases/mysqld6/mysql.sock
# user       = mysql
 
Hallo,

mysqld.log:
Code:
...
/usr/sbin/mysqld: File '/var/log/mysql/mysql-bin.index' not found (Errcode: 13)
...
-1- warum gibt es am Anfang der Zeile einen nicht-ASCII Charakter? (war in früheren Postings nicht so).

-2- IMHO so lange diese Fehlermeldung besteht läuft mysql nicht.

Kreiere mal die Datei "/var/log/mysql/mysql-bin.index" und teste dann ob die Fehlermeldung bleibt.

Als root:

Code:
touch /var/log/mysql/mysql-bin.index
chown mysql:mysql /var/log/mysql/mysql-bin.index
chmod 755 /var/log/mysql/mysql-bin.index

Gruss,
Roland
 
Das (non-ascii) Zeichen am Anfang der Zeile ist bei mir (wenn ich copy/paste mache) ein

Code:
^G = octal 107 = octal 007 = BEL
eigenartig! (ich weiss natürlich nicht ob das Zeichen bei mir noch gleich ist wie bei Dir)

Wie auch immer, ich hab noch eine Idee:

Code:
DBI connect('scan_jobs:localhost','root',...) failed: Can't connect to local MySQL server through socket '/var/run/mysql/mysql.sock' (2) at /srv/www/cgi-bin/perl_programme/firmen_suchen.pl line 1441
Editier nochmals Deine my.cnf Datei: füge die Zeile ein:
Code:
# The MySQL server
[mysqld]
bind-address = 127.0.0.1       # <<< neu
port = 3306
#innodb_force_recovery = 5     # <<< temporär auskommentieren
...
und starte mysql wieder.
 
...habe ich gemacht; die Fehlermeldungen in apache2/error.log und var/log/mysql/mysqld.log sind die gleichen.
var/log/mysql/mysql-bin.index ist leer (0 B)

Irgendwie sehe ich langsam kein Land mehr. Unter 11.4 lief alles problemlos.
Sollte ich nicht besser mysql neu installieren? - Wie deinstalliert man? Was sollte alles gelöscht werden?

...oder gebe ich zu früh auf???

Gruß
Fritz
 
poiuz schrieb:
Datei /var/log/mysql/mysql-bin.index wurde angelegt.
Die Datei mysql-bin.index beinhaltet die Liste der verwendbaren Binary Logs. Diese sind notwendig für
1) Replikation
2) Transaktionen
Eigentlich gehört die Datei (und die BinLogs) bei openSUSE 12.1 nach /var/lib/mysql und heisst mysqld-bin.index
Poste doch bitte mal die Ausgabe von
Code:
# zypper lr -u

Code:
120622 07:51:25 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
 /usr/sbin/mysqld: File '/var/log/mysql/mysql-bin.index' not found (Errcode: 13)
120622  7:51:25 [ERROR] Aborting

"File not found" dürfte nicht mehr kommen nachdem die Datei angelegt wurde. Wenns am Inhalt liegt:
Code:
# cd /var/log/mysql
# ls -1 mysqld-bin.0* > mysql-bin.index
dürfte eine gültige Datei erstellen.

Irgendwas ist bei dir oberfaul, ich habe 3 produktive Systeme mit mysql von 11.4 auf 12.1 geup'd und alle laufen problemlos - allerdings mit offensichtlich anderer Version und Konfiguration.
 
Code:
linux-h0o3:/home/fhf # zypper lr -u
# | Alias                                                  | Name                                                   | Aktiviert | Aktualisieren | URI                                                                             
--+--------------------------------------------------------+--------------------------------------------------------+-----------+---------------+---------------------------------------------------------------------------------
1 | Aktualisierungen-für-Balsam-Professional-12.1-12.1-1.4 | Aktualisierungen für Balsam Professional 12.1 12.1-1.4 | Ja        | Ja            | http://download.open-slx.com/balsam/professional/update/12.1/                   
2 | Balsam-Professional-12.1-12.1-1.4                      | Balsam-Professional-12.1-12.1-1.4                      | Ja        | Nein          | cd:///?devices=/dev/disk/by-id/ata-HL-DT-ST_DVDRAM_GH24NS70_K3GB6OA2208,/dev/sr0
3 | openSUSE:12.1                                          | openSUSE:12.1                                          | Ja        | Ja            | http://download.opensuse.org/distribution/12.1/repo/oss/                        
4 | repo-non-oss                                           | Balsam-Professional-12.1-Non-Oss                       | Ja        | Ja            | http://download.open-slx.com/balsam/professional/distribution/12.1/non-oss/     
5 | repo-oss                                               | Balsam-Professional-12.1-Oss                           | Ja        | Ja            | http://download.open-slx.com/balsam/professional/distribution/12.1/oss/         
6 | repo-src                                               | Balsam-Professional-12.1-Source                        | Nein      | Nein          | http://download.open-slx.com/balsam/professional/distribution/12.1/src/



Code:
linux-h0o3:/home/fhf # cd /var/log/mysql
linux-h0o3:/var/log/mysql # ls -1 mysqld-bin.0* > mysql-bin.index
ls: Zugriff auf mysqld-bin.0* nicht möglich: Datei oder Verzeichnis nicht gefunden
linux-h0o3:/var/log/mysql # ls -1  mysql-bin.index

...wie schon geschrieben:
var/log/mysql/mysql-bin.index ist existent, aber leer.
 
müßte jetzt deaktiviert sein.
Code:
[mysqld_multi]
#mysqld     = /usr/bin/mysqld_safe # #fhf
#mysqladmin = /usr/bin/mysqladmin # #fhf
#log        = /var/log/mysqld_multi.log # #fhf
# user       = multi_admin
# password   = secret

Ergebnis in console:
Code:
linux-h0o3:/home/fhf # service mysql start
redirecting to systemctl
Job failed. See system logs and 'systemctl status' for details.
Auch die anderen Fehlermeldungen haben sich nicht geändert.

Was mache ich falsch?
 
Erstelle die mysql-bin.index mal wie folgt:
Code:
touch /var/log/mysql/mysql-bin.index

Danach startest du MySQL, aber bitte mit /usr/sbin/mysqld
 
Erstelle die mysql-bin.index mal wie folgt:
...
...
Als root:
Code:
touch /var/log/mysql/mysql-bin.index
chown mysql:mysql /var/log/mysql/mysql-bin.index
chmod 755 /var/log/mysql/mysql-bin.index
Datei /var/log/mysql/mysql-bin.index wurde angelegt.
Die Fehlermeldung ( mit ° am Anfang) bleibt bestehen.
:???:

Hallo Poiuz,

Irgendwie sehe ich langsam kein Land mehr. Unter 11.4 lief alles problemlos.
Sollte ich nicht besser mysql neu installieren? - Wie deinstalliert man? Was sollte alles gelöscht werden?
Ich denke dass Du dies machen solltest... Du kommst so nicht weiter.

- Sichere Deine mysql Daten.
- Lösche (deinstalliere) mysql (uns was davon abhängt).
- Installiere mysql neu (diesmal alles von openSUSE).

Gruss,
Roland
 
Nachtrag betreffend:

Code:
DBI connect('scan_jobs:localhost','root',...) failed: Can't connect to local MySQL server through socket '/var/run/mysql/mysql.sock' (2) at /srv/www/cgi-bin/perl_programme/firmen_suchen.pl line 1441
Editier nochmals Deine my.cnf Datei: füge die Zeile ein:
Code:
# The MySQL server
[mysqld]
bind-address = 127.0.0.1       # <<< neu
port = 3306
#innodb_force_recovery = 5     # <<< temporär auskommentieren
...
Hat leider auch nichts gebracht.

Aber, der Vollständigkeit halber, hier sind zwei Links welche dieses Problem ansprechen:

Bug #61713 Mysql will not bind to "localhost" if localhost is both IPv4/IPv6 enabled
http://bugs.mysql.com/bug.php?id=61713

MySQL Fixing Host is blocked because of many connection errors
http://www.unibia.com/unibianet/freebsd/mysql-fixing-host-blocked-because-many-connection-errors

mysql Dokumentation: 4.5.1.1. mysql Options
http://dev.mysql.com/doc/refman/5.6/en/mysql-command-options.html

-/-
 
@alle "zur-Hilfe-gekommenen"
Danke für Eure Lösungsvorschläge.
...aber der Fehler liegt bei mir, weil ich nicht genug weiß.
Ich habe über Yast ( im trial-and-error-Verfahren, was wahrscheinlich auch wieder falsch war) die mysql-Pakete gelöscht, die ohne Rechner-Maulen, z.B.
Code:
amarok-2.4.3.8.1.2-i586 benötigt libmysqld.so.18, was aber nicht angeboten werden kann.
möglich waren.


Der Grund, warum ich die jetzt wieder gelöschten Pakete installiert habe, lag darin, daß ich über die Fehlermeldung
Code:
q84q Connect to the requested server DB=scan_jobs
Software error:
install_driver(mysql) failed: Can't locate DBD/mysql.pm in @INC (@INC contains: /home/fhf/yes1/build/Clone-PP-1.02-vbVeQY/ /home/fhf/yes1/build/WWW-Mechanize-Frames-0.03-wDPWnP/lib /home/fhf/yes1/build/WWW-Mechanize-1.66-IERfpP/lib /usr/lib/perl5/site_perl/5.14.2/i586-linux-thread-multi /usr/lib/perl5/site_perl/5.14.2 /usr/lib/perl5/vendor_perl/5.14.2/i586-linux-thread-multi /usr/lib/perl5/vendor_perl/5.14.2 /usr/lib/perl5/5.14.2/i586-linux-thread-multi /usr/lib/perl5/5.14.2 /usr/lib/perl5/site_perl/5.14.2/i586-linux-thread-multi /usr/lib/perl5/site_perl/5.14.2 /usr/lib/perl5/site_perl .) at (eval 16) line 3.
Perhaps the DBD::mysql perl module hasn't been fully installed,
or perhaps the capitalisation of 'mysql' isn't right.
Available drivers: DBM, ExampleP, File, Gofer, Proxy, Sponge.
 at /srv/www/cgi-bin/perl_programme/firmen_suchen.pl line 1441
die immer wieder erschien, nicht hinauskam.

Jetzt bin ich wieder soweit, daß der ursprüngliche Fehler wieder auftritt.
- wie kann ich diesen Fehler beheben?
Und - wie kann ich herausfinden, welches die allernotwendigsten Repositories sind?
 
Oben