新聞中心
這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷解決方案
centos7中yum如何安裝php-創(chuàng)新互聯(lián)
這篇文章將為大家詳細(xì)講解有關(guān)centos7中yum如何安裝php,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
centos7 yum安裝php的方法:首先安裝nginx以及MYSQL;然后通過命令“yum install php71w php71w-fpm php71w-cli php71w-common...”安裝php以及擴(kuò)展即可。
centos7 yum快速安裝php7.1
1. 安裝nginx
yum install nginx ##開啟nginx service nginx start
2.安裝MYSQL
yum localinstall /tupian/20230522/mysql57-community-release-el7-7.noarch.rpm yum install mysql-community-server //開啟mysql service mysqld start //查看mysql的root賬號(hào)的密碼 grep 'temporary password' /var/log/mysqld.log //登錄mysql mysql -uroot -p //修改密碼 ALTER USER 'root'@'localhost' IDENTIFIED BY 'password'; //修改root用戶可遠(yuǎn)程登錄 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION; //刷新 flush privileges;
3.安裝php
rpm -Uvh /tupian/20230522/epel-release-latest-7.noarch.rpm rpm -Uvh /tupian/20230522/webtatic-release.rpm //查看 yum search php71w //安裝php以及擴(kuò)展 yum install php71w php71w-fpm php71w-cli php71w-common php71w-devel php71w-gd php71w-pdo php71w-mysql php71w-mbstring php71w-bcmath //開啟服務(wù) service php-fpm start //修改/etc/nginx/nginx.conf 使其支持php 見下 //重啟nginx service nginx restart ---------------------配置
server { charset utf-8; client_max_body_size 128M; listen 80; ## listen for ipv4 server_name localhost; root /var/www/; index index.php; location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php/$1 last; } try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { include fastcgi.conf; fastcgi_pass 127.0.0.1:9000; try_files $uri =404; } location ~ \.php { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include /etc/fastcgi_params; fastcgi_split_path_info ^(.+\.php)(/?.*)$; fastcgi_param SCRIPT_FILENAME fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; } error_page 404 /404.html; location ~ /\.(ht|svn|git) { deny all; } }
4.安裝redis
yum install redis //修改配置 vi /etc/redis.conf //daemonize yes 后臺(tái)運(yùn)行 //appendonly yes 數(shù)據(jù)持久化 service redis start
5.安裝php-redis擴(kuò)展
//先裝git yum install git //git下擴(kuò)展 cd /usr/local/src git clone /tupian/20230522/phpredis //安裝擴(kuò)展 cd phpredis phpize //修改php配置 vi /etc/php.ini 添加extension=redis.so //重啟php service php-fpm restart
關(guān)于centos7中yum如何安裝php就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
網(wǎng)站標(biāo)題:centos7中yum如何安裝php-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)路徑:http://www.dlmjj.cn/article/dohgid.html