Installing php 8 standalone on rhel just for command line

A

Anonymous

Guest
I currently have a windows server that I installed php on by just unzipping it into a folder and then updating the php config to run standalone scripts from the command prompt and bat files. We are moving to rhel 8.x and I want to do the same thing. I follow the instructions here: https://www.tecmint.com/install-php-8-on-centos/ but when I get to the php install, it says it is going to install apache and nginx and then php for nginx. On the windows machine, I would did not install it so it was pathed. I just did c:\php\php.exe when I wanted to run something.

2 questions, can I use the installer to install php standalone? If not, can I just uncompress a compatible version into a folder as I did on windows and will it just run if I do /php/php?
 
Just use:

Code:
sudo dnf install php php-cli

That will install the interpreter and the CLI, but won't give you the apache / nginx stuff.
 
Back
Top