Showing posts with label Middleware Application & Web Servers. Show all posts
Showing posts with label Middleware Application & Web Servers. Show all posts

Monday, February 18, 2019

IBM WebSphere Introduction


What is IBM WebSphere ?


This is Application server built on Java and provides the Middleware and MQ support in enterprise application development in IT software field. It is large app server in market that is used in Enterprise service bus or service oriented architecture in various organization. It is called as WAS in short.



Below are the some info to remember about WebSphere


WAS Editions

  • WAS Network Deployment
  • WAS Developers
  • WAS Z/OS
  • WAS Hypervisor 
  • WAS Express
  • WAS Base
  • WAS Liberty Core

WAS default Ports ?

HTTP /HTTPS     -    9080 / 9443



How To Check WAS Version

Go to profile and bin folder of WAS installation on server box and execute below scripts

$    ./versioninfo.sh




More info at IBM WebSphere Home
_________________________________________________________________________________


Oracle Weblogic Server Starting Status in logs



Different status message When a user starts a weblogic server instance 


1. STARTING

2. STANDBY

3. STARTING

4. ADMIN

5. RESUMING

6. RUNNING



When Weblogic server admin starts the weblogic server from domain home, he may check the status of admin server in AdminServer.log file.



Tuesday, January 29, 2019

Apache Web Server basic support Questions




  • Start & Stop of Apache web Server
             $  ./apachectl stop
             $  ./apachectl start 

              you may use scripts located at /etc/init.d/ mostly it will be "apache" or "httpd"
             $  /etc/init.d/apache   -start
             $  /etc/init.d/apache   -stop
                                   
                                                     "OR"
             $  /etc/init.d/httpd   -start

             $  /etc/init.d/httpd   -stop


  • Start/stop Apache web server as a OS service
             $ httpd stop
             $ service httpd start

  • Default Ports for Apache
              HTTP/HTTPS   -    80/443

  • How to check version of Apache web server
            $  ./httpd  -v          (in bin folder of installation)
            OR -    rpm -qa | grep httpd

  • How to check listen address of Apache 
          Open httpd.conf file and search for "Listen" string it will tell you the listen IP address and port
          Example :        Listen   10.10.10.10:80
  • Apache Web Server main configuration file
            httpd.conf        

  • How to check Apache web server is running ?
           by checking running process on Unix,    $ ps -aef | grep "httpd"



________________________________________________________________________________










Monday, January 28, 2019

What is JBOSS Application Server EAP & Wildfly





JBOSS BASICS



Q.  What is JBOSS?

  •          Jboss is a enterprises level application server that is available in enterprise and community version or open source. RedHat is the proprietary company for JBOSS EAP versions and driving it community version with name of Wildfly now. Earlier Jboss community version was available with Jboss AS x.x.x name.


  •          Now a days Jboss is hot in market, because it is providing enterprise level of support for application with lower cost compare to Oracle weblogic and IBM Websphere application server. And its big advantage is Open source.


  •          Jboss provided standalone installation on all operating systems as well as provide clustering support in production environment.


  •          JGroups toolkits are used in Jboss to create nodes, delete and membership detection with notification.


  •         Wildfly version 8 launched in Nov 2014 whereas Jboss EAP is for Enterprises.


  •         Jboss is available for both Windows and Linux environment.


  •         Default Admin console for Jboss

          http://<Server_IP>:9990/admin-console     (Here default port for Jboss console is 9990.)







Apache Server installation


Apache 2.4.9 Installation Steps for Linux Platform


Apache HTTP server 2.4.9  or Apache Web server is a new version of web-server developed by Apache Software Foundation and the Apache HTTP server project. This release Apache HTTP Server version 2.4.9 is currently stable version Apache HTTP server that represents fifteen years of research and development of Apache Foundation.
This httpd version contains new features like MPMs, mod_lua, better authentication & authorization, Fast CGI Proxy, improved OCSP support and small caching API.
Pre-Requisites for Apache 2.4.9 Version 
  • Operation System 
  • User access on the Linux box by which you want to install
  • Default port 80 should be open on the box to perform the installation
  • Check the sufficient memory space under the installation directory
  • Browser to check the server availability after installation

Main thing Apache HTTP Server installer files according to your OS :-

Stable Release - with Latest Version


Download File on your desktop :-  Apache HTTP Server 2.4.9

File Size :- 4.8 MB

Space Required :-  100 MB Approx.

By above link user can get the any installer file like .tar, .gz and binaries files for installation.


Apache HTTPD Server Dependencies & Requirements 

--  Required
  • Apr-1.5.1
  • Apr-Utill-1.5.3 
  • Pcre-8.35
-- Recommended 

·         OpenSSL-1.0.1h

Above packages are bundled and come with Apache installer file. Once user unzip or explodes the installer file downloaded, will get the all the packages and dependencies. 


APR and APR-utill 

Either you may install APR and APR-Utill on your system already or you may use both with Apache installation by downloading latest version from apache apr website. User needs to unpack the both folder into ./srclib/apr and ./srclib/apr-util ( here user has to make sure both directories names do not contain version numbers : Example :-  ./srclib/apr & ./srclib/apr-utill ). Some platforms may require -dev package to be installed for httpd server.

PCRE ( Perl -Compatible Regular Expression Library )

This library files are required for Apache HTTP server 2.4.9. it is not bundled with https, user may download it from http://www.pcre.org. First, User has to build pcre library for the system that will create pcre-config scripts installed by the PCRE build. To configuring Apache , user needs to add  --with-pcre parameter.

Configure PCRE

$ cd pcre-8.35

$ ./configure --prefix=PREFIX

PREFIX :- Here prefix represents home directory of pcre library. 

$ make

$ make install

above command will generate the pcre-config scripts under the pcre home directory. this pcre-config will be used during Apache installation.


Apache Installation Steps

Extraction

  $ gzip -d httpd-xx.tar.gz
 $ tar xvf httpd-xx.tar
  $ cd httpd-NN

Enter into the 03-httpd directory.

Configure Apache

Copy the APR, APR-Utill and pcre directory into the ./srclib of Apache installation.

$ ./configure --prefix=PREFIX --with-included-apr --with-included-pcre=<PATH TO PCRE-CONFIG generated at above step>


PREFIX = it is home directory of installation or by default location system will take /usr/local/apache2


Note :- Here user can add multiple modes for Apache Web server according to requirement.

Compile & install Apache

$ make 

Above command will compile the Apache package and file system.

$ make install

Upon successfully completion of above command. you can access your Apache HTTP server at port 80. To test it just hit the URL :- http://<hostname>:80
But you need to start the https service to access this. Please follow the below steps.


Customization

$ vi PREFIX/conf/httpd.conf

here user can change the server parameters like hostname, port and modules for the Apache.



$ cd PREFIX/bin

$ ./apachectl -k start  ( To start httpd server)

$ ./apachectl -k stop   ( To stop httpd server)

Other methods

$ /etc/init.d/httpd -start

$ /etc/init.d/httpd -stop

sometimes if service is registered with name "apache" then

$ /etc/intit.d/apache -start
$ /etc/init.d/apache -stop

using service

$ httpd stop
$ service httpd start




Verify httpd process on linux

$ ps -aef | grep httpd


Above command will show the running process information.








_____________________________________________________________________________

Oracle Weblogic Server Tuning Tasks



JAVA Code Tuning

  • JSP Pre-Compilation
  • EJB pool size cache
  • Deployment Descriptor (web.xml)
OS Tuning Parameter
  • Setting TCP-IP parameters
  • tcp_time_wait_interval
  • tcp_conn_req_max_q
Core Server Tuning
  • Weblogic server work manager
  • Chunk pool size
  • Connection backlog buffering
  • Use performance packs
JVM Tuning
  • Decide good GC strategy
  • Monitor garbage collection
  • define separate log files for GC log
  • Optimize heap size as per load 
By default, serialGC works with 1 CPU or host machine as   --XX:+UseSerialGC
Use parallel collector for multiprocessor or machines where your workload is basically CPU bound.