Questions tagged [ibmhttpserver]

IBM® HTTP Server is a full-featured Apache-based web server that is included with other products such as IBM WebSphere® Application Server at no charge. You can use this web server for projects that do not warrant the expense of a priced and supported HTTP server. The IBM HTTP Server is based on the Apache HTTP Server and provides a rich set of Apache features in addition to IBM enhancements.

IBM® HTTP Server is a full-featured Apache-based web server that is included with other products such as IBM WebSphere® Application Server at no charge. You can use this web server for projects that do not warrant the expense of a priced and supported HTTP server. The IBM HTTP Server is based on the Apache HTTP Server and provides a rich set of Apache features in addition to IBM enhancements.

161 questions
0
votes
1 answer

How to handle space in value - Unix KSH script

Any help on this will be great. Here is a script which uses a variable rootCerLabel in Props.txt to add a certificate in a keystore via a command but the command fails because variable rootCerLabel's value has spaces in it, I am not sure how to…
Zack
  • 23
  • 5
0
votes
1 answer

Home page not displaying after successful installation of IBM HTTP server

I have installed IBM HTTP on a Red Hat Linux server . The installation was successful but I was not able to view the home page . Whenever I tried to view the home page , it always displayed ' Forbidden ' message like ' You don't have permission to…
Aditya Datta
  • 567
  • 2
  • 7
  • 17
0
votes
1 answer

Multi Site with IBM HTTP Server

I have two applications running in two different IBM Liberty Servers. Need to create named based virtual host. How can it be achieved. one in the following location : /opt/wlp/usr/servers/liberty1/apps/expanded/abc.war Second in the following…
P Darius
  • 3
  • 5
0
votes
2 answers

How do I set the charset portion of the Content-Type HTTP Header on an IBM HTTPD Server?

I have an application which is a set of Java Web Services and some static content (HTML, XML, JavaScript, etc.). I know that JavaScript has a limited character encoding that is possible, but HTML and XML can use various character encodings. I happen…
Patrick O'Hara
  • 557
  • 1
  • 6
  • 17
0
votes
1 answer

WebSphere IHS / Liberty Intelligent Management / ODR Problems

We are currently using Intelligent Management / ODR in our WebSphere IHS / Plugin 8.5.5.11 and Liberty Profile 16.0.0.4 environments. I am upgrading to Liberty 17.0.0.4 and IHS / Plugins 9.0.0.6. The upgrade to WLP went smoothly. However, when I've…
Westy
  • 707
  • 2
  • 10
  • 23
0
votes
1 answer

IBM HTTP Server (Apache2) error

I have configured IBM HTTP Server as follow: Options Indexes MultiViews ExecCGI FastCGIServer "c:/php7.1/php-cgi.exe" SetHandler fastcgi-script AddHandler…
Alvin Mahmudov
  • 103
  • 1
  • 11
0
votes
1 answer

How to modify the response header based on the content of response body in IBM http server?

I have a scenario in which the IHS server is used as a reverse proxy. Any request from the browser reaches the webserver (ie IHS) and IHS redirects the request to the corresponding URL. Similarly the response will return back to IHS and then to the…
goutham
  • 233
  • 1
  • 2
  • 6
0
votes
1 answer

How to split WebSphere virtual hosts, single webserver for multiple JVMs

How can I configure the virtual hosts to send the right url to the right JVM, when all of the apps use the same context root? eg: https://app1.mydomain.com/myapp -> app1 JVM https://app2.mydomain.com/myapp -> app2…
falter
  • 13,584
  • 5
  • 22
  • 23
0
votes
2 answers

IBM HTTP Server v7 - 404 custom error page - (WAS CE)

how are you? I am presented with a problem, my client asked me to show some custom errors at the time the system is in maintenance or fallen. When the HTTP Server receives a 503 error, I have no problem. The problem is when I have to show the same…
R4k4210
  • 31
  • 9
0
votes
1 answer

How to setup a IBM HTTP Reverse proxy infront of couple other IBM HTTP Servers that have been configured to a WebSphere cluster

I have couple of IBM HTTP Servers v8.5, IHS1 and IHS2 configured to two managed nodes on a WebSphere cluster that is running DefaultApplication. I had setup SSL(on default port 443) on these two IHS1 and IHS2 servers and configured plug-in xml to…
0
votes
1 answer

when do sockjs fallback to xhr streaming transport instead of websocket

I have a simple web app, which is using websockets. simple webapp: Frontend - using sockjs, stomp Backend - Spring 4.2.x Frontend & Backend are packaged in the same WAR, this WAR is deployed on IBM WebSphere Application Server v9.x When I check…
0
votes
1 answer

Getting 500 Internal server error from application deployed on IHS and WAS server

Web based application intermittently throwing '500 Internal Server Error'. This application is deployed on WAS 8.0 server with IHS and WAS servers hosted on different machines. Please find below the TRACE level plugin logs at IHS end. DEBUG:…
pankaj
  • 1
  • 3
0
votes
0 answers

500 Error, Works good after first refresh WebSphere, IHS

External User -> Virtual IP F5 -> IHS (SSL configured)-> WAS 855 there is firewall between IHS and WAS, When I hit the application URL for the 1st time it gives 500 error, when I refresh the page, It is working good. I tried to use fiddler, it just…
Pandu
  • 189
  • 1
  • 2
  • 7
0
votes
2 answers

Not able to start the IBM HTTP Server

We have taken the Images of the mount points from one existing IBM HTTP Server v8.5 and copied it to another Server. When we tried to start the server using ./apachectl start am not getting any error messages but no I couldn't find any httpd…
0
votes
1 answer

Redirect ErrorDocument custom page (500,503) with mod_rewrite?

I want to use a custom page on 500 & 503 errorducument on IBM HTTP Server as well as shortener URL also using Rewrite that code for shorten URL (WCS). Here are the rules I'm using: RewriteCond %{REQUEST_URI} /en/store(.*) RewriteRule …