techietown.info

How to enable nginx debug logging?

In this article we will explain how to enable Nginx debug logging .To enable debugging in NGINX, you will need to compile/re ... s always,Please drop us a note if you have any questions or feedback using our comment form below . Always Happy to Help ????

How to change/modify Server response header in nginx

The “Server” response-header field contains information about the software used by the origin server to handle the request. ... CRLF;   Then recompile nginx with modified source code.  Let us know incase you face any issue. Always happy to help ????

DNS Loadbalancing using Nginx

With latest release, Nginx introduces the ability to reverse proxy and load balance UDP traffic. As you know DNS uses UDP pr ... rnal DNS servers in your network. You can have nginx proxy running on all machines to distribute traffic to your DNS servers.

Fixed» «Can't locate ExtUtils/MakeMaker.pm in @INC»

I was getting this error while trying to build git on centos 6.5 1 Can’t locate ExtUtils/MakeMaker.pm in @INC ... 1 yum install perl–ExtUtils–MakeMaker –y 2. Using cpan 1 cpan install ExtUtils::MakeMaker

Installing Grafana on Centos/Ubuntu

Grafana is a a popular open source application for visualizing large-scale timescale data . It support all the popular  time- ... erver Start Grafana On Centos7 Systemctl start grafana Configure Grafana to start on boot time Systemctl enable grafana

Monitor nginx using Netdata

In this article we will see how to monitor Nginx using Netdata Netdata is a system for distributed real-time performance and ... data now. Please see few screenshots below You can also customize the Nginx hostname inside the Netdata configuration file.

Nginx with Lua support

Nginx is the most powerful webserver which is designed for performance and scale. Its initial public release was in 2004, and ... ost more examples in future , hope this article helped you to understand the basics and architecture of nginx+lua platform.  

Netdata – Realtime performance monitoring for Linux/Centos servers

Netdata is a monitoring and alerting tool,which does real-time performance and health monitoring. It provides unparalleled in ... pen this port in firewall Here are few screenshots     I have created a video on this. Please checkout it    

How to install gsutil on Centos/ubuntu?

How to Install gsutil on Centos ? In this article we will explain how to install gsutil on Centos. Google Cloud storage ... always, feel free to drop us a note if you have any questions or feedback using our comment form below. Always Happy to help

fixed: «Unable to find remote helper for 'https'» in git

I have compiled latest version of git and installed it. When i tried to do git clone i was getting this error Fix : Install m ... nstall git, download source and run 1 2 3 4 ./configure make sudo make prefix=/usr/local install  

How to find total size of a s3 bucket or folder in s3 bucket?

How to check the size of a s3 bucket or size of a file in S3 bucket? The s3cmd tools provide a way to get the total file size ... —summarize —human–readable —recursive s3://bucket-name/directory    Official documentation is here . please check it out

How to enable Influxdb web UI?

There is a built-in Administrator web UI inside Influxdb , which can be used to query the time series data stored inside infl ... t tags. This UI is useful when the command line client is not available or you are not familiar with command line client.    

Fixed: «Error starting agent: Failed to get advertise address: Multiple private IPs found. Please configure one»

I was getting the following error while starting Consul agent 1 2 3 ==> WARNING: Bootstrap mode enabled! Do ... ”: “ozj5RepL7E9NAKnc1085iQ==”, “log_level”: “INFO”, “enable_syslog”: true, “advertise_addr”: “192.168.2.21” }      

AWS cloud security best practices

Security is the forefront for any online business today, and at AWS cloud it has priority zero. In this post we will discuss ... n pane. When you click an individual user name, access key last used details are included in the Security Credentials section

Docker Health Check Instruction

One of the new features in Docker 1.12 is how health check for a container can be baked into the image definition. Just like ... a variety of scenarios: example in load balancing where traffic should not be routed to a container which is marked unhealthy

Marathon-lb: Service Discovery and Loadbalancing for containers running on Mesos/Marathon

Marathon is a production-grade Docker orchestrator for Docker containers which runs on top of apache Mesos. It enables users ... features available in marathon-lb, advice you to go through the documentation at https://github.com/mesosphere/marathon-lb .

Comparing Containers and Unikernel

  Docker‘s recent acquisition of Unikernel Systems has sent pulses racing in the tech world. Though Unikernel technology is ... s to adapt it. Docker is much easier to work it. Hope Docker will extend the features of unikernels making it easy to adapt .

How to run nginx on Docker?

How to run nginx on Docker? I have Nginx installed on a Docker container, and was trying to run it like this   1 ...  nginx –g ‘daemon off;’     This will start a container with nginx running on foreground, henc container will  not exit.

Fixed: Docker error «docker: 'network' is not a docker command.»

When i was trying to create a new network interface for docker , it was throwing following error 1 2 3 4   root@te ... systemctl status docker   Enable the service to start on reboot 1 2 3   systemctl enable docker    

How to copy Docker Images to Another Host?

How to copy Docker Images to Another Host? Sometimes you might need to copy your docker container image to another docker Hos ... lso allows us to create tar archive of the running container ,  but we will loss the history of the particular image.