Posts

Showing posts from December, 2018

Apache

Image
APACHE virtual hosting Apache Virtual Hosting in Linux Concept of Shared web hosting and Reseller web hosting is based on this facility of Apache only. Types of Virtual Host There are two types of virtual hosting is available with Apache. Name Based Virtual Hosting With the name based virtual hosting you can host several domains/websites on a single machine with a single IP. All domains on that server will be sharing a single IP. It’s easier to configure than IP based virtual hosting, you only need to configure DNS of the domain to map it with its correct IP address and then configure Apache to recognize it with the domain names. Name Based Virtual Hosting Name Based Virtual Hosting IP Based Virtual Hosting With the IP based virtual hosting, you can assign a separate IP for each domain on a single server, these IP’s can be attached to the server with single NIC cards and as well as multiple NICs. IP Based Virtual Hosting IP Based Virtual Hosting Lets set up Name Ba...

Integration

Image
Apache integration with web logic Setting up Apache 2.2 plugin for Weblogic Clusters (Linux) 1. Download and install Apache for linux. Normal installation steps would be      $ ./configure --prefix=PREFIX             (./configure --prefix=/scratch/aime/apache)      $ make      $ make install      $ PREFIX/bin/apachectl -k start      $ PREFIX/bin/apachectl -k stop 2. Copy the mod_wl_22.so file from $MW_HOME/wlserver_10.3/server/plugin/linux/i686 to $APACHE_HOME/modules directory 3. Configure httpd.conf file to incorporate WLS changes     * User <user_name>     * Listen <listen_port>     * LoadModule weblogic_module /scratch/aime1/apache/modules/mod_wl_22.so       <IfModule mod_weblogic.c>                    WebLogicCluster host1:port,host2:port ...

compose

Types of interaction WLST Interactive Interactive mode, in which you enter a command and view the response at a command-line prompt, is useful for learning the tool, prototyping command syntax, and verifying configuration options before building a script. Using WLST interactively is particularly useful for getting immediate feedback after making a critical configuration change. The WLST scripting shell maintains a persistent connection with an instance of WebLogic Server. Script Mode Scripts invoke a sequence of WLST commands without requiring your input, much like a shell script. Scripts contain WLST commands in a text file with a .py file extension, for example, filename.py. You use script files with the Jython commands for running scripts.

12c

Image
oracle weblogic 12c installation 1 / 26 screen- 2 / 26 screen- 3 / 26 screen- 4 / 26 screen- 5 / 26 screen- 6 / 26 screen- 7 / 26 screen- 8 / 26 screen- 9 / 26 screen- 10 / 26 screen- 11 / 26 screen- 12 / 26 screen- 13 / 26 screen- 14 / 26 screen- 15 / 26 screen- 17 / 26 screen- 18 / 26 screen- 19 / 26 screen- 20 / 26 screen- 2 / 4 screen- 21 / 26 screen- 22 / 26 screen- 23 / 26 screen- 24 / 26 screen- 25 / 26 screen- 26 / 26 screen- ❮ ❯

War&Servelets

Image
WAR FILE AND SERVELETS WAR DIAGRAMS Slideshow 1: ❮ ❯ Slideshow 2: ❮ ❯ Audio file for this Document.   War File A war (web archive) File contains files of a web project. It may have servlet, xml, jsp, image, html, css, js etc. files. Here, we will discuss what is war file, how to create war file, how to deploy war file and how to extract war file. ________________________________________ What is war file? web archive (war) file contains all the contents of a web application. It reduces the time duration for transferring file. Advantage of war file saves time: The war file combines all the files into a single unit. So it takes less time while transferring file from client to server. ________________________________________ How to create war file? To create war file, you need to use jar tool of JDK. You need to use -c switch of jar, to create the war file. Go inside the project directory of your project (outside...

b

Image
Multiple Slideshows Slideshow 1: ❮ ❯ Slideshow 2: ❮ ❯

WLST

Image
WLST Initial practice wlst commands print sys.version ----------------- >2.2.1 print "hello" >hello print sys.platform >java1.8.0_191