Benefits of Internet Dating

Internet dating is simply a program which enables individuals to find and bring in themselves to possible passionate contacts over the Internet, generally with all the aim of producing sexual, charming, or personal relationships. Internet dating can be used by simply anyone via any part of our lives, from virtually any part of the environment. Internet dating will provide you with a chance to meet new and enjoyable people via all areas. Online dating comes with gained tremendous popularity in

Read more

How can we become Certified Cloud bees Jenkins Engineer (CCJE)?

What is cloud bees Jenkins? As your business needs changes then want your team needs to adapt and create the best experience for your customers. Cloud bees Jenkins platform is a solution of two items are continuous integration (CI) and continuous delivery (CD) which extends the Jenkins process. It is developed for on-context installations. With cloud bees Jenkins enterprise, they have simplified the user experience to make it easier to manage Jenkins for faster delivery. It helps to manage hike

Read more

Using String interpolation in php

String interpolation is quick shortcut, allowing to pop up the value of a variable into double quoted String. Remember that any variable with “$” sign into single quote is not a variable, it just treat as a statement. eg. ‘$num is not a variable’ because num variable is written into single quote.

Read more

Access Logs and Error Logs (LOGGING BASICS) in apache

1. Locate where logged data is stored This simple task is made harder by the fact that Apache is cross-platform software that runs on nearly every server-based operating system. While you might expect that Apache log files will be stored in different file system locations when running on a Mac or Windows PC, you should note that different Linux distros have their own ideas where to store log data. Apache also stores data in a number of different logging formats.

Read more

How to setup SSL certificate for apache

Environment SUSE Linux Enterprise ServerNovell Open Enterprise ServerNovell GroupWise Situation How to SSLize WebAccess on LinuxHow to secure WebAccess using SSLGroupWise WebAccess shows untrusted certificate after pointing to 3rd party certificate using ConsoleOne for WebAccess Agent Resolution (conditional) If not yet configured, Enable the SSL module and set the Apache Server Flags to SSL: From a terminal window: edit file /etc/sysconfig/apache2 Verify ssl is found in the list of APACHE_MODULES.Note: If it is not, please run the following command, which should enable the ssl module

Read more

Configuring Apache Access Control

Controlling Access Based on User Identity  Access to parts of a site can be restricted Require authentication and authorization of the user  User account information can be kept in several places Plain text files DBM files MySQL database Here, we’ll restrict access to the “admin” section of our site to the librarians Jim and Carla Since the number of users is small, we’ll store them in a plain text file Managing the User Account File 1 Enable headers

Read more

Configuring Virtual Hosting in Apache

“Virtual hosting is a method for hosting multiple domain names (with separate handling of each name) on a single server (or pool of servers).” Wikipedia How Does Apache Know Which Site to Serve? The short answer to your specific case: apache will serve the FIRST overlapping virtual host. Since 000-default is before fc.localhost in the alphabet the first virtualhost is loaded and served. To answer what i assume is the follow up question: You can host many sites on the

Read more

Basic Apache Configuration

Apache’s Modular Architecture corepreforkhttp_coremod_soLoadModuledirectives mod_aliasmod_mimemod_proxymod_rewritemod_status The core executable others … The directory Apache The httpd package we installed includes the config file: Listening on a Port You can restrict apache to listen on a specific network interface Listen 22.33.44.55:80 Setting the Document Root The DocumentRoot defines the top-level directory of the web site Setting an Identity Apache needs a user identity to run as Used to perform access control checks to the file system Defining Multi-Process Settings To improve response

Read more

How can we become Splunk Certified Developer?

What is Splunk Developer? After listening to all the series of Splunk workflow. From software building to deployment methods, these all software stuff manages by a developer. Without any typical thoughts, I will give you a simple ideology about Splunk’s developer. What do you think about the concept of Splunk developer? From my eyesight views, it is a professional about to perform certain functions like search and reports, charts and dashboards, alerts, or apps in fronts of the concept of

Read more

Installing and Configuring Apache Web Server

Step 1: Configure IIS Apache listens for requests on TCP/IP port 80. You need to uninstall or disable any program that uses that port. If you have a Professional or Server version of Windows, you may already have IIS installed. If you would prefer Apache, either remove IIS as a Windows component or disable its services. Step 2: Download the files We’re going to use the unofficial Windows binary from Apache Lounge. This version has performance and stability improvements over the

Read more

Inheritance in PHP

The process of deriving or making a new class from old class is known as inheritance . syntax for decleration of child or new class :- class childClassName extends ParentClassName{            statement ;    } The code is being re-used from one class to another. We need not required to re-write the same thing again and again. Extensibility is one of the advantages of the inheritance in which we can extend the base class feature without making little or no changes to fulfill the business requirements. we

Read more

Function in PHP

Functions are used to make the programming very easy .The code is written once in the function and whenever the code is required, the function is called by its name instead of writing the whole code again. This is the benift of using function. in other word we can say, A Function is a reusable piece or block of code that performs a particular action. It takes input from the user in the form of parameters, performs certain actions, and gives

Read more

How to run Php First program in Xampp server.

Step 1: First install to xampp server by official link https://www.apachefriends.org/download.html, after that you need to open server to start Apache server. And also start mysql for phpadmin. Step 2: Now open any browser in your pc and just type this url: http://localhost and then server run for interprete any php code. Step 3: Now create the project file and copy it’s directory and paste into the browser like: http://localhost/myphp/first.php before you create just a folder into c:\xampp\htdocs\myphp Step 4:

Read more

Day3- architecture and components of Kubernetes and Pods

Kubernetes Architecture: When you deploy Kubernetes, we get a cluster. Every cluster has at least one Master node and Worker node Control Plane Components: kube-apiserver                 -> POD -> Container -> Docker image –> Google Registry etcd                                  -> POD -> Container -> Docker image –> Google Registry kube-scheduler                 -> POD -> Container -> Docker image –> Google Registry kube-controller-manager -> POD -> Container -> Docker image –> Google Registry The control plane’s components make global decisions

Read more

What is POD? define in bullets points

Pods are the smallest deployable units of computing that you can create and manage in Kubernetes. A Pod is a group of one or more containers, with shared storage and network resources, and a specification for how to run the containers. a Pod can contain init containers that run during Pod startup. a Pod is similar to a group of Docker containers with shared namespaces and shared filesystem volumes. Some Pods have init containers as well as app containers. Init containers run and complete before the app containers

Read more

What is the architecture and components of Kubernetes?

Master Api server -> POD -> Container -> Docker image –> Google Registry validates and configures data for API objects, including pods and services. The API Server provides the frontend to the cluster’s shared state, which is where all of the other components interact Etcd -> POD -> Container -> Docker image –> Google Registry etcd is a distributed key-value store and the primary datastore of Kubernetes. It stores and replicates the Kubernetes cluster state. Controller mgmr -> POD ->

Read more
1 68 69 70 71 72 332