How to Restart Perl on CentOS
Perl is a scripting language first developed by Larry Wall. It is freely available on a number of platforms, including CentOS. When a Perl application runs, the Perl interpreter is first called to process and understand the code and translate it into a workable form that the machine can understand. Sometimes the Perl process can lock up and will need to be terminated. You can terminate and re-launch Perl on CentOS using built-in operating system commands.
Instructions
-
-
1
Log into CentOS using your user name and password.
-
2
Open a Terminal window from the "Applications" menu if your system is not configured to automatically log into a command console.
-
-
3
Type "su root" and press "Enter." Supply your root password and press "Enter" again.
-
4
Type "killall perl" and then press "Enter." All perl interpreter instances are immediately terminated.
-
5
Re-open any running perl scripts by typing "perl /path/to/script.pl" to re-launch the interpreter for that script. Replace "/path/to/script.pl" with the location and name of the script to re-open.
-
1