How to Install Zend Server 2019 For Nginx in Redhat 7 Quickly
Hi friends, welcome to my simple website for those of you who just came, and welcome back to those of you who have previously visited.
This time, at a very happy time, I wrote an article that I have done again for my reminder and maybe it can be a reference for you.
I give this article the title of how to install zend server 2019 for nginx on Redhat, and here I tried a different trick, namely by taking the nginx installer online but I downloaded the zend server and saved it on my server so that for the zend installer I made it offline.
Preparation
For the first, according to the description above, I uploaded the zend that was downloaded previously to my server, to download Zend 2019 you can visit the official zend website here for zend.key is here.
Upload Zend Server to Server |
After Zend is downloaded, let's create the repo.
# vi /etc/yum.repos.d/zend.repo
[Zend]
name=zend-server
baseurl=file:///home/master/zend-server-2019/rpm_apache2.4/$basearch
enabled=1
gpgcheck=0
gpgkey= file:///home/master/zend-server-2019/zend.key
[Zend_noarch]
name=zend-server – noarch
baseurl=file:///home/master/zend-server-2019/rpm_apache2.4/noarch
enabled=1
gpgcheck=0
gpgkey= file:///home/master/zend-server-2019/zend.key
Then we will immediately create a repo from Nginx itself, because we install Nginx online, make sure our server is connected to the internet so that it runs smoothly.
# vi /etc/yum.repos.d/nginx.repo
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/mainline/rhel/7/$basearch/
gpgcheck=0
enabled=1
# yum clean all # yum repolist all
Installing
After we have done the preparations, we just have to instruct our server to install the zend server and nginx.
# yum install zend-server-nginx
Install Nginx and Zend Server 2019 |
Configure
Keep in mind that in the future if the server goes down and needs booting, make sure the service is set to run automatically when the new server starts.
# systemctl enable nginx
Trying
Ok, maybe that's all for how to install so simple right ?.
So then we make sure that what we have installed, be it the zend server or nginx, can be run, to make sure we only need to hit each service in our browser.
For Nginx : Hit Your IP.
service nginx hit with browser |
For Zend : Hit Your IP and Port Zend
hit Zend Server with browser |
Post a Comment for "How to Install Zend Server 2019 For Nginx in Redhat 7 Quickly"