install spring ide in eclipse

OPTION 1

1. open eclipse IDE

2. click on Help > Eclipse Marketplace

3. Eclipse Marketplace will be displayed, and click Next to continue

4. click on Popular tab, and choose Spring IDE. click Install button

5. tick on Spring IDE checkbox and click Next

6. choose I accept the terms of the license agreements, click Finish to install

7. installing Spring IDE

8. finish

 

OPTION 2

1. open eclipse IDE and click on Help > Install New Software

2. click on Add button, add Name and URL

refer to this URL: http://springide.org/updatesite

3. click Next to continue

4. choose I accept the terms of the license agreements

5. installing the software

6. after finished the installation process, click on Restart Now button to see the impact

7. click on Accept to proceed

8. finish

setup cvs server on ubuntu

1. open terminal – (for this tutorial, I am using puTTY from Windows 7 to Ubuntu 10.04)

2. install cvs

3. install cvsd

4. check ‘myrepos’ directory in /var/lib/cvsd

5. initial the directory

sudo cvs -d /var/lib/cvsd/myrepos init

6. modify the file /var/lib/cvsd/myrepos/CVSROOT/config

sudo vi /var/lib/cvsd/myrepos/CVSROOT/config

add the line into it:

SystemAuth=no
PamAuth=no
LockDir=/tmp/myrepos

save and exit vi

7. create LockDir directory

sudo mkdir /var/lib/cvsd/tmp/myrepos

8. add user and define your password – I created a user named ‘faizal’ with ‘password’

sudo cvsd-passwd /var/lib/cvsd/myrepos faizal

9. edit cvsd.conf file and save it

sudo vi /etc/cvsd/cvsd.conf

go to end of line and change this part

Listen 127.0.0.1 2401

if you are connected through LAN, change from 127.0.0.1 to 0.0.0.0

10. change ownership with recursive for /var/lib/cvsd directory

sudo chown -R cvsd:cvsd /var/lib/cvsd

11. restart cvsd and check status

12. test your cvs connection from localhost

13. test your cvs server from different machine in the same network

14. finish – yeay!