Once your system is up and running, a best practice is to create a new user since you really shouldn't log in as root.
adduser <myusername>
usermod -a -G sudo <myusername> #so that your userid can run root commands
monit is software that monitors processes and system states, http://manpages.ubuntu.com/manpages/oneiric/man1/monit.1.html
Edit /etc/monit/monitrc to uncomment the following lines
## Monit has an embedded web server which can be used to view status of
# allow @users readonly # allow users of group 'users' to connect readonly
## services monitored and manage services from a web interface. See the
## Monit Wiki if you want to enable SSL for the web server.
set httpd port 2812 and
# use address localhost # only accept connection from localhost
allow localhost # allow localhost to connect to the server and
# allow admin:monit # require user 'admin' with password 'monit'
allow @monit # allow users of group 'monit' to connect (rw)
run 'service monit restart' to reload the file