Associated Wikis
(privileges may be required)
Associated Wikis
(privileges may be required)
A number of servers use an interim bootlaunch paradigm to restart. This is confined to servers that run on ubuntu machines, namely the telescope bunker computers and gps. The basic syntax is “bootlaunch_<server>” where “<server>” is replaced by the server the script is designed to address. The scripts have a number of safeties built in, so it is safe to run them even if a server is already running – they just output the process ID of the running server. This scripts also take care of the entry in socket manager as well any serial port lock files. All the pertinent information is world writable, so one should be able to run a bootlaunch script as observe.
One thing of note about the output of the bootlaunch scripts, they call a number of other programs which themselves have output that may be misleading in the context of bootlaunch. Chief among these is the output of “tsockman”. If a server stopped unexpectedly, it may leave behind an entry in the socket manager. In order to launch a new server, one needs to clean out the socket manager entry if it is there. To do that, “tsockman remove <entry>” is called to remove “<entry>” before the new server is launched. If there is no entry, tsockman will respond with “Process by that name does not exist”. THIS IS NORMAL and is not indicative of an error. The server in question launched (without fanfare) right after that output text.
Here are the available bootlaunch scripts as of June 2017:
gps computer:
telescope bunker computers:
Note: The bootlaunch scripts will not start a new server if there is an existing process running. Therefore, type “ps aux | grep server_name” where server_name is the name of the server. If there is a dead process running, look up the process identification number (PID) and type “kill -9 PID” to kill the process and then run the relevant bootlaunch script again.
This procedure is applicable to servers that have not switched over to the bootlaunch paradigm.
Sometimes servers get locked up, crash, or stop working in some way and need to be restarted. The socket manager is no longer used to restart them, so it is necessary to restart them manually using a terminal. Here's how:
1. Open a terminal window and connect to the computer that runs the server. These are listed at the bottom of this page. For example, to connect to the S1 telescope control computer type “s1”.
2. See if there is a process running on the machine. For example, if we were concerned about the RPC (remote Power Control) server on s1 we would use (NOTE: The telescope RPC servers are no longer started in this way, see bootlaunch command above - these instructions are still relevant for servers not running under the bootlaunch paradigm):
s1:1001) ps aux | grep rpc_server
theo 15219 0.0 0.0 61188 752 pts/6 S+ 13:56 0:00 grep rpc_server
So there is one running and its PID (process ID) is 15219
3. Try and stop this gracefully by using “kill -2 15219”
4. Redo the “ps aux | grep …..” command to see if that worked. If the PID is gone, the shut down was successful. If not force it to stop with “kill -9 15219”.
5. Make sure there is nothing left in the socket manager by using the GUI or the text command
tscokman rm RPC_S1
6. Find the restart command in the file /etc/rc.local or in the text files on the desktop.
(s1:1003) grep rpc_server rc.local
/usr/local/bin/rpc_server /dev/ttyC1 /ctrscrut/chara/etc/s1_scope.cfg >& /var/log/rpc.log &
7. Use that command to restart the server, but remove everything from the “>&” onwards and the > symbol:
/usr/local/bin/rpc_server /dev/ttyC1 /ctrscrut/chara/etc/s1_scope.cfg &
8. Sometimes it may complain about a lockfile. This can be removed with the command
(s1:1003) rm /var/lock/LCK..ttyC1
and you may have to remove the socket manger entry again.
Some servers have to run as root, for example the wave front sensors, but most are best run as observe.
/usr/local/bin/tsockman remove RETRO
rm -f /var/lock/LCK..ttyC0
echo “Starting esp_retro”
/usr/local/bin/esp_retro /dev/ttyC0 retro >& /var/log/retro.log &
NOTE: We're currently not using BS since early 2017, instead there are BS1 and BS2 on GPS.
See bootlaunch above.
/usr/local/bin/tsockman remove BS
rm -f /var/lock/LCK..ttyC1
echo “Starting esp_bs BS”
/usr/local/bin/esp_bs /dev/ttyC1 bs >& /var/log/bs.log &
/usr/local/bin/tsockman remove PERI1
rm -f /var/lock/LCK..ttyC2
echo “Starting esp_peri1 peri1”
/usr/local/bin/esp_peri1 /dev/ttyC2 peri1 >& /var/log/peri1.log &
/usr/local/bin/tsockman remove PERI2
rm -f /var/lock/LCK..ttyC3
echo “Starting esp_peri2 peri2”
/usr/local/bin/esp_peri2 /dev/ttyC3 peri2 >& /var/log/peri2.log &
/usr/local/bin/tsockman remove LDC1
rm -f /var/lock/LCK..ttyC4
echo “Starting esp_ldc1 ldc1”
/usr/local/bin/esp_ldc1 /dev/ttyC4 ldc1 >& /var/log/ldc1.log &
/usr/local/bin/tsockman remove LDC2
rm -f /var/lock/LCK..ttyC5
echo “Starting esp_ldc2 ldc2”
/usr/local/bin/esp_ldc2 /dev/ttyC5 ldc2 >& /var/log/ldc2.log &
/usr/local/bin/tsockman remove BC1
rm -f /var/lock/LCK..ttyC7
echo “Starting esp_bc1 bc1”
/usr/local/bin/esp_bc1 /dev/ttyC7 bc1 >& /var/log/bc1.log &
/bin/rm -f /var/lock/LCK..ttyC8
/usr/local/bin/tsockman remove PICO_1
echo “Starting pico_server pico_1”
/usr/local/bin/pico_server /dev/ttyC8 /ctrscrut/chara/etc/pico_1.cfg >& /var/log/pico_1.log &
/bin/rm -f /var/lock/LCK..ttyC9
/usr/local/bin/tsockman remove PICO_2
echo “Starting pico_server pico_2”
/usr/local/bin/pico_server /dev/ttyC9 /ctrscrut/chara/etc/pico_2.cfg >& /var/log/pico_2.log &
/bin/rm -f /var/lock/LCK..ttyC10
/usr/local/bin/tsockman remove PICO_3
echo “Starting pico_server pico_3”
/usr/local/bin/pico_server /dev/ttyC10 /ctrscrut/chara/etc/pico_3.cfg >& /var/log/pico_3.log &
/bin/rm -f /var/lock/LCK..ttyC11
/usr/local/bin/tsockman remove PICO_4
echo “Starting pico_server pico_4”
/usr/local/bin/pico_server /dev/ttyC11 /ctrscrut/chara/etc/pico_4.cfg >& /var/log/pico_4.log &
/bin/rm -f /var/lock/LCK..ttyC12
/usr/local/bin/tsockman remove PICO_5
echo “Starting pico_server pico_5”
/usr/local/bin/pico_server /dev/ttyC12 /ctrscrut/chara/etc/pico_5.cfg >& /var/log/pico_5.log &
/bin/rm -f /var/lock/LCK..ttyC13
/usr/local/bin/tsockman remove RPC_LABPOW
echo “Starting rpc_server labpow”
/usr/local/bin/rpc_server /dev/ttyC13 /ctrscrut/chara/etc/labpow.cfg >& /var/log/labpow.log &
/bin/rm -f /var/lock/LCK..ttyC14
/usr/local/bin/tsockman remove Laser_Filters
echo “Starting thorlabs_fw102_server”
/usr/local/bin/thorlabs_fw102_server /dev/ttyC14 /ctrscrut/chara/etc/nd_wheel.cfg >& /var/log/filter.log &
/bin/rm -f /var/lock/LCK..ttyC15
/usr/local/bin/tsockman remove pop
echo “Starting pop_server”
/usr/local/bin/pop_server /dev/ttyC15 >& /var/log/pop.log &
/bin/rm -f /var/lock/LCK..ttyC16
/usr/local/bin/tsockman remove metlas
echo “Starting metlas_server”
/usr/local/bin/metlas_server /dev/ttyC16 >& /var/log/metlas.log &
/usr/local/bin/tsockman remove BC2
rm -f /var/lock/LCK..ttyC17
echo “Starting esp_bc2 bc2”
/usr/local/bin/esp_bc2 /dev/ttyC17 bc2 >& /var/log/bc2.log &
/bin/rm -f /var/lock/LCK..ttyC18
/usr/local/bin/tsockman remove L1_WEATHER
/usr/local/bin/weather_server /dev/ttyC18 L1_WEATHER >& /var/log/lab1_weather.log &
/bin/rm -f /var/lock/LCK..ttyC20
/usr/local/bin/tsockman remove target_M10
/usr/local/bin/target_server /dev/ttyC20 /ctrscrut/chara/etc/target_M10.cfg >& /var/log/target_M10.log &
/bin/rm -f /var/lock/LCK..ttyC21
/usr/local/bin/tsockman remove RPC_RACK_3
echo “Starting rpc_server rack_3”
/usr/local/bin/rpc_server /dev/ttyC21 /ctrscrut/chara/etc/rack_3.cfg >& /var/log/rack_3.log &
/bin/rm -f /var/lock/LCK..ttyC24
/usr/local/bin/tsockman remove vega_periscope
echo “Starting Vega Periscope”
/usr/local/bin/vega_periscope_server /dev/ttyC24 >& /var/log/vega_periscope.log &
/bin/rm -f /var/lock/LCK..ttyC25
/usr/local/bin/tsockman remove PICO_6
echo “Starting pico_server pico_6”
/usr/local/bin/pico_server /dev/ttyC25 /ctrscrut/chara/etc/pico_6.cfg >& /var/log/pico_6.log &
/bin/rm -f /var/lock/LCK..ttyC26
/usr/local/bin/tsockman remove RPC_RACK_1
/usr/local/bin/rpc_server /dev/ttyC26 /ctrscrut/chara/etc/rack_1.cfg >& /var/log/rack_1.log &
/bin/rm -f /var/local/LCK..ttyC27
/usr/local/bin/tsockman remove iris
/usr/local/bin/iris_server /dev/ttyC27 >& /var/log/iris.log &
/bin/rm -f /var/lock/LCK..ttyC28
/usr/local/bin/tsockman remove PICO_7
echo “Starting pico_server pico_7”
/usr/local/bin/pico_server_875x /dev/ttyC28 /ctrscrut/chara/etc/pico_7.cfg >& /var/log/pico_7.log &
/usr/local/bin/tsockman remove BC3
rm -f /var/lock/LCK..ttyC29
echo “Starting esp_bc3 bc3”
/usr/local/bin/esp_bc3 /dev/ttyC29 bc3 >& /var/log/bc3.log &
/usr/local/bin/tsockman remove apwheels
rm -f /var/lock/LCK..ttyC30
echo “Starting Apwheels”
/usr/local/bin/apwheels_server /dev/ttyC30 /ctrscrut/chara/etc/apwheels.cfg >& /var/log/apwheels.log &
/bin/rm -f /var/lock/LCK..ttyC31
/usr/local/bin/tsockman remove RPC_RACK_2
/usr/local/bin/rpc_server /dev/ttyC31 /ctrscrut/chara/etc/rack_2.cfg >& /var/log/rack_2.log &
#Run Andor Technology Startup Script
sh /etc/andordrvlx_load DMA_MODE=1
NOTE: The RPC, weather, cylinder, and HUT servers should be restarted using the bootlaunch commands described above
/bin/rm -f /var/lock/LCK..ttyC1
/usr/local/bin/tsockman remove RPC_S1
/usr/local/bin/rpc_server /dev/ttyC1 /ctrscrut/chara/etc/s1_scope.cfg >& /var/log/rpc.log &
/bin/rm -f /var/lock/LCK..ttyC7
/usr/local/bin/tsockman remove S1_WEATHER
/bin/nice /usr/local/bin/weather_server /dev/ttyC7 S1_WEATHER >& /var/log/weather.log &
/bin/rm -f /var/lock/LCK..ttyC3
/usr/local/bin/tsockman remove S1_Lower
/usr/local/bin/cylinder_server /dev/ttyC3 /ctrscrut/chara/etc/S1_lower_cylinder.cfg >& /var/log/cyl_lower.log &
#/bin/rm -f /var/lock/LCK..ttyC4
#/usr/local/bin/tsockman remove S1_Upper
#/usr/local/bin/cylinder_server /dev/ttyC4 /ctrscrut/chara/etc/S1_upper_cylinder.cfg >& /var/log/cyl_upper.log &
#
#
#/chara/observe/huT-1.0/huT 7 30 1 S1huT.dat 0 &
rm -f /var/lock/LCK..ttyC15
/usr/local/bin/tsockman remove S1_HUT
/usr/local/bin/new_huT_server /dev/ttyC15 S1_HUT /ctrscrut/chara/etc/S1_aob.cfg >& /var/log/S1_huT.log &
/usr/local/bin/tsockman remove dome_S1
/usr/local/bin/dome_server -A41.0166 S1 >& /var/log/dome_S1.log &
/usr/local/bin/ntp2linux
#
#
/usr/local/bin/tsockman remove ZABER_1
/bin/rm -f /var/lock/LCK..ttyS0
echo “Starting zaber_server ZABER_1”
/usr/local/bin/zaber_server /dev/ttyS0 /ctrscrut/chara/etc/zaber_1.cfg >& /var/log/zaber_1.log &
/usr/local/bin/tsockman remove BRTA
rm -f /var/lock/LCK..ttyS1
echo “Starting esp_brta BRTA”
/usr/local/bin/esp_brta /dev/ttyS1 /ctrscrut/chara/etc/brta.cfg >& /var/log/brta.log &
/usr/local/bin/tsockman remove BRTB
rm -f /var/lock/LCK..ttyS2
echo “Starting esp_brtb BRTB”
/usr/local/bin/esp_brtb /dev/ttyS2 /ctrscrut/chara/etc/brtb.cfg >& /var/log/brtb.log &
/bin/rm -f /var/lock/LCK..ttyS3
/usr/local/bin/tsockman remove PICO_8
echo “Starting pico_server pico_8”
/usr/local/bin/pico_server /dev/ttyS3 /ctrscrut/chara/etc/pico_8.cfg >& /var/log/pico_2.log &
NOTE: ZABER_2 on GPS should be started using the bootlaunch command above.
#
#
/usr/local/bin/tsockman rm ZABER_2
/bin/rm -f /var/lock/LCK..ttyS1