• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Problems while connecting to mysql db on linux

 
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am using JForum since last few days and was able to get it working fine on windows. While I deployed the same on Linux (Fedora core 3), I am getting -

net.jforum.exceptions.DatabaseException: Error while trying to start the database: javax.naming.NameNotFoundException:<XXXXDS> not bound.

Please let me know what am I doing wrong.

Env - Fedora core 3, JBoss 4.0, Mysql 4.1

Thanks,

[originally posted on jforum.net by Anonymous]
 
Migrated From Jforum.net
Ranch Hand
Posts: 17424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Did the JForum install complete successfully? If not, did you create the JForum database before starting the install?

Can you log into mysql via the command line and access the JForum database?

This can be done like this:

> mysql -u YOUR_JFORUM_DB_USER_NAME -p <Enter>

You will be prompted for the JFORUM_DB_USER_NAME password.

At the mysql prompt, type in: use jforum; <Enter>
then: show tables; <Enter>

If any of these steps fail, there is a problem with your mysql DB user permissions/password.

If all of that works correctly, you may need to check your myslq config settings.


[originally posted on jforum.net by GatorBait3]
 
The only taste of success some people get is to take a bite out of you. Or this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic