• Cloud MAC OS для разработки?

    dudilona
    @dudilona
    Скажу, что не все так радостно.
    Нагуглить хороший сервис достаточно проблематично ибо их можно пересчитать по пальцам одной руки, даже если это рука провинившегося члена банды якудза, но к счастью он есть!

    Первый в выдаче гугла: www.macincloud.com - отличный сервис, работает хорошо!
    Второй: virtualmacosx.com - имитация сервиса, а по факту замаскированный скам проект - Вы получите доступ к неработающей машине и не сможете вернуть свои деньги. Так, что не ведитесь на уловку более выгодных тарифов, а сразу пробуйте первый вариант ;)
  • Mdadm: массив, сконфигурированный как md0, после ребута превращается в md127 и не работает?

    dudilona
    @dudilona
    Реально помогло, спасибо!
    Тупил часа 3, искал как решить проблему...
    Вот вроде Linux радует своими возможностями и т.п...
    ...а потом как где-нибудь затык произойдет и чеши репу до опупения - ненавижу это состояние )
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Одинокие и брошенные )
    Спасибо за уделенное время и внимание к решению вопроса ;)
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Так, через веб интерфейс по адресу: IPсервака/server-status доступа нет, ошибка 500.
    Зато заставил munin работать ))) :
    apache_accesses | yes | yes
    apache_processes | yes | yes
    apache_volume | yes | yes

    Рецепт:
    в /etc/nginx/nginx.conf вставляем код:
    server {
    listen 127.0.0.1:80;
    location /server-status {
    proxy_pass http://127.0.0.1:8081;
    }
    }

    в /etc/apache2/mods-available/status.conf такой код:
    Listen 127.0.0.1:8081
    
    <Location /server-status>
        SetHandler server-status
        Order deny,allow
        Deny from all
        Allow from all
    </Location>
    
    ExtendedStatus On
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Я уже запутался кто кого слушает ))) ничего не понимаю )
    менял proxy_pass на ipСервака - не помогло )
    Еще я добавил в файле /etc/apache2/mods-enabled/status.conf
    перед

    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from all

    это: Listen 127.0.0.1:8080
    после чего curl 127.0.0.1:8080/server-status?auto заработал и выдал:

    Total Accesses: 0
    Total kBytes: 0
    Uptime: 6
    ReqPerSec: 0
    BytesPerSec: 0
    BusyWorkers: 1
    IdleWorkers: 2
    Scoreboard: W__.............................................................................................................................................................................................................................................

    и команда munin-node-configure --suggest |grep apache уже радует новыми изменениями:
    apache_accesses | yes | no [ExtendedStatus option for apache mod_status is missing on port 80]
    apache_processes | yes | no [ExtendedStatus option for apache mod_status is missing on port 80]
    apache_volume | yes | no [ExtendedStatus option for apache mod_status is missing on port 80]

    Но при этом через браузер по адресу: ipСервака/server-status - всеравно ошибка 500

    Что я делаю уже совсем не понимаю, т.к. мозги запудрились окончательно ))) Но вроде что-то да происходит потихоньку...

    Если проблему не решу до конца в течении следующих 20-30 минут, забью на этот mod_status на сегодня )))
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Обнаружил что в конфиг nginx забыл дописать:
    server {
    listen 127.0.0.1:80;
    перед
    location /server-status {
    proxy_pass 127.0.0.1:8080/;
    }
    }

    Дописал, но изменений нет.
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Ответ:
    curl: (7) couldn't connect to host

    А если вбиваю:
    curl http://ipСервака:8080/server-status?auto
    то:
    Total Accesses: 11
    Total kBytes: 126
    CPULoad: .0604167
    Uptime: 480
    ReqPerSec: .0229167
    BytesPerSec: 268.8
    BytesPerReq: 11729.5
    BusyWorkers: 1
    IdleWorkers: 2
    Scoreboard: __W.............................................................................................................................................................................................................................................................
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Сделал в итоге по Вашему совету, ошибку не пишет при перезапуске nginx, но всеравно не работает, конфиг:
    # Server globals
    user                    www-data;
    worker_processes        1;
    error_log               /var/log/nginx/error.log;
    pid                     /var/run/nginx.pid;
    
    
    
    
    # Worker config
    events {
            worker_connections  1024;
            use                 epoll;
    }
    
    
    
    
    http {
        # Main settings
        sendfile                        on;
        tcp_nopush                      on;
        tcp_nodelay                     on;
        client_header_timeout           1m;
        client_body_timeout             1m;
        client_header_buffer_size       2k;
        client_body_buffer_size         256k;
        client_max_body_size            100m;
        large_client_header_buffers     4   8k;
        send_timeout                    30;
        keepalive_timeout               60 60;
        reset_timedout_connection       on;
        server_tokens                   off;
        server_name_in_redirect         off;
        server_names_hash_max_size      512;
        server_names_hash_bucket_size   512;
    
    
    
    
        # Log format
        log_format  main    '$remote_addr - $remote_user [$time_local] $request '
                            '"$status" $body_bytes_sent "$http_referer" '
                            '"$http_user_agent" "$http_x_forwarded_for"';
        log_format  bytes   '$body_bytes_sent';
        #access_log          /var/log/nginx/access.log  main;
        access_log off;
    
    
    
    
        # Mime settings
        include             /etc/nginx/mime.types;
        default_type        application/octet-stream;
    
    
    
    
        # Compression
        gzip                on;
        gzip_comp_level     9;
        gzip_min_length     1000;
        gzip_buffers        8 64k;
        gzip_types          text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
        gzip_proxied        any;
    
    
    
    
        # Proxy settings
        proxy_redirect      off;
        proxy_set_header    Host            $host;
        proxy_set_header    X-Real-IP       $remote_addr;
        proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass_header   Set-Cookie;
        proxy_connect_timeout   90;
        proxy_send_timeout  90;
        proxy_read_timeout  90;
        proxy_buffers       32 4k;
    
    
    
        # Cloudflare https://www.cloudflare.com/ips
        set_real_ip_from   199.27.128.0/21;
        set_real_ip_from   173.245.48.0/20;
        set_real_ip_from   103.21.244.0/22;
        set_real_ip_from   103.22.200.0/22;
        set_real_ip_from   103.31.4.0/22;
        set_real_ip_from   141.101.64.0/18;
        set_real_ip_from   108.162.192.0/18;
        set_real_ip_from   190.93.240.0/20;
        set_real_ip_from   188.114.96.0/20;
        set_real_ip_from   197.234.240.0/22;
        set_real_ip_from   198.41.128.0/17;
        set_real_ip_from   162.158.0.0/15;
        set_real_ip_from   104.16.0.0/12;
        set_real_ip_from   172.64.0.0/13;
        #set_real_ip_from   2400:cb00::/32;
        #set_real_ip_from   2606:4700::/32;
        #set_real_ip_from   2803:f800::/32;
        #set_real_ip_from   2405:b500::/32;
        #set_real_ip_from   2405:8100::/32;
        real_ip_header     CF-Connecting-IP;
    
    
    
    
        # SSL PCI Compliance
        ssl_session_cache   shared:SSL:10m;
        ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;
        ssl_ciphers        "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
    
    
    
    
        # Error pages
        error_page          403          /error/403.html;
        error_page          404          /error/404.html;
        error_page          502 503 504  /error/50x.html;
    
    
    
    
        # Cache
        proxy_cache_path /var/cache/nginx levels=2 keys_zone=cache:10m inactive=60m max_size=512m;
        proxy_cache_key "$host$request_uri $cookie_user";
        proxy_temp_path  /var/cache/nginx/temp;
        proxy_ignore_headers Expires Cache-Control;
        proxy_cache_use_stale error timeout invalid_header http_502;
        proxy_cache_valid any 3d;
    
    
        map $http_cookie $no_cache {
            default 0;
            ~SESS 1;
            ~wordpress_logged_in 1;
        }
    
    
    
    
        # Wildcard include
        include             /etc/nginx/conf.d/*.conf;
    
    server {
    
    location /server-status {
    proxy_pass http://127.0.0.1:8080/;
    }
    
    location ~* ^.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ {
            expires max;
        }
    }
    
    
    }
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Короче особо они не отличаются, также нашел еще подключаемые конфиги из папки conf.d
    первый:
    server {
    listen IPсервака:80 default;
    server_name _;
    #access_log /var/log/nginx/IPсервака.log main;
    location / {
    proxy_pass http://IPсервака:8080;
    }
    }

    второй:
    server {
    listen 127.0.0.1:8084 default;
    server_name _;
    server_name_in_redirect off;
    location / {
    stub_status on;
    access_log off;
    }
    }

    третий:
    include /home/admin/conf/web/nginx.conf;

    конфиг по этому пути:
    server {
    listen IPСервака:80;
    server_name host1451673 www.host1451673;
    error_log /var/log/apache2/domains/host1451673.error.log error;

    location / {
    proxy_pass http://IPСервака:8080;
    location ~* ^.+\.(jpg|jpeg|gif|png|ico|svg|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|odt|ods|odp|odf|tar|wav|bmp|rtf|js|mp3|avi|mpeg|flv|html|htm)$ {
    root /home/admin/web/host1451673/public_html;
    access_log /var/log/apache2/domains/host1451673.log combined;
    access_log /var/log/apache2/domains/host1451673.bytes bytes;
    expires max;
    try_files $uri @fallback;
    }
    }

    location /error/ {
    alias /home/admin/web/host1451673/document_errors/;
    }

    location @fallback {
    proxy_pass http://IPСервака:8080;
    }

    location ~ /\.ht {return 404;}
    location ~ /\.svn/ {return 404;}
    location ~ /\.git/ {return 404;}
    location ~ /\.hg/ {return 404;}
    location ~ /\.bzr/ {return 404;}

    include /home/admin/conf/web/nginx.host1451673.conf*;
    }
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Вообще это идея покопаться в nginx конфиге, т.к. после установки VestaCP я его полностью заменил версией найденной в нете по гайду настройки VPS

    Надо достать дефолтный конфиг от VestaCP и сравнить с тем что у меня. Возможно найдется решение )
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Попробовал, ругается при перезапуске nginx:

    Restarting nginx: nginxnginx: [emerg] invalid URL prefix in /etc/nginx/nginx.conf:153
    nginx: configuration file /etc/nginx/nginx.conf test failed
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    А вот кстати nginx error log, что-то там фигурирует про server-status:
    2016/04/03 15:50:46 [error] 1545#0: *28688 upstream prematurely closed connection while reading response header from upstream, client: 80.252.154.96, server: _, request: "GET /server-status HTTP/1.1", upstream: "http://XXX.XX.XXX.XX:8080/server-status", host: "XXX.XX.XXX.XX"
    2016/04/03 15:50:48 [error] 1545#0: *28688 upstream prematurely closed connection while reading response header from upstream, client: 80.252.154.96, server: _, request: "GET /server-status HTTP/1.1", upstream: "http://XXX.XX.XXX.XX:8080/server-status", host: "XXX.XX.XXX.XX"
    2016/04/03 15:50:52 [error] 1545#0: *28688 upstream prematurely closed connection while reading response header from upstream, client: 80.252.154.96, server: _, request: "GET /server-status HTTP/1.1", upstream: "http://XXX.XX.XXX.XX:8080/server-status", host: "XXX.XX.XXX.XX"
    2016/04/03 15:50:57 [error] 1545#0: *28688 upstream prematurely closed connection while reading response header from upstream, client: 80.252.154.96, server: _, request: "GET /server-status HTTP/1.1", upstream: "http://XXX.XX.XXX.XX:8080/server-status", host: "XXX.XX.XXX.XX"
    2016/04/03 15:55:04 [error] 1545#0: *28715 open() "/etc/nginx/html/server-status" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 15:55:04 [error] 1545#0: *28715 open() "/etc/nginx/html/error/404.html" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 15:55:07 [error] 1545#0: *28716 open() "/etc/nginx/html/server-status" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 15:55:07 [error] 1545#0: *28716 open() "/etc/nginx/html/error/404.html" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 15:55:08 [error] 1545#0: *28717 open() "/etc/nginx/html/server-status" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 15:55:08 [error] 1545#0: *28717 open() "/etc/nginx/html/error/404.html" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:00:04 [error] 1545#0: *28734 open() "/etc/nginx/html/server-status" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:00:04 [error] 1545#0: *28734 open() "/etc/nginx/html/error/404.html" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:00:08 [error] 1545#0: *28735 open() "/etc/nginx/html/server-status" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:00:08 [error] 1545#0: *28735 open() "/etc/nginx/html/error/404.html" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:00:09 [error] 1545#0: *28736 open() "/etc/nginx/html/server-status" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:00:09 [error] 1545#0: *28736 open() "/etc/nginx/html/error/404.html" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:05:04 [error] 1545#0: *28753 open() "/etc/nginx/html/server-status" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:05:04 [error] 1545#0: *28753 open() "/etc/nginx/html/error/404.html" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:05:07 [error] 1545#0: *28754 open() "/etc/nginx/html/server-status" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:05:07 [error] 1545#0: *28754 open() "/etc/nginx/html/error/404.html" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:05:08 [error] 1545#0: *28755 open() "/etc/nginx/html/server-status" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
    2016/04/03 16:05:08 [error] 1545#0: *28755 open() "/etc/nginx/html/error/404.html" failed (2: No such file or directory), client: 127.0.0.1, server: , request: "GET /server-status?auto HTTP/1.1", host: "127.0.0.1:80"
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    тот который apache?
    вот:
    [Sun Apr 03 06:25:19 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 06:25:19 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 13:52:39 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 13:52:39 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 13:52:40 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 13:52:40 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 13:54:11 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 13:54:12 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 13:54:12 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 13:54:12 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 13:54:35 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 13:54:36 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 13:54:36 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 13:54:37 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 13:54:52 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 13:54:53 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 13:54:53 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 13:54:53 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 14:00:11 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 14:00:12 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 14:00:12 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 14:00:12 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 14:04:59 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 14:05:00 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 14:05:00 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 14:05:00 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 14:07:41 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 14:07:42 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 14:07:42 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 14:07:42 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 14:08:31 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 14:08:32 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 14:08:32 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 14:08:32 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 14:10:05 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 14:10:06 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 14:10:06 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 14:10:06 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 14:10:43 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 14:10:44 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 14:10:44 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 14:10:44 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 14:11:15 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 14:11:16 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 14:11:16 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 14:11:16 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 14:12:18 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 14:12:19 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 14:12:19 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 14:12:19 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 15:33:57 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 15:33:58 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 15:33:58 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 15:33:58 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 15:36:01 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 15:36:02 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 15:36:02 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 15:36:02 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
    [Sun Apr 03 15:50:42 2016] [notice] caught SIGTERM, shutting down
    [Sun Apr 03 15:50:43 2016] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
    [Sun Apr 03 15:50:43 2016] [notice] mod_ruid2/0.9.7 enabled
    [Sun Apr 03 15:50:43 2016] [notice] Apache/2.2.22 (Debian) mod_fcgid/2.3.6 PHP/5.6.19-1~dotdeb+7.1 mod_ssl/2.2.22 OpenSSL/1.0.1e configured -- resuming normal operations
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Во, уже какие-то изменения )
    Получил ошибку 500, уже не с сайта, а как понимаю из VestaCP
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Попробовал - изменений нет (
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    "Для начала попробуйте открыть ваш_ip/server-status в браузере. Если там будет страница вашего сайта" - именно так оно и есть :)

    Помню тоже пробовал раньше вписать этот код в .htaccess: RewriteCond %{REQUEST_URI} !=/server-status

    Попробывал еще раз - никакой реакции :(

    Вот мой конфиг .htaccess
    # ~~start~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again
    # .htaccess automaticaly generated by PrestaShop e-commerce open-source solution
    # http://www.prestashop.com - http://www.prestashop.com/forums
    
    <IfModule mod_rewrite.c>
    <IfModule mod_env.c>
    SetEnv HTTP_MOD_REWRITE On
    </IfModule>
    
    RewriteEngine on
    
    
    RewriteRule . - [E=REWRITEBASE:/]
    RewriteRule ^api$ api/ [L]
    
    RewriteRule ^api/(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L]
    
    # Images
    RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L]
    RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L]
    RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L]
    RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L]
    RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L]
    RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L]
    RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L]
    RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L]
    RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L]
    RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L]
    # AlphaImageLoader for IE and fancybox
    RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L]
    
    # Dispatcher
    RewriteCond %{REQUEST_URI} !=/server-status
    RewriteCond %{REQUEST_FILENAME} -s [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]
    RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L]
    </IfModule>
    
    AddType application/vnd.ms-fontobject .eot
    AddType font/ttf .ttf
    AddType font/otf .otf
    AddType application/x-font-woff .woff
    <IfModule mod_headers.c>
            <FilesMatch "\.(ttf|ttc|otf|eot|woff|svg)$">
                    Header add Access-Control-Allow-Origin "*"
            </FilesMatch>
    </IfModule>
    
    
    #If rewrite mod isn't enabled
    ErrorDocument 404 /index.php?controller=404
    
    # ~~end~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again
  • Как решить проблему с подключением mod_status на Apache?

    dudilona
    @dudilona Автор вопроса
    Спасибо за полезную информацию. Выполнил данную команду и получил:
    Loaded Modules:
     core_module (static)
     log_config_module (static)
     logio_module (static)
     version_module (static)
     mpm_prefork_module (static)
     http_module (static)
     so_module (static)
     actions_module (shared)
     alias_module (shared)
     auth_basic_module (shared)
     authn_file_module (shared)
     authz_default_module (shared)
     authz_groupfile_module (shared)
     authz_host_module (shared)
     authz_user_module (shared)
     autoindex_module (shared)
     cgi_module (shared)
     deflate_module (shared)
     dir_module (shared)
     env_module (shared)
     fcgid_module (shared)
     info_module (shared)
     mime_module (shared)
     negotiation_module (shared)
     php5_module (shared)
     reqtimeout_module (shared)
     rewrite_module (shared)
     rpaf_module (shared)
     ruid2_module (shared)
     setenvif_module (shared)
     ssl_module (shared)
     status_module (shared)
     suexec_module (shared)
    Syntax OK


    status_module (shared)
    Это говорит о том, что он работает?

    Но когда я выполняю: "munin-node-configure --suggest |grep apache"
    то пишет:
    apache_accesses            | yes  | no [apache server-status not found. check if mod_status is enabled]
    apache_processes           | yes  | no [apache server-status not found. check if mod_status is enabled]
    apache_volume              | yes  | no [apache server-status not found. check if mod_status is enabled]


    Куда дальше копать?