How To Install Elasticsearch, Logstash, and Kibana 4 on CentOS 7
- 
 Looks like you missed the last }. Put one after the curly brace at the bottom of your config file. 
- 
 That's what this line is saying, I just wanted to double check. Oct 22 05:13:26 localhost.localdomain nginx[11343]: nginx: [emerg] unexpected end of file, expecting "}" in /etc/nginx...nf:41
- 
 Once you put the brace in, then type sudo systemctl reload nginx sudo systemctl start nginx
- 
 @johnhooks said: Once you put the bracket in, then type sudo systemctl reload nginx sudo systemctl start nginxI will double check my config, I'll get back 
- 
 @johnhooks said: Looks like you missed the last }. Put one after the curly brace at the bottom of your config file. I already did and i got the same error 
- 
 @Joy said: @johnhooks said: Looks like you missed the last }. Put one after the curly brace at the bottom of your config file. I already did and i got the same error Ok what's the ouput of sudo systemctl status nginxagain? Does it still sayexpecting "}" in /etc/nginx.conf:41?
- 
 @Joy said: @johnhooks said: Can you paste the contents your /etc/nginx.conf file? For more information on configuration, see:* Official English Documentation: http://nginx.org/en/docs/* Official Russian Documentation: http://nginx.org/ru/docs/user nginx; 
 worker_processes auto;
 error_log /var/log/nginx/error.log;
 pid /run/nginx.pid;events { 
 worker_connections 1024;
 }http { 
 log_format main '$remote_addr - $remote_user [$time_local] "$request" '
 '$status $body_bytes_sent "$http_referer" '
 '"$http_user_agent" "$http_x_forwarded_for"';access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; server { include /etc/nginx/default.d/*.conf;} If you made a config file in /etc/nginx/conf.d/then take outserver { include /etc/nginx/default.d/*.conf; }Then do sudo systemctl reload nginx sudo systemctl restart nginxI apologize, I should have caught that in the beginning. 
- 
 @johnhooks said: @Joy said: @johnhooks said: Looks like you missed the last }. Put one after the curly brace at the bottom of your config file. I already did and i got the same error Ok what's the ouput of sudo systemctl status nginxagain? Does it still sayexpecting "}" in /etc/nginx.conf:41?expecting "}" in /etc/nginx.conf:37 
- 
 Did you create a .conf file in /etc/nginx/conf.d/?
- 
 @johnhooks said: Did you create a .conf file in /etc/nginx/conf.d/?yes, i did. I will check the file and will post it here 
- 
 @johnhooks said: Did you create a .conf file in /etc/nginx/conf.d/?server { 
 listen 80;server_name 104.167.112.241; auth_basic "Restricted Access"; auth_basic_user_file /etc/nginx/htpasswd.users; location / { proxy_pass http://localhost:5601; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; }} 
- 
 @Joy said: @johnhooks said: Did you create a .conf file in /etc/nginx/conf.d/?server { 
 listen 80;server_name 104.167.112.241; auth_basic "Restricted Access"; auth_basic_user_file /etc/nginx/htpasswd.users; location / { proxy_pass http://localhost:5601; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; }} Ok. You will want to remove server { include /etc/nginx/default.d/*.conf; }from the /etc/nginx/nginx.conffile.Then type: sudo systemctl reload nginx sudo systemctl restart nginx
- 
 I removed the 
 server {
 include /etc/nginx/default.d/*.conf;
 }but when i run the command "nginx -t -c /etc/nginx/nginx.conf" it says 
 nginx: [emerg] unexpected end of file, expecting "}" in /etc/nginx/nginx.conf:35
- 
 @Joy said: I removed the 
 server {
 include /etc/nginx/default.d/*.conf;
 }but when i run the command "nginx -t -c /etc/nginx/nginx.conf" it says 
 nginx: [emerg] unexpected end of file, expecting "}" in /etc/nginx/nginx.conf:35ok paste your nginx.conf file again 
- 
 @johnhooks said: @Joy said: I removed the 
 server {
 include /etc/nginx/default.d/*.conf;
 }but when i run the command "nginx -t -c /etc/nginx/nginx.conf" it says 
 nginx: [emerg] unexpected end of file, expecting "}" in /etc/nginx/nginx.conf:35ok paste your nginx.conf file again user nginx; 
 worker_processes auto;
 error_log /var/log/nginx/error.log;
 pid /run/nginx.pid;events { 
 worker_connections 1024;
 }http { 
 log_format main '$remote_addr - $remote_user [$time_local] "$request" '
 '$status $body_bytes_sent "$http_referer" '
 '"$http_user_agent" "$http_x_forwarded_for"';access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information."}" 
- 
 Are there quotes around the last curly brace? Also, you still need the include /etc/nginx/conf.d/*.conf;Here's my nginx.conf file, you can use it. # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; }
- 
 @johnhooks said: Are there quotes around the last curly brace? Also, you still need the include /etc/nginx/conf.d/*.conf;Here's my nginx.conf file, you can use it. # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; }Thanks, nginx: configuration file /etc/nginx/nginx.conf test is successful 
- 
 @Joy said: @johnhooks said: Are there quotes around the last curly brace? Also, you still need the include /etc/nginx/conf.d/*.conf;Here's my nginx.conf file, you can use it. # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; }Thanks, nginx: configuration file /etc/nginx/nginx.conf test is successful I probably could have just posted mine earlier and saved all of that  
- 
 @johnhooks said: @Joy said: @johnhooks said: Are there quotes around the last curly brace? Also, you still need the include /etc/nginx/conf.d/*.conf;Here's my nginx.conf file, you can use it. # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; }Thanks, nginx: configuration file /etc/nginx/nginx.conf test is successful I probably could have just posted mine earlier and saved all of that  However when i do the "sudo systemctl reload nginx" or sudo systemctl start nginx 
 the Job for nginx.service failed. See 'systemctl status nginx.service' and 'journalctl -xn' for details.
  
- 
 @Joy said: @johnhooks said: @Joy said: @johnhooks said: Are there quotes around the last curly brace? Also, you still need the include /etc/nginx/conf.d/*.conf;Here's my nginx.conf file, you can use it. # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; }Thanks, nginx: configuration file /etc/nginx/nginx.conf test is successful I probably could have just posted mine earlier and saved all of that  However when i do the "sudo systemctl reload nginx" or sudo systemctl start nginx 
 the Job for nginx.service failed. See 'systemctl status nginx.service' and 'journalctl -xn' for details.
  what's sudo systemctl status nginxshow again?

