Skip to content
Extraits de code Groupes Projets
Valider 02477ed2 rédigé par Alec Leamas's avatar Alec Leamas
Parcourir les fichiers

Trying to cope with #722 for the moment.

Issue warning if there already is a running redis server, typically
the system server installed with the redis[-server] package.

See http://bugs.joindiaspora.com/issues/722
parent 220e9ebd
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -99,6 +99,16 @@ if [ -n "$services" ]; then
exit 64
fi
# See http://bugs.joindiaspora.com/issues/722
services=$( chk_service 5379 )
if [ -n "$services" ]; then
echo "Error: Someone (another redis server?) is using redis port 5379" >&2
echo " $services"
exit 64
fi
# Check if Mongo is running
if ! ps ax | grep -v grep | grep mongod >/dev/null
then
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter