Does anybody know how to install ColdFusion 2021 o...
# cfml-general
j
Does anybody know how to install ColdFusion 2021 on Ubuntu Linux, I am lost. I could not find anything useful on Google.
p
This is for 2018 ( from one of my outdated doc ), Hope the same would work for 2021 too..
- chmod u+x ./ColdFusion_2018_WWEJ_linux64.bin - sudo ./ColdFusion_2018_WWEJ_linux64.bin - Now Installer UI will be shown similar to Windows, we can follow from there.
There is a help document from Adobe
j
@pothys-mitrahsoft thanks so much for your help, I was able to install it, it was easy with your comments. However, I can't access the CF admin page, I get the error, "Unable to connect" Thanks again for all your help!
👍 1
c
most likely the service didn't start automatically after installation. If you installed it as a service, try
sudo service coldfusion start
Or you start it manually by doing
sudo /opt/coldfusion2021/cfusion/bin/coldfusion start
or you could reboot 😉
p
I guess, coldfusion service will no start automatically on linux even after each reboot.. You need the above command to be executed to start/stop/restart it each time
j
Thanks @chris-schmitz this command
sudo /opt/coldfusion2021/cfusion/bin/coldfusion start
started the service, and now everything is working great. I am new to linux, I wanted to use linux so that I could use Solr as it's not working on my mac.
@pothys-mitrahsoft thanks again for your help I really appreciate it very much