`
xieye
  • 浏览: 845641 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

centos7 使用阿里镜像快速安装php7.4套件

    博客分类:
  • PHP
阅读更多
本文只考虑centos7

今日 2020-11-16
remi 不支持最新的7.9,但是从centos7.0到centos7.8,remi都能很好支持。
remi是一个php安装仓库。是rpm包。

用了国内镜像会速度极快,下载包的速度:3MB/秒,惊人的快!
无论docker还是linux环境都非常的快!!
经实测,全部安装时间大约3到5分钟,主要取决于mysql 8 的安装时间。

本文各软件版本
centos 7
php 7.4.12
nginx 1.18
mysql 8.0.22
redis 6.0.9
git 2.24.3

首先,安装阿里的centos仓库。
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
yum makecache
yum repolist

然后安装 阿里的epel仓库。
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

yum makecache
yum repolist


然后安装阿里的remi的仓库
yum install -y https://mirrors.aliyun.com/remi/enterprise/remi-release-7.rpm

sed -i  's/https*:\/\/rpms.remirepo.net/https:\/\/mirrors.aliyun.com\/remi/g'  /etc/yum.repos.d/remi*
sed -i 's/#baseurl/baseurl/g' /etc/yum.repos.d/remi*
sed -i 's|^mirrorlist|#mirrorlist|' /etc/yum.repos.d/remi*

yum makecache
yum repolist

yum -y install yum-utils

查找可安装的php74组件,无需执行
((yum list|grep  php74))

安装php
yum-config-manager --enable remi-php74

yum install -y php74 php74-php-devel  php74-php-fpm  php74-php-mbstring php74-php-memcache php74-php-memcached php74-php-redis  php74-php-mysqlnd  php74-php-pdo  php74-php-bcmath php74-php-xml php74-php-gd php74-php-gmp php74-php-igbinary php74-php-imagick   php74-php-mcrypt  php74-php-pdo_mysql php74-php-posix php74-php-simplexml  php74-php-opcache php74-php-xsl php74-php-xmlwriter php74-php-xmlreader php74-php-swoole php74-php-zip php74-php-phalcon  php74-php-yaml php74-php-yar php74-php-yaf php74-php-uuid

体验到快如闪电的速度了吧!

安装阿里的 composer 镜像源
ln -s /usr/bin/php74 /usr/bin/php
curl -o /usr/local/bin/composer https://mirrors.aliyun.com/composer/composer.phar
chmod +x /usr/local/bin/composer
composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/

安装 nginx 1.18 并整合 php-fpm 服务
下面这个echo是一句命令,得一起复制
echo $'[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true ' > /etc/yum.repos.d/nginx.repo

上面是一条echo命令。

yum makecache
yum install -y nginx
systemctl enable nginx
systemctl enable php74-php-fpm
sed -i 's/user\ =\ apache/user\ =\ nginx/g' /etc/opt/remi/php74/php-fpm.d/www.conf
sed -i 's/group\ =\ apache/group\ =\ nginx/g' /etc/opt/remi/php74/php-fpm.d/www.conf
sed -i 's/listen\ =\ \/var\/opt\/remi\/php74\/run\/php-fpm\/www.sock/listen=9000/g' /etc/opt/remi/php74/php-fpm.d/www.conf

rm -f /etc/nginx/conf.d/default.conf
vi /etc/nginx/conf.d/default.conf

server {
    listen       80;
    server_name  localhost;
    charset utf-8 ;
    access_log  /var/log/nginx/host.access.log  main;
    root   /usr/share/nginx/html;
    index index.php  index.html index.htm;
    error_page 404  500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
    location ~ \.php$ {
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $realpath_root$fastcgi_script_name;
        include        fastcgi_params;
    }
}

vi /usr/share/nginx/html/1.php

<?php
phpinfo();

systemctl start nginx
systemctl start php74-php-fpm

curl localhost/1.php

如果能看到很多的大量输出,说明php和nginx正确安装了。

安装mysql 8
yum remove -y mysql mysql-server mysql-libs

rpm -Uvh https://repo.mysql.com/mysql80-community-release-el7-3.noarch.rpm
sed -i 's/enabled=1/enabled=0/' /etc/yum.repos.d/mysql-community.repo

下面这句安装mysql服务,因为总下载大约530M,没有办法,时间大概3到5分钟左右。

yum --enablerepo=mysql80-community install mysql-community-server

systemctl enable mysqld
systemctl start mysqld

查看初始密码:
grep 'temporary password' /var/log/mysqld.log

用查看到的密码进入mysql 的 shell
mysql -uroot -p

整套设置新用户流程,先改初始,再加新用户并授权,再删除老用户。
set global validate_password.policy=LOW;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'aaaa1234';
flush privileges;
create user 'root'@'%' identified by 'root1234';
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root1234';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%';
drop user root@localhost;
flush privileges;

退出shell,重新进入。

现在就可以直接进入shell
mysql -uroot -proot1234

这句话查看用户的加密方式。
select user, host, plugin from mysql.user\G;

plugin: caching_sha2_password 表示老的MySQL客户端无法连接!


安装 阿里镜像源ius 内的 git
安装这个的理由是centos7 带的git 大版本是 1,真的太老了。
yum remove -y git
yum install -y https://mirrors.aliyun.com/ius/ius-release-el7.rpm
sed -i  's/https:\/\/repo.ius.io/https:\/\/mirrors.aliyun.com\/ius/g'  /etc/yum.repos.d/ius*
yum makecache
yum install -y git224
git config --global core.autocrlf false
git config --global core.safecrlf false

安装redis 6 以及其他常用库


yum --enablerepo=remi install -y redis

yum install -y  wget vim zip unzip p7zip rsync crontabs supervisor net-tools python3
systemctl enable redis
systemctl start redis

总结

用了国内镜像会速度极快,下载包的速度:3MB/秒,惊人的快
mysql安装有时也非常快,有时慢。


0
2
分享到:
评论

相关推荐

    中标麒麟服务器V7.4版本以及Oracle 12C服务器端安装说明

    1.1.2 操作系统安装包:这里使用的是中标麒麟服务器版V7.4的操作系统ISO镜像。 1.1.3 Oracle 12C服务端安装包:这是数据库服务的核心软件,需提前下载并存入优盘。 1.1.4 Windows计算机:用于制作启动U盘和远程连接...

    Centos7 安装mysql 8.0.13(rpm)的教程详解

    由于直接使用YUM从官方源下载速度较慢,所以选择了RPM方式,这样可以从国内镜像站点快速下载所需的MySQL RPM包。 首先,确认你的操作系统是CentOS 7.4,并且你需要卸载系统自带的MariaDB库,因为MySQL和MariaDB可能...

    libreoffice安装包以及安装步骤.zip

    如果安装过程中依赖项缺失,可能需要手动安装或使用`apt-get`(Debian/Ubuntu)或`yum`(CentOS/RHEL)解决。 5. **配置和启动**:安装完成后,你可以通过应用启动器或命令行启动LibreOffice。首次启动可能需要一些...

    Redhat-Linux-5.5 X86 32位与64位服务器版种子

    7. 应用程序支持:预装了大量的开源应用程序,如办公套件OpenOffice.org、数据库MySQL、图形界面GNOME或KDE等,满足企业日常办公需求。 8. 更新与维护:通过Red Hat Network,用户可以方便地获取系统更新、安全补丁...

    XenServer-6.2.0-安装手册

    - **安装介质**:可通过ISO镜像文件或USB设备进行安装。 - **安装方法**:支持PXE网络启动安装、手动安装等方法。 **3.2 安装XenServer主机** - **主机分区格式**:支持MBR和GPT两种磁盘分区格式。 - **安装步骤**...

    Jenkins+rebotframework 持续集成环境.docx

    虽然题目中给出的系统环境是CentOS 7.4,但在这里我们将讨论Windows环境的搭建步骤。在Windows中,我们需要Java Development Kit (JDK)、Apache Tomcat服务器以及Jenkins。 1. **安装JDK** Jenkins是基于Java的,...

    NFS高可用方案.docx

    在CentOS 7.4环境下,HeartBeat可以通过`pacemaker`和`corosync`套件实现。HeartBeat需要与DRBD结合使用,确保在服务器故障时,NFS服务的IP地址能够平滑地切换,从而避免服务中断。 **NFS** 是网络文件系统,允许...

Global site tag (gtag.js) - Google Analytics