enimen 0 Zgłoś post Napisano Wrzesień 14, 2014 (edytowany) Co może być problemem? System ubuntu 12.04 LTS * Restarting nginx nginx [fail] 2014/09/14 13:18:06 [emerg] 3293#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:06 [emerg] 3293#0: still could not bind() 2014/09/14 13:18:11 [emerg] 3310#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: bind() to 0.0.0.0:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: bind() to [::]:80 failed (98: Address already in use) 2014/09/14 13:18:11 [emerg] 3310#0: still could not bind() 2014/09/14 13:29:58 [emerg] 5149#0: unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:113 2014/09/14 13:30:03 [emerg] 5172#0: unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:113 2014/09/14 13:30:12 [emerg] 5195#0: unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:113 2014/09/14 13:30:50 [emerg] 392#0: unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:113 2014/09/14 13:31:52 [emerg] 627#0: unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:113 2014/09/14 13:32:16 [emerg] 711#0: unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:113 2014/09/14 13:32:26 [emerg] 731#0: unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:113 2014/09/14 13:34:38 [emerg] 951#0: unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:113 2014/09/14 13:38:23 [emerg] 998#0: unexpected end of file, expecting "}" in /etc/nginx/sites-enabled/default:113 # You may add here your # server { # ... # } # statements for each of your virtual hosts to this file ## # You should look at the following URL's in order to grasp a solid understanding # of Nginx configuration files in order to fully unleash the power of Nginx. # http://wiki.nginx.org/Pitfalls # http://wiki.nginx.org/QuickStart # http://wiki.nginx.org/Configuration # # Generally, you will want to move this file somewhere, and start with a clean # file but keep this around for reference. Or just disable in sites-enabled. # # Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples. ## server { listen 80 default_server; listen [::]:80 default_server ipv6only=on; root /usr/share/nginx/html; index index.php index.html index.htm; # Make site accessible from http://localhost/ server_name localhost; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; # Uncomment to enable naxsi on this location # include /etc/nginx/naxsi.rules } # Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests #location /RequestDenied { # proxy_pass http://127.0.0.1:8080; #} error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { # fastcgi_split_path_info ^(.+\.php)(/.+)$; # # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini # # # With php5-cgi alone: # fastcgi_pass 127.0.0.1:9000; # # With php5-fpm: fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # root html; # index index.html index.htm; # # location / { # try_files $uri $uri/ =404; # } #} # HTTPS server # #server { # listen 443; # server_name localhost; # # root html; # index index.html index.htm; # # ssl on; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # # ssl_session_timeout 5m; # # ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2; # ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES"; # ssl_prefer_server_ciphers on; # # location / { # try_files $uri $uri/ =404; # } #} Edytowano Wrzesień 14, 2014 przez Gość (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach
Marek607 655 Zgłoś post Napisano Wrzesień 14, 2014 (edytowany) Masz zainstalowanego apache - wpisz: /etc/init.d/apache2 stop;apt-get remove apache*;apt-get purge apache*;/etc/init.d/nginx restart Edytowano Wrzesień 14, 2014 przez Marek607 (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach
PrecelusMaximus 53 Zgłoś post Napisano Wrzesień 14, 2014 (edytowany) Tak się w oczy rzuca :-) location ~ \.php$ { .... } Nie zamknąłeś klamerką sekcji .php :-) Coś na porcie 80 chodzi... Apache? Edytowano Wrzesień 14, 2014 przez PrecelusMaximus (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach
enimen 0 Zgłoś post Napisano Wrzesień 14, 2014 (edytowany) Zrobiłem tak jak napisaliście do /usr/share/nginx/html wstawilem skrypt Wordpressa, żeby sprawdzić czy wszystko działa i przekierowało mnie do storny z Errorem. /etc/php5/fpm/pool.d/www.conf mam: listen = /var/run/php5-fpm.sock W error log pokazało 2014/09/14 14:40:19 [crit] 2565#0: *9 connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream, client: xx.xxx.xxx.xxx, server: localhost, request: "GET /index.php HTTP/1.1", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "xxx.xxx.xx.xx" Ktoś napisał, że należy rozwiązać problem w ten sposób: Open /etc/php5/fpm/pool.d/www.conf Uncomment all permission lines, like: listen.owner = www-datalisten.group = www-datalisten.mode = 0660 Restart fpm - sudo service php5-fpm restart Tak więc po zrobieniu tego widzę czystą/pustą stronę. Edytowano Wrzesień 14, 2014 przez enimen (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach
PrecelusMaximus 53 Zgłoś post Napisano Wrzesień 14, 2014 (edytowany) Czasem nie masz złych uprawnień/grupy/właściciela na /var/run/php5-fpm.sock ls -l /var/run/*.sock Edytowano Wrzesień 14, 2014 przez PrecelusMaximus (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach
enimen 0 Zgłoś post Napisano Wrzesień 14, 2014 (edytowany) Wygląda to tak: srw-rw---- 1 root root 0 Sep 14 15:21 /var/run/php5-fpm.sock srwxrwxrwx 1 root root 0 Sep 14 14:00 /var/run/proftpd.sock Zmieniłem na: srwxrwxrwx 1 www-data www-data 0 Sep 14 18:09 /var/run/php5-fpm.sock srwxrwxrwx 1 root root 0 Sep 14 14:00 /var/run/proftpd.sock Niestety operacja nie pomogła Edytowano Wrzesień 14, 2014 przez enimen (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach
niepozwole 20 Zgłoś post Napisano Wrzesień 21, 2014 (edytowany) Zrobiłem tak jak napisaliście do /usr/share/nginx/html wstawilem skrypt Wordpressa, żeby sprawdzić czy wszystko działa i przekierowało mnie do storny z Errorem. /etc/php5/fpm/pool.d/www.conf mam: listen = /var/run/php5-fpm.sock W error log pokazało 2014/09/14 14:40:19 [crit] 2565#0: *9 connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream, client: xx.xxx.xxx.xxx, server: localhost, request: "GET /index.php HTTP/1.1", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "xxx.xxx.xx.xx" Ktoś napisał, że należy rozwiązać problem w ten sposób: Open /etc/php5/fpm/pool.d/www.conf Uncomment all permission lines, like: listen.owner = www-datalisten.group = www-datalisten.mode = 0660 Restart fpm - sudo service php5-fpm restart Tak więc po zrobieniu tego widzę czystą/pustą stronę. Napisałeś, że widzisz białą stronę. Czy te wpisy dotyczące permission denied już się nie pojawiają w logach? Jeśli przestały się pojawiać, to jeden problem rozwiązałeś, ale trafiłeś na następny. Sprawdź co widać w /var/log/php5-fpm.log. Dodatkowo w php.ini włącz zapisywanie error_loga do pliku. Edytowano Wrzesień 21, 2014 przez niepozwole (zobacz historię edycji) Udostępnij ten post Link to postu Udostępnij na innych stronach