in reply to Perl running on a linux cpanel enabled server

Log in to the server with SSH, then at the shell prompt run:

perl path/to/the/program &
The & puts any program in the background. You can log out and it keeps running. See bash job control.

If you want to periodically run a program, learn about cron.