Clasweb: Difference between revisions

From CLONWiki
Jump to navigation Jump to search
Boiarino (talk | contribs)
No edit summary
No edit summary
Line 1: Line 1:
'''clasweb''' (it is alias, canonic name is '''claspc28''') is official CLAS web server accessable from outside of JLAB. Several online-related services are running there, including logbook and online database interface for ''clasprod'' database on ''clondb1'' machine. Greg Riccardi is author and custodian for those two projects. Marty Wise from Computer Center is responsible for that machine, but Sergey Boyarinov has limited access to it as well. In particular he can restart ''apache'' and ''tomcat'' services using following commands:
'''clasweb''' (it is alias, canonic name is '''claspc28''') is official CLAS web server accessable from outside of JLAB. Several online-related services are running there, including logbook and online database interface for ''clasprod'' database on ''clondb1'' machine. Greg Riccardi is author and custodian for those two projects. Marty Wise from Computer Center is responsible for that machine, but Sergey Boyarinov has limited access to it as well. In particular he can restart ''apache'' and ''tomcat'' services using following commands:


  ssh boiarino@claspc28
ssh boiarino@claspc28
  claspc28> /apps/bin/sudo /etc/init.d/tomcat stop
/apps/bin/sudo /etc/init.d/tomcat stop
  claspc28> /apps/bin/sudo /etc/init.d/httpd stop
/apps/bin/sudo /etc/init.d/httpd stop
  claspc28> /apps/bin/sudo /etc/init.d/httpd start
/apps/bin/sudo /etc/init.d/httpd start
  claspc28> /apps/bin/sudo /etc/init.d/tomcat start
/apps/bin/sudo /etc/init.d/tomcat start


Restarting ''tomcat'' usually required in case if logbook is not working, and normally it is not necessary to restart ''httpd''.
Restarting ''tomcat'' usually required in case if logbook is not working, and normally it is not necessary to restart ''httpd''.

Revision as of 15:41, 14 February 2009

clasweb (it is alias, canonic name is claspc28) is official CLAS web server accessable from outside of JLAB. Several online-related services are running there, including logbook and online database interface for clasprod database on clondb1 machine. Greg Riccardi is author and custodian for those two projects. Marty Wise from Computer Center is responsible for that machine, but Sergey Boyarinov has limited access to it as well. In particular he can restart apache and tomcat services using following commands:

ssh boiarino@claspc28
/apps/bin/sudo /etc/init.d/tomcat stop
/apps/bin/sudo /etc/init.d/httpd stop
/apps/bin/sudo /etc/init.d/httpd start
/apps/bin/sudo /etc/init.d/tomcat start

Restarting tomcat usually required in case if logbook is not working, and normally it is not necessary to restart httpd.

Slow control history software is located in /group/clas/www/clasweb/htbin/epics_history directory on claspc28. In particular script epics/pl displays main control GUI for the history graphs, and add_to_list.pl controls adding and deleting of items from the list. To work properly following attributes must be used (described in db_parms.pm, which must be included into any scripts accessing database):

$hostname = 'clondb1.jlab.org';
$user = 'clasweb';
$password = ;
$database = 'epics';

See 'clasweb' user privileges for 'claspc28' on 'clondb1' database server.