Error: </Directory> is not matching <directory>:Http Server start with 89622 and 6.1.0.13 WebSphere

preddy

Active Member
Error: </Directory> is not matching <directory>:Http Server start with 89622 and 6.1.0.13 WebSphere

I am working on upgrading the tools to 89622 with the WebSphere 6.1.0.13. Everything went well but When I added the lines to httpd.conf file for the new port and direcive lines, and then try to start the http server, Then Getting into the error
Error: </Directory> is not matching <directory>

I am herewith attaching the httpd.conf after the changes at the end of the file. Please Let me know if any one has already encounter this error and how to resolve the issue.
 

Attachments

  • 128597-httpdconf.txt
    29.7 KB · Views: 101
Re: Error: </Directory> is not matching <directory>:Http Server start with 89622 and 6.1.0.13 WebSphere

Did you notice that the last two sections of your file look like this:

[ QUOTE ]

<Directory
/export/apps/Websphere6/AppServer/installedApps/etsis142Node01/EA_JS_82.ear/webclient.war/WEB-INF>

Order Deny,Allow
Deny from ALL
</Directory>

><Directory
/export/apps/Websphere6/AppServer/installedApps/etsis142Node01/EA_JS_82.ear/webclient.war>

Order Deny,Allow
Allow from ALL
</Directory>


[/ QUOTE ]

And where it should start "<Directory ...>," it looks like "><Directory ..."?
 
Re: Error: </Directory> is not matching <directory>:Http Server start with 89622 and 6.1.0.13 WebSphere

That is how the Documentation shows. I am following the document" JDEdwards Enterprise One Tools Release 8.96 Webserver Installtion" page #147. The Document might be wrong.

Another question I have is: When we try to JAS generation, It was not able to connect to the database. Which tnsnames.ora file it is going to use? is it going to be oracle home directory or under the WEB_INF Directory?
I am getting the error that it is not able to find the entry for the database name, It is there in both places.
 
Re: Error: </Directory> is not matching <directory>:Http Server start with 89622 and 6.1.0.13 WebSphere

In this case, that extra ">" before the last <Directory ...> stanza is wrong.

If you cannot connect to the database, you have to check the path to your tnsnames.ora file (located in JDBJ.INI), and that you have classes12.jar loaded in the right directory. The path to the classes12.jar file can be found in the gen.bat file.
 
Re: Error: </Directory> is not matching <directory>:Http Server start with 89622 and 6.1.0.13 WebSphere

We are getting this error related to tnsnames.ora when we try to login.
14 Jan 2008 15:28:56,429 [SEVERE] - [JDBJ] com.jdedwards.database.base.JDBException: [ORACLE_TNSNAMES_ENTRY_NOT_FOUND] Entry not found for database OD01 in Oracle TNSNAMES file. com.jdedwards.database.base.JDBException: [ORACLE_TNSNAMES_ENTRY_NOT_FOUND] Entry not found for database OD01 in Oracle TNSNAMES file.
14 Jan 2008 15:28:56,430 [SEVERE] - [JAS] Exception occured in the JDESignon.jdeSignon() :BuildUserSession Failed. com.jdedwards.database.base.JDBException: [ORACLE_TNSNAMES_ENTRY_NOT_FOUND] Entry not found for database OD01 in Oracle TNSNAMES file.
com.jdedwards.database.base.JDBException: [ORACLE_TNSNAMES_ENTRY_NOT_FOUND] Entry not found for database OD01 in Oracle TNSNAMES file.

I did check the tnsnames.ora file and als made sure that I was able to connect to the database from the Web SERVER.
Can Some one shed a light where to look at and fixthis issue.
I am getting the UNKnow JAS error on the log in screen and the error mentioned above is coming the log file.
 
Re: Error: </Directory> is not matching <directory>:Http Server start with 89622 and 6.1.0.13 WebSphere

Let's look at your JDBJ.INI file, and look for the [JDBj-JDBC DRIVERS] stanza. You should have a line like tns=tnsnames.ora.

If it looks just like that, then your tnsnames.ora file should be in the same directory as your JDBJ.INI file. If not, then hopefully the file is in the path that's specified on that line.
 
Back
Top