Skip to main content

Posts

Showing posts from July, 2011

Install apache2 server in ubuntu

Install apache2 server and make permission to the  folder /var/www. 1. install apache2 sudo apt-get install apache2 2. create your group sudo addgroup (your group name) 3. add your user to the group sudo adduser (user) (group) 4. change the group for the folder /var/www sudo chgrp (your group) /var/www 5. change permission to the folder /var/www sudo chmod –R 775 /var/www sudo chmod g+s /var/www now we can able to edit the folder /var/www

Java content Repository API

Jackrabbit an implementation JSR170 (JCR) http://jackrabbit.apache.org/jackrabbit-architectu re.html Detail article about JCR and jackrabbit. http://onjava.com/pub/a/onjava/2006/10/04/what-is- java-content-repository.html?page= 1