0

I am migrating a bunch of websites to new servers and one of them has config options I have not encountered before, specifically:

<IfModule mod_jrun.c>
   JRunConfig Serverstore /usr/local/jrun4/lib/wsconfig/1/somewebsite.com-store
   JRunConfig Bootstrap 127.0.0.1:9009
</IfModule>

From some google searches it apears to be a coldfusion configuration option, HOWEVER there are no cfm files in the website, what do I need to install to move forward with the migration?

Cory Baumer
  • 105
  • 2

2 Answers2

0

If you don't have CFM files, you don't need JRun configs. JRun has been "End-of-Life'd"

KM.
  • 1,786
  • 2
  • 18
  • 31
  • Thanks!, that is what I ended up doing, but I wasn't sure if it was causing an error I didn't find when testing post migration. I was worried that this was going to haunt me down the line, so thanks for the confirmation. – Cory Baumer Oct 05 '13 at 09:15
0

Look to see if mod_jrun.c is being loaded elsewhere in the config file, if not, you can safely remove those lines. Alternatively, comment out those lines and restart Apache to see if anything has trouble.

Scott Stroz
  • 121
  • 3