Ok, a few questions:
1) Are you running a stock Fedora Core 3?
2) With the stock FC3 mysql, httpd, php and php-mysql installed?
3) Is the system updated with all the FC3 updates?
4) Which exact version of netjuke did you install?
5) Is your system configure with selinux turned on? If so run system-config-securitylevel to turn it off and see if this changes anything.
6) Is iptables blocking anything? Turn it off with "service iptables stop" as root
7) Is mysql listening? Do a "netstat -an | grep 3306" where you should see a line with "0.0.0.0:3306" and "LISTENING" at the end.
If all the above answers match how I have my systems set up I might have to do a clean FC3 install to see if I might have changed some
EDIT: I just installed it on another server that had FC3 installed from scratch. I installed mysql-server and php-mysql, started httpd and mysqld, created a "netjuke" database and "netjuke" mysql user and granted permissions to that user on the netjuke database:
- Code: Select all
# mysql
mysql> create database netjuke;
mysql> grant all on netjuke.* to netjuke@localhost identified by 'netjukepassword';
I used the netjuke-1.0-rc2.tar.gz to install and I didn't have to modify any configurations to make anything work.