OpenERP Installation Procedure

‎‎[How to]‎‎ Installation OpenERP v6.0.2 on Ubuntu server 10.04 LTS


Log files
/var/log/

e.g. apache /var/log/apache2/error.log

Free Space Available:
df -h

Netstat on port 80:
sudo netstat -antpl | grep 80
sudo netstat -A -lnp

Package details 
sudo dpkg --list apache*

Start apache
sudo /etc/init.d/apache2 restart

search for protocol
sudo lsof -i | grep : http


Issue with apache starting:
  • go  to /etc/apache
  • look at ports.config
  • Noticed that there was a listening port on 22 which is reserved for SSH
Tight VNC

  • vncserver -geometry 1680x1050
  • ensure this entered in a file called /etc/init.d/vncserver
  • sudo chmod +x /etc/init.d/vncserver  (to allow execution of the file)
  • sudo update-rc.d vncserver defaults (to add it to the startup script)
  • Starting VNC
    • /etc/init.d/tightvnc start
    • or 
    • vncserver -geometry 1680x1050 from the SSH


Comments