Probleme bei Update von 7.9 auf 8.3 - Apache startet nicht

Du kommst mit der Installation nicht voran oder willst noch was nachfragen? Schau auch in den "Tipps und Tricks"-Bereich.
Antworten
ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Probleme bei Update von 7.9 auf 8.3 - Apache startet nicht

Beitrag von ToBu » 22.03.2016 15:27:11

Hallo,

ich bin hier Neuling.

Habe Probleme nach Update auf meinem vServer von 7.9 auf 8.3 und Apache und bekomme dieses nicht so schnell gelöst wie ich anfangs dachte.

Folgenden Fehler kann ich nicht beheben:

[....] Restarting apache2 (via systemctl): apache2.serviceFailed to get D-Bus connection: No such file or directory

Ich habe mich bereits auf die Suche gemacht und herausgefunden das es ein Problem beim Upgrade von Apache 2.2 auf 2.4 handelt. Nur der Lösungsweg fehlt mir!

Es wäre sehr schön wenn mir jemand unter die Arme greifen und sich das einmal ansehen kann!


Nachtrag ... die apache2.conf sieht so aus:

Code: Alles auswählen

# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.4/ for detailed information about
# the directives and /usr/share/doc/apache2/README.Debian about Debian specific
# hints.
#
#
# Summary of how the Apache 2 configuration works in Debian:
# The Apache 2 web server configuration in Debian is quite different to
# upstream's suggested way to configure the web server. This is because Debian's
# default Apache2 installation attempts to make adding and removing modules,
# virtual hosts, and extra configuration directives as flexible as possible, in
# order to make automating the changes and administering the server as easy as
# possible.

# It is split into several files forming the configuration hierarchy outlined
# below, all located in the /etc/apache2/ directory:
#
#       /etc/apache2/
#       |-- apache2.conf
#       |       `--  ports.conf
#       |-- mods-enabled
#       |       |-- *.load
#       |       `-- *.conf
#       |-- conf-enabled
#       |       `-- *.conf
#       `-- sites-enabled
#               `-- *.conf
#
#
# * apache2.conf is the main configuration file (this file). It puts the pieces
#   together by including all remaining configuration files when starting up the
#   web server.
#
# * ports.conf is always included from the main configuration file. It is
#   supposed to determine listening ports for incoming connections which can be
#   customized anytime.
#
# * Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/
#   directories contain particular configuration snippets which manage modules,
#   global configuration fragments, or virtual host configurations,
#   respectively.
# Global configuration
#

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the Mutex documentation (available
# at <URL:http://httpd.apache.org/docs/2.4/mod/core.html#mutex>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
#ServerRoot "/etc/apache2"

#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
Mutex file:${APACHE_LOCK_DIR} default

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}

#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300
#
# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.
#
KeepAlive On

#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 5


# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog ${APACHE_LOG_DIR}/error.log

#
# LogLevel: Control the severity of messages logged to the error_log.
# Available values: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the log level for particular modules, e.g.
# "LogLevel info ssl:warn"
#
LogLevel warn

# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

# Include list of ports to listen on
Include ports.conf


# Sets the default security model of the Apache2 HTTPD server. It does
# not allow access to the root filesystem outside of /usr/share and /var/www.
# The former is used by web applications packaged in Debian,
# the latter may be used for local directories served by the web server. If
# your system is serving content from a sub-directory in /srv you must allow
# access here, or in any related virtual host.
<Directory />
        Options FollowSymLinks
        AllowOverride None
        Require all denied
</Directory>

<Directory /usr/share>
        AllowOverride None
        Require all granted
</Directory>

<Directory /var/www/>
        Options Indexes FollowSymLinks
       AllowOverride None
        Require all granted
</Directory>

#<Directory /srv/>
#       Options Indexes FollowSymLinks
#       AllowOverride None
#       Require all granted
#</Directory>

# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
        Require all denied
</FilesMatch>
#
# The following directives define some format nicknames for use with
# a CustomLog directive.
#
# These deviate from the Common Log Format definitions in that they use %O
# (the actual bytes sent including headers) instead of %b (the size of the
# requested file), because the latter makes it impossible to detect partial
# requests.
#
# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.
# Use mod_remoteip instead.
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.

# Include generic snippets of statements
IncludeOptional conf-enabled/*

# Include the virtual host configurations:
IncludeOptional sites-enabled/*

# vim: syntax=apache ts=4 sw=4 sts=3 sr noet

rendegast
Beiträge: 15041
Registriert: 27.02.2006 16:50:33
Lizenz eigener Beiträge: MIT Lizenz

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von rendegast » 22.03.2016 18:14:52

Es gibt wohl Fehler mit systemd auf Deinem vServer.

Ersetze fürs erste
systemd-sysv
durch
sysvinit-core
mfg rendegast
-----------------------
Viel Eifer, viel Irrtum; weniger Eifer, weniger Irrtum; kein Eifer, kein Irrtum.
(Lin Yutang "Moment in Peking")

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 22.03.2016 19:26:23

Es stimmt etwas mit dem D-Bus nicht

Code: Alles auswählen

root@web:/# apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following packages will be REMOVED:
  php5-fpm
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 9836 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 35982 files and directories currently installed.)
Removing php5-fpm (5.6.19-1~dotdeb+7.1) ...
Failed to get D-Bus connection: No such file or directory
Failed to get D-Bus connection: No such file or directory
invoke-rc.d: initscript php5-fpm, action "stop" failed.
dpkg: error processing package php5-fpm (--remove):
 subprocess installed pre-removal script returned error exit status 1
Failed to get D-Bus connection: No such file or directory
Failed to get D-Bus connection: No such file or directory
Failed to get D-Bus connection: No such file or directory
invoke-rc.d: initscript php5-fpm, action "start" failed.
dpkg: error while cleaning up:
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 php5-fpm
E: Sub-process /usr/bin/dpkg returned an error code (1)
Es würde mich freuen wenn es sich jemand ansehen und beheben kann!

rendegast
Beiträge: 15041
Registriert: 27.02.2006 16:50:33
Lizenz eigener Beiträge: MIT Lizenz

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von rendegast » 22.03.2016 21:25:30

Benutze aptitude, um das systemd-sysv durch sysvinit-core zu ersetzen.
Nach einem Reboot kann dann die Installation/Upgrade komplettiert werden,
da das systemd/dbus-Ding nicht mehr die postinst-Skripte stört.

Eventuell sollte für diesen Wechsel vorher systemd-shim installiert werden.
Das vereinfacht das Ablösen von systemd-sysv.
Zuletzt geändert von rendegast am 22.03.2016 23:08:10, insgesamt 1-mal geändert.
mfg rendegast
-----------------------
Viel Eifer, viel Irrtum; weniger Eifer, weniger Irrtum; kein Eifer, kein Irrtum.
(Lin Yutang "Moment in Peking")

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 22.03.2016 22:36:16

bekomme es nicht hin

Code: Alles auswählen

root@web:/# aptitude install upstart sysvinit-core systemd-shim systemd-sysv-
No candidate version found for upstart   
No candidate version found for sysvinit-core
No candidate version found for systemd-shim
No candidate version found for upstart
No candidate version found for sysvinit-core
No candidate version found for systemd-shim
The following packages will be REMOVED:
  systemd-sysv 
The following partially installed packages will be configured:
  php5-fpm{b} 
0 packages upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 79.9 kB will be freed.
The following packages have unmet dependencies:
 php5-fpm : Depends: libonig2 (>= 5.2.0) but it is not installable.
            Depends: libqdbm14 (>= 1.8.74) but it is not installable.
            Depends: php5-common (= 5.6.19-1~dotdeb+7.1) which is a virtual package.
            Depends: php5-cli which is a virtual package.
            Depends: php5-json which is a virtual package.
 libpam-systemd : Depends: systemd-shim (>= 8-2) which is a virtual package. or
                           systemd-sysv but it is not going to be installed.
 init : PreDepends: systemd-sysv but it is not going to be installed. or
                    sysvinit-core which is a virtual package. or
                    upstart which is a virtual package.
The following actions will resolve these dependencies:

     Remove the following packages:                       
1)     php5-fpm                                           

     Keep the following packages at their current version:
2)     systemd-sysv [215-17+deb8u3 (now)]                 



Accept this solution? [Y/n/q/?] Y
The following packages will be REMOVED:
  php5-fpm{a} 
0 packages upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 9836 kB will be freed.
Do you want to continue? [Y/n/?] Y
(Reading database ... 35982 files and directories currently installed.)
Removing php5-fpm (5.6.19-1~dotdeb+7.1) ...
Failed to get D-Bus connection: No such file or directory
Failed to get D-Bus connection: No such file or directory
invoke-rc.d: initscript php5-fpm, action "stop" failed.
dpkg: error processing package php5-fpm (--remove):
 subprocess installed pre-removal script returned error exit status 1
Failed to get D-Bus connection: No such file or directory
Failed to get D-Bus connection: No such file or directory
Failed to get D-Bus connection: No such file or directory
invoke-rc.d: initscript php5-fpm, action "start" failed.
dpkg: error while cleaning up:
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 php5-fpm
E: Sub-process /usr/bin/dpkg returned an error code (1)
Failed to perform requested operation on package.  Trying to recover:

DeletedUserReAsG

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von DeletedUserReAsG » 22.03.2016 22:45:30

Es sollte auch mit systemd und ohne dbus funktionieren. Zumindest lief‘s bei mir problemlos (bis ich systemd-nspawn brauchte – das benötigt in der Tat dbus). Allerdings habe ich auch keine Pakete aus Fremdquellen auf meinen Systemen ….

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 22.03.2016 23:12:41

ich bin wirklich ratlos

Code: Alles auswählen

root@web:/# apt-get install sysvinit-core systemd-shim systemd-sysv-
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package systemd-shim is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

Package sysvinit-core is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  systemd-sysv

E: Package 'sysvinit-core' has no installation candidate
E: Package 'systemd-shim' has no installation candidate
die /etc/apt/sources.list sieht wie folgt aus:

Code: Alles auswählen

deb http://packages.dotdeb.org jessie all
deb-src http://packages.dotdeb.org jessie all


###############################################################################
# Mirror
#

deb http://ftp.hosteurope.de/mirror/packages.dotdeb.org/ stable all
deb-src http://ftp.hosteurope.de/mirror/packages.dotdeb.org/ stable all



###############################################################################
# Backupmirror
#


deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

rendegast
Beiträge: 15041
Registriert: 27.02.2006 16:50:33
Lizenz eigener Beiträge: MIT Lizenz

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von rendegast » 22.03.2016 23:43:30

Korrekte sources.list

Code: Alles auswählen

deb http://security.debian.org/ jessie/updates main contrib non-free
deb http://ftp.de.debian.org/debian/ jessie-updates main contrib non-free
deb http://ftp.de.debian.org/debian/ jessie main contrib non-free

deb http://packages.dotdeb.org jessie all
Dein dist-upgrade dürfte demnach auch zum großen Teil unvollständig sein.
mfg rendegast
-----------------------
Viel Eifer, viel Irrtum; weniger Eifer, weniger Irrtum; kein Eifer, kein Irrtum.
(Lin Yutang "Moment in Peking")

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 22.03.2016 23:53:03

danke ... klappt aber immer noch nicht

Code: Alles auswählen

root@web:/# apt-get install sysvinit-core systemd-shim systemd-sysv-
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 php5-fpm : Depends: libonig2 (>= 5.2.0) but it is not going to be installed
            Depends: libqdbm14 (>= 1.8.74) but it is not going to be installed
            Depends: php5-common (= 5.6.19-1~dotdeb+7.1) but it is not going to be installed
            Depends: php5-cli but it is not going to be installed
            Depends: php5-json but it is not going to be installed
 systemd-shim : Depends: cgmanager (>= 0.32) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution)

rendegast
Beiträge: 15041
Registriert: 27.02.2006 16:50:33
Lizenz eigener Beiträge: MIT Lizenz

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von rendegast » 23.03.2016 00:45:09

Du solltest doch aptitude nehmen.
Das kann um solche Showstopper, andere hängende Pakete, leichter herumlavieren.

Alternativ per dpkg

Code: Alles auswählen

apt-get download cgmanager  libcgmanager0  libnih-dbus1  libnih1  systemd-shim
apt-get download systemd-sysv sysvinit-core

dpkg -i cgmanager*deb  libcgmanager0*deb  libnih-dbus1*deb  libnih1*deb  systemd-shim*deb
dpkg -i sysvinit-core*deb
dpkg -P systemd-sysv
(dpkg gegebenenfalls mit Schalter --force-all o.ä.)




Wie der gegenwärtige Status des init-Systems?

Code: Alles auswählen

dpkg -l | egrep -i "systemd|udev|sysv|init|bootlog"
Zuletzt geändert von rendegast am 23.03.2016 00:52:12, insgesamt 1-mal geändert.
mfg rendegast
-----------------------
Viel Eifer, viel Irrtum; weniger Eifer, weniger Irrtum; kein Eifer, kein Irrtum.
(Lin Yutang "Moment in Peking")

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 23.03.2016 00:50:06

Jetzt kann ich nicht mehr folgen

Code: Alles auswählen

root@web:/# apt-get download cgmanager  libcgmanager0  libnih-dbus1  libnih1  systemd-shim
Err http://ftp.de.debian.org/debian/ jessie/main cgmanager amd64 0.33-2+deb8u2
  Could not resolve 'ftp.de.debian.org'
Err http://ftp.de.debian.org/debian/ jessie/main libcgmanager0 amd64 0.33-2+deb8u2
  Could not resolve 'ftp.de.debian.org'
Err http://ftp.de.debian.org/debian/ jessie/main libnih-dbus1 amd64 1.0.3-4.3
  Could not resolve 'ftp.de.debian.org'
Err http://ftp.de.debian.org/debian/ jessie/main libnih1 amd64 1.0.3-4.3
  Could not resolve 'ftp.de.debian.org'
Err http://ftp.de.debian.org/debian/ jessie/main systemd-shim amd64 9-1
  Could not resolve 'ftp.de.debian.org'
E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/c/cgmanager/cgmanager_0.33-2+deb8u2_amd64.deb  Could not resolve 'ftp.de.debian.org'

E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/c/cgmanager/libcgmanager0_0.33-2+deb8u2_amd64.deb  Could not resolve 'ftp.de.debian.org'

E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/libn/libnih/libnih-dbus1_1.0.3-4.3_amd64.deb  Could not resolve 'ftp.de.debian.org'

E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/libn/libnih/libnih1_1.0.3-4.3_amd64.deb  Could not resolve 'ftp.de.debian.org'

E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/s/systemd-shim/systemd-shim_9-1_amd64.deb  Could not resolve 'ftp.de.debian.org'

root@web:/# apt-get download systemd-sysv sysvinit-core
Err http://ftp.de.debian.org/debian/ jessie/main systemd-sysv amd64 215-17+deb8u3
  Could not resolve 'ftp.de.debian.org'
Err http://ftp.de.debian.org/debian/ jessie/main sysvinit-core amd64 2.88dsf-59
  Could not resolve 'ftp.de.debian.org'
E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/s/systemd/systemd-sysv_215-17+deb8u3_amd64.deb  Could not resolve 'ftp.de.debian.org'

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 23.03.2016 00:54:09

Status

Code: Alles auswählen

root@web:/# dpkg -l | egrep -i "systemd|udev|sysv|init|bootlog"
ii  init                           1.22                        amd64        System-V-like init utilities - metapackage
ii  init-system-helpers            1.22                        all          helper tools for all init systems
ii  initramfs-tools                0.120                       all          generic modular initramfs generator
ii  initscripts                    2.88dsf-59                  amd64        scripts for initializing and shutting down the system
ii  insserv                        1.14.0-5                    amd64        boot sequence organizer using LSB init.d script dependency information
ii  libklibc                       2.0.4-2                     amd64        minimal libc subset for use with initramfs
ii  libpam-systemd:amd64           215-17+deb8u3               amd64        system and service manager - PAM module
ii  libsystemd0:amd64              215-17+deb8u3               amd64        systemd utility library
ii  libudev1:amd64                 215-17+deb8u3               amd64        libudev shared library
ii  lsb-base                       4.1+Debian13+nmu1           all          Linux Standard Base 4.1 init script functionality
ii  ncurses-base                   5.9+20140913-1              all          basic terminal type definitions
ii  systemd                        215-17+deb8u3               amd64        system and service manager
pi  systemd-sysv                   215-17+deb8u3               amd64        system and service manager - SysV links
ii  sysv-rc                        2.88dsf-59                  all          System-V-like runlevel change mechanism
ii  sysvinit                       2.88dsf-59                  amd64        System-V-like init utilities - transitional package
ii  sysvinit-utils                 2.88dsf-59                  amd64        System-V-like utilities
ii  udev                           215-17+deb8u3               amd64        /dev/ and hotplug management daemon

rendegast
Beiträge: 15041
Registriert: 27.02.2006 16:50:33
Lizenz eigener Beiträge: MIT Lizenz

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von rendegast » 23.03.2016 01:01:59

Dein init-System ist/war (bis systemd-sysv den Zustand 'pi' bekam) ein nominell einwandfreies jessie-systemd.


Dein Netzwerk(einstellung) ist kaputt,
hostnamen werden nicht aufgelöst.
Beim 'apt-get update' nicht aufgefallen?
Zuletzt geändert von rendegast am 23.03.2016 01:03:50, insgesamt 1-mal geändert.
mfg rendegast
-----------------------
Viel Eifer, viel Irrtum; weniger Eifer, weniger Irrtum; kein Eifer, kein Irrtum.
(Lin Yutang "Moment in Peking")

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 23.03.2016 01:03:18

Nein ist es mir nicht!

sieht wie folgt aus


Code: Alles auswählen

root@web:/# cat /etc/hosts
fe00::0		ip6-localnet
ff00::0		ip6-mcastprefix
ff02::1		ip6-allnodes
ff02::2		ip6-allrouters

127.0.0.1 localhost.localdomain localhost
# Auto-generated hostname. Please do not remove this comment.
62.108.41.xxx web.xxxx.de  web
::1 localhost
Zuletzt geändert von ToBu am 23.03.2016 01:09:46, insgesamt 2-mal geändert.

rendegast
Beiträge: 15041
Registriert: 27.02.2006 16:50:33
Lizenz eigener Beiträge: MIT Lizenz

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von rendegast » 23.03.2016 01:04:30

Mit einer validen Konfiguration.
mfg rendegast
-----------------------
Viel Eifer, viel Irrtum; weniger Eifer, weniger Irrtum; kein Eifer, kein Irrtum.
(Lin Yutang "Moment in Peking")

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 23.03.2016 01:13:10

rendegast hat geschrieben:Mit einer validen Konfiguration.
?
Zuletzt geändert von ToBu am 23.03.2016 02:08:44, insgesamt 1-mal geändert.

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 23.03.2016 01:36:05

So wie mir es scheint fehlt php 5.6.19 ... nur es lässt sich nicht mehr installieren

Code: Alles auswählen

root@web:/# apt-get dist-upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
 php5-fpm : Depends: libonig2 (>= 5.2.0) but it is not installed
            Depends: libqdbm14 (>= 1.8.74) but it is not installed
            Depends: php5-common (= 5.6.19-1~dotdeb+7.1) but it is not installed
            Depends: php5-cli but it is not installed
            Depends: php5-json but it is not installed
E: Unmet dependencies. Try using -f.

Code: Alles auswählen

root@web:/# apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following packages were automatically installed and are no longer required:
  libonig2 libqdbm14 php5-cli php5-common php5-json php5-readline
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  libonig2 libqdbm14 php5-cli php5-common php5-json php5-readline
Suggested packages:
  php-pear php5-user-cache
The following packages will be REMOVED:
  php5-fpm
The following NEW packages will be installed:
  libonig2 libqdbm14 php5-cli php5-common php5-json php5-readline
0 upgraded, 6 newly installed, 1 to remove and 0 not upgraded.
1 not fully installed or removed.
Need to get 2927 kB/3163 kB of archives.
After this operation, 1303 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Err http://ftp.de.debian.org/debian/ jessie/main php5-common amd64 5.6.17+dfsg-0+deb8u1
  Could not resolve 'ftp.de.debian.org'
Err http://ftp.de.debian.org/debian/ jessie/main php5-json amd64 1.3.6-1
  Could not resolve 'ftp.de.debian.org'
Err http://ftp.de.debian.org/debian/ jessie/main php5-cli amd64 5.6.17+dfsg-0+deb8u1
  Could not resolve 'ftp.de.debian.org'
Err http://ftp.de.debian.org/debian/ jessie/main php5-readline amd64 5.6.17+dfsg-0+deb8u1
  Could not resolve 'ftp.de.debian.org'
E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/p/php5/php5-common_5.6.17+dfsg-0+deb8u1_amd64.deb  Could not resolve 'ftp.de.debian.org'

E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/p/php-json/php5-json_1.3.6-1_amd64.deb  Could not resolve 'ftp.de.debian.org'

E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/p/php5/php5-cli_5.6.17+dfsg-0+deb8u1_amd64.deb  Could not resolve 'ftp.de.debian.org'

E: Failed to fetch http://ftp.de.debian.org/debian/pool/main/p/php5/php5-readline_5.6.17+dfsg-0+deb8u1_amd64.deb  Could not resolve 'ftp.de.debian.org'

E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

Wie bekommt man das wieder hin?

pferdefreund
Beiträge: 3799
Registriert: 26.02.2009 14:35:56

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von pferdefreund » 23.03.2016 06:38:15

Could not resolve 'ftp.de.debian.org' riecht für mich nach Netzwerkproblemen oder falscher /etc/apt/sources.list

dirk11
Beiträge: 2842
Registriert: 02.07.2013 11:47:01

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von dirk11 » 23.03.2016 08:03:12

rendegast hat geschrieben:Du solltest doch aptitude nehmen.
Das kann um solche Showstopper, andere hängende Pakete, leichter herumlavieren.
Kann es, und zwar sehr gut. Manchmal löst es erst vollständig auf, wenn man es nach einem erfolgten Durchgang beendet und nochmal startet, damit aptitude den Rest erledigen kann, aber das funktioniert seit vielen Jahren perfekt.
Es gibt mMn keine bessere Paketverwaltung in Debian, wieso wird da der eindeutige Hinweis vom TE wiederholt ignoriert - vor allem wenn man sich selbst als "Anfänger" bezeichnet!?

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 23.03.2016 08:25:57

Mit Aptitude habe ich das aber auch probiert

Code: Alles auswählen

root@web:/# aptitude install sysvinit-core systemd-shim systemd-sysv-
No candidate version found for sysvinit-core
No candidate version found for systemd-shim
No candidate version found for sysvinit-core
No candidate version found for systemd-shim
The following packages will be REMOVED:
  systemd-sysv 
The following partially installed packages will be configured:
  php5-fpm{b} 
0 packages upgraded, 0 newly installed, 1 to remove and 15 not upgraded.
Need to get 0 B of archives. After unpacking 79.9 kB will be freed.
The following packages have unmet dependencies:
 php5-fpm : Depends: libonig2 (>= 5.2.0) but it is not installable.
            Depends: libqdbm14 (>= 1.8.74) but it is not installable.
            Depends: php5-common (= 5.6.19-1~dotdeb+7.1) which is a virtual package.
            Depends: php5-cli which is a virtual package.
            Depends: php5-json which is a virtual package.
 libpam-systemd : Depends: systemd-shim (>= 8-2) which is a virtual package. or
                           systemd-sysv but it is not going to be installed.
 init : PreDepends: systemd-sysv but it is not going to be installed. or
                    sysvinit-core which is a virtual package. or
                    upstart which is a virtual package.
The following actions will resolve these dependencies:

     Remove the following packages:                       
1)     php5-fpm                                           

     Keep the following packages at their current version:
2)     systemd-sysv [215-17+deb8u3 (now)]                 



Accept this solution? [Y/n/q/?] Y
The following packages will be REMOVED:
  php5-fpm{a} 
0 packages upgraded, 0 newly installed, 1 to remove and 15 not upgraded.
Need to get 0 B of archives. After unpacking 9836 kB will be freed.
Do you want to continue? [Y/n/?] Y
(Reading database ... 35907 files and directories currently installed.)
Removing php5-fpm (5.6.19-1~dotdeb+7.1) ...
Failed to get D-Bus connection: No such file or directory
Failed to get D-Bus connection: No such file or directory
invoke-rc.d: initscript php5-fpm, action "stop" failed.
dpkg: error processing package php5-fpm (--remove):
 subprocess installed pre-removal script returned error exit status 1
Failed to get D-Bus connection: No such file or directory
Failed to get D-Bus connection: No such file or directory
Failed to get D-Bus connection: No such file or directory
invoke-rc.d: initscript php5-fpm, action "start" failed.
dpkg: error while cleaning up:
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 php5-fpm
E: Sub-process /usr/bin/dpkg returned an error code (1)
Failed to perform requested operation on package.  Trying to recover:
                       

DeletedUserReAsG

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von DeletedUserReAsG » 23.03.2016 08:31:16

Ich persönlich würde die Fremdquellen aus der sources.list nehmen und dafür die richtigen Zeilen für Jessie eintragen, das fragliche Paket (notfalls mit Gewalt [mittels dpkg --force]) deinstallieren und anschließend das System reparieren.

Alternativ wär’s bei deinem Kentnissstand vielleicht in Erwägung zu ziehen, das System neu (und diesmal sauber) aufzusetzen.

ToBu
Beiträge: 12
Registriert: 22.03.2016 15:22:30

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von ToBu » 23.03.2016 08:46:05

Fremdquellen habe ich nicht drin

Code: Alles auswählen

deb http://security.debian.org/ jessie/updates main contrib non-free
deb-src http://security.debian.org/ jessie/updates main contrib non-free

deb http://ftp.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://ftp.debian.org/debian/ jessie-updates main contrib non-free

deb http://http.debian.net/debian/ jessie main contrib non-free
deb-src http://http.debian.net/debian/ jessie main contrib non-free

deb http://http.debian.net/debian/ jessie-backports main contrib non-free
deb-src http://http.debian.net/debian/ jessie-backports main contrib non-free

DeletedUserReAsG

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von DeletedUserReAsG » 23.03.2016 08:50:08

… nicht mehr. Das fragliche Paket stammt aber aus einer, und das (plus anderen Unzulänglichkeiten seitens des Admins) hat dein System in diesen Zustand gebracht.

Abgesehen davon: hast du denn mal die Paketlisten geupdated? Aus meiner Sicht deuten die Ausgaben darauf hin, dass das nicht der Fall ist.

rendegast
Beiträge: 15041
Registriert: 27.02.2006 16:50:33
Lizenz eigener Beiträge: MIT Lizenz

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von rendegast » 23.03.2016 09:18:51

Tobu hat geschrieben: Fremdquellen habe ich nicht drin
...
Das sieht anders aus als die früher gepostete sources.list.
Mit demselben Fehler.
Und leider mit meinem korrekten Beispiel dazwischen.
mfg rendegast
-----------------------
Viel Eifer, viel Irrtum; weniger Eifer, weniger Irrtum; kein Eifer, kein Irrtum.
(Lin Yutang "Moment in Peking")

DeletedUserReAsG

Re: Probleme bei Update von 7.9 auf 8.3 - Apache startet ni

Beitrag von DeletedUserReAsG » 23.03.2016 09:35:18

Das System ist fubar – hab’ gerade mal draufgeschaut. Zum Problem hier im Thread: auch, wenn die sources.list jetzt sauber aussehen sollte, in sources.list.d/ lagen noch froxlor.list und dotdeb.list; die Paketlisten sind vollkommen desintegriert, das System ist im derzeitigen Status nicht in der Lage, sauber durchzubooten und befindet sich nun in einer Art Rescuemodus ohne Netz.

Antworten