При перезагрузке Apache2 выходит Ошибка:
# /etc/init.d/apache2 restart
Restarting web server: apache2(98)Address already in use: make_sock: could not bind to address [::]:82
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:82
no listening sockets available, shutting down
Unable to open logs
Action 'start' failed.
The Apache error log may have more information.
failed!
В командой строке выполните (без решетки):
# for i in `lsof -i :82 | grep apache2 | awk {' print $2'}`; do kill -9 $i; done
Для Centos: https://www.webune.com/forums/98address-already-in-use-make-sock-could-not-bind-to-address-80-t1091.html
Просмотров: 1083