Difference between revisions of "GUI does not open"

From Kolmisoft Wiki
Jump to navigationJump to search
(New page: = DB settings = Image:something_went_wrong.jpg If you get such error - that means GUI cannot connect to DB. Check /home/mor/config/database.yml and correct DB settings in [production...)
 
Line 6: Line 6:
Check /home/mor/config/database.yml and correct DB settings in [production] section.
Check /home/mor/config/database.yml and correct DB settings in [production] section.


<br>
= Apache cannot start =
Apache log ''/var/log/httpd/error_log'' shows:
No space left on device: mod_rewrite: could not create rewrite_log_lock Configuration Failed
Checking your disk shows that you have plenty of space. The problem is that apache didn't shut down properly, and it's left myriads of semaphore-arrays left, owned by my apache-user. Run:
ipcs -s | grep apache | perl -e 'while (<STDIN>) { @a=split(/\s+/); print `ipcrm sem $a[1]`}'


<br><br>
<br><br>
= See also =  
= See also =  
* [[I have a problem with GUI]]
* [[I have a problem with GUI]]

Revision as of 18:06, 12 February 2010

DB settings

Something went wrong.jpg

If you get such error - that means GUI cannot connect to DB.

Check /home/mor/config/database.yml and correct DB settings in [production] section.


Apache cannot start

Apache log /var/log/httpd/error_log shows:

No space left on device: mod_rewrite: could not create rewrite_log_lock Configuration Failed

Checking your disk shows that you have plenty of space. The problem is that apache didn't shut down properly, and it's left myriads of semaphore-arrays left, owned by my apache-user. Run:

ipcs -s | grep apache | perl -e 'while (<STDIN>) { @a=split(/\s+/); print `ipcrm sem $a[1]`}'



See also