Assuming your Catalina Base is the same as Home, the output should look like:
Using CATALINA_BASE: /usr/local/apache-tomcat-6.0.14
Using CATALINA_HOME: /usr/local/apache-tomcat-6.0.14
Using CATALINA_TMPDIR: /usr/local/apache-tomcat-6.0.14/temp
Using JRE_HOME: /usr/lib/jvm/java-6-sun...
What does your server.xml look like? Do you have seperate context paths for each app? Are all the apps URL paths relative or do you have a configuration file for it that needs changing or worse case is it hard coded?
Apache is a collective name for the project that creates (amongst other things):
- Apache HTTP Server (web server)
- Apache Tomcat (servlet engine)
Go to www.apache.org too see all the subprojects
I suggest you have a look at the SQL referrence guide, because there's a number of different ways to build up a TRIGGER clause.
- it is possible to create a single trigger which fires on INSERT, UPDATE and DELETE
- in such a case you would be able to reference OLD.column and NEW.column values...
I'm not familiar with MDB, but had similar problems when the connection to DB2 is via JDBC. You need to ensure that the JDBC connection has a Transaction Isolation Level/Mode set to something like TRANSACTION_READ_COMMITTED, since the default is normally a setting that allows dirty reads.
Hi
I've just created my first CICS region and it starts up fine, but I have an error message I would like to get rid of. The message is:
DFHFC0952 CICSPSDI
Dynamic allocation of Non-RLS file EZACACHE failed. Return code X'0004',X'1708' in module DFHFCFS.
DFHFC0955 CICSPSDI Associated data...
Hi
I received a Sun E3000 and have a slight problem at boot time. It's a hardware failure, but I'm unable at this stage to figure it out myself.
I'd like to state that it does manage to boot and load the OS (Solaris 9) at which point I can logon (via terminal), see all disks and work...
Try 'httpd -v' in the apache bin directory. This will display the version and when it was built. There's some other helpful options like 'httpd -l' will list all the modules that are enabled and built in staticly.
As far as Oracle is concerned,
select field1, field2 from table1
, is going to be more expensive (slower). The reason is even though you only want two fields Oracle will get the whole row anyway. Only selecting 2 fields will save network resources if it's a client running the query, because...
Recently installed Oracle 9.2.0.1 and upgraded to 9.2.0.4. Trying to precompile a COBOL program for the first time against the new database and realised there is no procob binary in the {ORACLE_HOME}/bin directory.
I assume this is because the DBA did not install it. What do you have to do to...
I'm trying to build Apache 2.0.48 on HP-UX 11i (PA-RISC).
I did a "./configure --prefix=/usr/local/apache-2.0.48 --enable-module=so --enable-module=rewrite"
and then a "make". From the make output the following warnings are produced(on other modules as well, not just core.c). Is this a real...
We have an application that saves OLE links to documents in a database. The OLE link information is in the format that's returned from the WIN/OLE API, not a plain text path to the document.
Are there Perl code/modules that can extract the plain text path from an OLE link or read an OLE...
Had a look at how I do it and it's much easier than mod_rewrite. You can use Redirect for this. I was getting confused with rewrite, cause that what you asked for and I use it, but somewhere else.
So, in your httpd.conf you want something like this:
<VirtualHost your.ip.goes.here>...
Use mod_rewrite in Apache. Make sure you're Apache is built with mod_rewrite (--enable-module=rewrite).
Here's the Apache guide to using mod_rewrite:
http://httpd.apache.org/docs-2.0/misc/rewriteguide.html
Once the engineer has replaced the SCSI controllers on my HP box, I might get some...
I have some Perl CGI programs accessing Oracle via DBI/DBD Oracle.
The error handling works well, errors are being trapped and displayed to the user. Here's an example:
$dbConnection = DBI->connect($dbDriver, $dbUser, $dbPassword)
|| dbError('Connection', $DBI::errstr);
The problem(if...
There's different ways of doing it, but here's what I've got:
In .htaccess:
AuthUserFile /etc/.htpasswd
AuthGroupFile /dev/null
AuthName "Any old message you want to appear on the popup"
AuthType Basic
require user MyUser
In httpd.conf:
<Directory...
Anybody seen this error before? Coming up in the native log file. What could be causing this?
Error - EJS3040E Specification violation -- write not called
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.