How to start ColdFusion in Ubuntu 2.0 - coldfusion

I installed the dev version of ColdFusion on Ubuntu 2.0 and now I cant find how to start it.
I am very beginner with coldfusion - it is just my first try at this.
It installed stuff to
/opt/coldfusionaddonservices
Edit
How I installed it:
I went to
https://www.adobe.com/products/coldfusion/download-trial/try.html
I downloaded the Linux version of it. It downloaded a file called ColdFusion_2018_APIManager_WWEJ_linux64.bin
then I ran ./ColdFusion_2018_APIManager_WWEJ_linux64.bin
This installed stuff in my
/opt/coldfusionaddonservices
There I have this files:
Adobe_ColdFusion_2021_Add-on_Services_Install_04_29_2021_19_01_02.log*
cf_app.ico*
cfjetty*
etc/
exampleAnalysis/
example-DIH/
exampledocs/
jre/
lib/
logs/
modules/
notice.txt*
resources/
solr/
start.ini*
start.jar*
webapps/
work/

I just did some searching and found this reference - ColdFusion Installation
Basically, there should be a bin directory under your installation. Somewhere like {cfroot}\cfusion\bin where {cfroot} is your ColdFusion installation root directory. Inside that directory there are several files.
Run the following command from that directory to start ColdFusion: ./coldfusion start
To stop ColdFusion use ./coldfusion stop
To restart ColdFusion use ./coldfusion restart

So it looks I downloaded the wrong CF
To download the server you need to go to this page
https://www.adobe.com/ro/products/coldfusion/download-trial/get-started.html#
Then at the bottom there is the
Interested in trying our Adobe ColdFusion Express Edition ?
Windows 64, Mac, WAR 64
And you choose MAC for Linux.

Related

apache netbeans 11.3 C++ plugin timeout, unable to install

Im moving to Apache Netbeans 11.3 and trying to install the C++ plugin on Windows 10, got the follow repos
http://updates.netbeans.org/netbeans/updates/8.2/uc/final/distribution/catalog.xml.gz
http://bits.netbeans.org/dev/nbms-and-javadoc/lastSuccessfulBuild/artifact/nbbuild/nbms/updates.xml.gz
but everytime it hits the 99% it simply give me a timeout error when unpacking org-netbeans-modules-cnd-dwarfdiscovery.nbm
The Plugin Installer found problem timeout of loading C/C++ Repository[org.netbeans.modules.cnd.repository/1.32.6.1] while install the following plugins:
already try versions 10, 11.1, 11.2, 11.3, got the same issue, i even got rid of the windows firewall to no avail.
Check the Java version
For me, I have Java version 14
So this version has no program
unpack200.exe
Problem was solved by copying the unpack200.exe file from Java version 1.8 to the bin folder in java 14
copy and paste pack200, unpack200 and unpack.dil from bin of jdk13 into the bin of jdk14. This worked for me and I assure you that it will work for you. I did this with openjdk.

How to modifiy path for JDK for NeurophStudio

I tried do install NeurophStudio on Win 10, but when i try to run it i got this message
I installed this program on my hard drive, but my windows is installed on my SSD.
How can i change --jdkhome destination on NeurophStudio, because i didnt install any NetBeans?
What do i need to run to enter that --jdkhome instrunction, and how to I enter my path like C:\bla\bla\jdk12 or C:/bla/bla/jdk12
UPDATE:
I tried installing it on my SSD, but same result as before.
When i run javac --version in cmd, i get this:
I have java jkd path in JAVA_HOME aswell:
In windows try this: (Works for some people)
First install latest version
https://www.oracle.com/java/technologies/javase-downloads.html
Find the instalation Neuroph Studio folder and when look for a neurophstudio\etc\neurophstudio.conf file.
Open it with e.g notepad++ and search this property#jdkhome="/usr/local/java/jdk1.8.0_20"
Update it for your actual path like this jdkhome="C:\Program Files\Java\jdk-15.0.1" and remove #.
Save and exit.
If this solution remove initial error messege box, but program after launch quit immediately probably you didn't update your JDK (latest version).
It says it can't find the JDK, but it's actually looking for the JRE. Install that, and you should be good.

Oracle instant client header files are missed

I'm using RedHat OS to build a C++ program that is using OCCI to connect with an Oracle DB.
I had to reinstall everything and I found that my make file is adding the header files from the following path
/usr/include/oracle/18.3/client64
Which isn't available anymore
The only installation I remember I need is installing oracle-instantclient-basic
I've downloaded the rpm and installed using the command rpm -i ***.rpm
But the folder /usr/include/oracle isn't there
Note: The path /usr/lib/oracle/18.3/client/lib is found and all libraries I use for linking are there (only header files are missed).
This is my installation file
I could investigate and find the solution
The header files are not created by installing oracle-instantclient-basic but you should install oracle-instantclient-devel
/usr/include/oracle/18.3/client64 is the path for 64bit version and the path is /usr/include/oracle/18.3/client for 32bit versions.
All the tools can be downloaded from oracle website

How to install mod_wsgi for apache 2.4 and python 3.4 on windows?

I had apache 2.4 already installed with xampp.I tried adding mod_wsgi using the steps mentioned here
But when I add the line
LoadModule wsgi_module modules/mod_wsgi-py34-vc10.so
Apache does not start.
It is better to build mod_wsgi yourself from code rather than use an arbitrary binary off the net. The steps are as follows.
Ensure you have a decent Apache installation which includes header files, e.g. Apache 2.4.37 Win64 from Apache Lounge . Preferably installed at location of C:/Apache24.
Ensure your Python installation is set up so that you can pip install modules. This must include having the correct Microsoft C compiler needed by that Python version.
Run pip install mod_wsgi. If your Apache installation is not at C:/Apache24, then first set the environment variable MOD_WSGI_APACHE_ROOTDIR to its location. Ensure you specify path as C:/Apache24 form and not with back slashes, that is, not as C:\Apache24. This is only needed when doing the install, not later.
Run mod_wsgi-express module-config.
Copy the output from runing mod_wsgi-express module-config into your Apache configuration file.
Add configuration for a WSGI application to the Apache configuration.
Restart Apache and see if it works.
Note that you are better off starting with a WSGI hello world rather than some huge Django application when initially testing.
Use the release of Apache Lounge , if you still find c:\apache24\include\apr_network_io.h(29) : fatal error C1083: Cannot open include file: 'apr_perms_set.h': No such file or directory'. .
This is best fit to Windows.
This topic is useful for Windows 10, xampp webserver as well.
I was struggling to find precompiled mod_wsgi.so for
Apache/2.4.27 (Win32)
Python/2.7.13
This [link][1] is useful to find the appropriate version of mod_wsgi.
IF you are lucky, you can find the precompiled version [here][2]
There is a step by step guidance available [here][3]
[1]: https://github.com/GrahamDumpleton/mod_wsgi/blob/develop/win32/README.rst
[2]: http://www.lfd.uci.edu/~gohlke/pythonlibs/#mod_wsgi
[3]: https://everything2.com/title/Installing+Python+on+XAMPP
#LarryMartell
I met the same issue on windows and fixed it.
You can try to copy file apr_perms_set.h from apr repository (https://github.com/traviscross/apr) to Apache2.4's include folder.
I am using a 64 bit operating system and have 64 bit python installed.
installing apache distribution for 64 bit OS from apachelounge https://www.apachelounge.com/download/ resolved the problem for me.

Can't find the file "create-multi-platform-projects.py"

I downloaded the sdk (3.0a1). According to cocos2d-x guide, I have to run the create-multi-platform-projects.py command in order to create a project, but the script doesn't exist in the package I have downloaded.
The guide says
Note: These instructions are only valid for cocos2d-x v3.0-alpha0 or newer
So I suppose that I have downloaded the right package (windows 8.0 64bit).
The script has been moved to tools/project-creator/ and renamed to create_project.py. You can use the script the same way like
./create_project.py -p MyGame123 -k com.MyCompany.AwesomeGame -l cpp