Thanks Demains and Bernado, The default apache has been loaded and I enabled to load it using http://localhost/. When issue this command line: ps -e | grep apache 5984 ? 00:00:00 apache2 6063 ? 00:00:00 apache2 6064 ? 00:00:00 apache2 6065 ? 00:00:00 apache2 6066 ? 00:00:00 apache2 6067 ? 00:00:00 apache2 6354 ? 00:00:00 apache2 6356 ? 00:00:00 apache2 6357 ? 00:00:00 apache2 6463 ? 00:00:00 apache2 6476 ? 00:00:00 apache2 When http://koha-server:8080 .....the server seems not to respond and was waiting... Under the /etc/apache2/sites-available is has soft link to /etc/koha/koha-httpd.conf as stated under INSTALL.debian. Both OPAC and Intranet has the following statements: ## OPAC <VirtualHost 192.168.0.100:80> ServerAdmin webmaster@koha-server DocumentRoot /usr/share/koha/opac/htdocs ServerName koha-server ## Intranet <VirtualHost 192.168.0.100:8080> ServerAdmin webmaster@koha-server DocumentRoot /usr/share/koha/intranet/htdocs ServerName koha-server:8080 and under /etc/apache2/ports.conf I added two statements: Listen 80 List 8080 I am still checking things out to se where I may have missed or to include. I think this is a straightforward install...I'll wait for your kind reply. Thanks. Cheers, Anousak On Sat, Apr 26, 2008 at 8:26 PM, FrŽédéŽric Demians <frederic@tamil.fr> wrote:
[thinking] I have successful installed Koha 3.0 Beta with all dependencies on Ubuntu 7.10 by following steps in INSTALL.debian. However, when I try to load Koha from the browser, it hangs. What are ways to test to make sure that [Koha] and its depencies] properly install and etc? Please suggest.
http://locahost:8080 - won't load http://koha-server:8080 -won't load http://192.168.0.100:8080/ - by IP won't load
Is Apache default site loaded? Or do you have only a 'no connexion' message? Is Apache server started? You can verify with this command:
ps -e | grep apache
You have to see several lines containing Apache process name.
If Apache is started, the correct address to point Koha site is : http://koha-server:8080 (your server real name). localhost or IP adress can't work. You have to verify that:
* Server name is correctly resolved. 'koha-server' points to the server. * /etc/apache2/sites-available/koha contains your server name in ServerName directive.