首页 > 系统相关 >centos7.7安装php7.3的lnmp环境和composer详细步骤

centos7.7安装php7.3的lnmp环境和composer详细步骤

时间:2024-11-09 10:43:30浏览次数:1  
标签:php73 php7.3 lnmp composer mysql php root fastcgi

1.更新源
  yum update
2.安装nginx
  yum install nginx
3.启动nginx
  service nginx start
4.访问http://你的ip

  如果想配置域名,见最下面。

5.安装mysql:

安装mysql源 yum localinstall http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm
安装: yum install mysql mysql-server
启动: /etc/init.d/mysqld start 或者 service mysqld restart

重置密码:mysql -u root -p
几率报错 Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)
原因:权限问题
解决: sudo chown -R root:root /var/lib/mysql (两个root都可以改为拥有者,但是需要保持一致)
重启服务
service mysqld restart

登陆mysql
mysql -u root -p //按回车直接可以登陆,刚安装完mysql是没有密码的
修改mysql密码

  use mysql;
  低版本修改:update user set password=password('你的密码') where user='root';

  高版本修改:update user set authentication_string = password('你的密码'), password_expired = 'N', password_last_changed = now() where user = 'root';
        alter user 'root'@'localhost' identified by '你的密码';
  如果说密码强度不够,可以查看密码级别:SHOW VARIABLES LIKE "%password%";
  然后设置为低级别:SET GLOBAL validate_password_policy=0;
  最后退出;
  exit;
  重启 service mysqld restart
  允许远程访问
  1.必要时加入以下命令行,为root添加远程连接的能力。链接密码为'你的密码'
    GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '你的密码' WITH GRANT OPTION;
    FLUSH PRIVILEGES;

  2.打开my.cnf文件
    添加一行 bind-address=0.0.0.0
  3.重启mysql

6.安装php
  yum install php php-devel //php5.6版本
  如果想安装7.3
  首先安装 EPEL 源
  1.yum install epel-release //安装 EPEL 源
  2.yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm //安装 REMI 源
  3.yum install -y php73-php-fpm php73-php-cli php73-php-bcmath php73-php-gd php73-php-json php73-php-mbstring php73-php-mcrypt php73-php-mysqlnd php73-php-opcache php73-php-pdo php73-php-pecl-crypto php73-php-pecl-mcrypt php73-php-pecl-geoip php73-php-recode php73-php-snmp php73-php-soap php73-php-xml

  4.PHP的安装目录/etc/opt/remi/php73/ php.ini也在里面
    找到php.ini 里面fix_pathinfo 修改成0 但是不能看phpinfo();

    操作
    systemctl restart php73-php-fpm #重启
    systemctl start php73-php-fpm #启动
    systemctl stop php73-php-fpm #关闭
    systemctl status php73-php-fpm #检查状态

7.最后在yum update 更新php资源 方便以后更新扩展用

8.安装composer
  curl -sS https://getcomposer.org/installer | php73
  mv composer.phar /usr/local/bin/composer
  这样输入composer会报错 :/usr/bin/env: php: No such file or directory
  解决方法
  cd usr/bin
  cp php73 php
  在输入composer就好了

  更改镜像为阿里云:composer config -g repo.packagist composer https://mirrors.aliyun.com/composer/

9.安装git
  yum -y install git

10.下载laravel框架
  composer create-project --prefer-dist laravel/laravel 项目名称 "6.*"

  composer create-project --prefer-dist laravel/laravel laravelxs "6.*"

  修改composer文件。
  cd /root/.config/composer/
  vi auth.json

  {
    "bitbucket-oauth": {},
    "github-oauth": {},
    "gitlab-oauth": {},
    "gitlab-token": {
      "github.com": "在git上生成的token"
    },
    "http-basic": {},
    "bearer": {}
  }
  添加
  "github.com": "在git上生成的token"

11.nginx域名的配置

  创建文件:域名.conf

  里面的内容:

server{
  listen 80;
  server_name 你的域名;
  access_log /var/log/nginx/access.log;
  error_log /var/log/nginx/error.log;
  index index.html index.htm index.php;
  root 你的项目目录;

  location / {
    try_files $uri $uri/ /index.php$is_args$args;
  }

  location ~ .*\.(php|php5)?$
  {
    #fastcgi_pass unix:/dev/shm/php-cgi.sock;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_connect_timeout 180;
    fastcgi_read_timeout 600;
    fastcgi_send_timeout 600;
    fastcgi_index index.php;
    fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param PATH_INFO $fastcgi_path_info;
    fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
    include fastcgi_params;

  }

  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  {
    expires 30d;
  }

  location ~ .*\.(html|htm|js|css)?$
  {
    expires 8h;
  }
}

标签:php73,php7.3,lnmp,composer,mysql,php,root,fastcgi
From: https://www.cnblogs.com/sathcal/p/18536423

相关文章

  • jfrog artifactory oss社区版,不支持php composer私库
    一、docker安装安装环境:centos操作系统,root用户。如果是mac或ubuntu等操作系统的话,会有许多安装的坑等着你。一切都是徒劳,安装折腾那么久,最后还是不能使用。这就是写本文的初衷,切勿入坑就对了。version:"3.3"services:artifactory-service:image:docker.bi......
  • Debian12 搭建LNMP环境,配置SSL证书,安装WordPress
    一、安装并配置PHPSSH连接上VPS之后,我们先更新一下系统组件,使用下面的命令。aptupdate-y&&aptupgrade-y接着输入下面的命令安装PHP和相关组件aptinstallphp-fpmphp-mysqlphp-gdphp-cliphp-curlphp-mbstringphp-zipphp-opcachephp-xmlphp-mysqli-y查看/et......
  • lamp和lnmp
    LAMP和LNMP区别:1、架构上:LAMP==Linux+Apache+Mysql+PHPLNMP==Linux+Nginx+Mysql+PHPL:Linux操作系统,提供了项目部署时所需要的操作系统环境A:Apache服务器:WEB应用程序的服务器,提供软件源文件的存放地,提供了程序访问时所需要的端口(接口)M:MySQL数据库,提供项目或者程序在使用......
  • Mac下为php7.3编译安装Redis扩展(phpredis)教程(使用brew安装的php)
    Mac下为php7.3编译安装Redis扩展(phpredis)教程(使用brew安装的php)_brewphp7.3扩展-CSDN博客此文章为在mac下为php7.*编译安装redis拓展的教程,本教程默认用户已经安装brew,并且php为brew安装,没有安装可自行安装。1.先安装环境依赖。brewinstallautoconfwget若已经安装可......
  • Lnmp(mysql分离)(nginx 1.13.6+mysql5.5+php5.3)环境一键搭建
    Lnmp(mysql分离)(nginx 1.13.6+mysql5.5+php5.3)环境一键搭建如果对运维课程感兴趣,可以在b站上、csdn或微信视频号上搜索我的账号:运维实战课程,可以关注我,学习更多免费的运维实战技术视频在192.168.37.128服务器上:(mysql只到makeinstall即可)nginx默认站点html1.上传lnmp的安装......
  • 基于LNMP快速搭建WordPress平台
    1、案例目标(1)了解LNMP环境的组成。(2)了解LNMP环境的部署与安装。(2)了解WordPress应用的部署与使用。2、案例分析2.1、规划节点        Linux操作系统的单节点规划,见表3-1-1。IP主机名节点192.168.20.20lnmplnmp服务节点表3-1-1节点规划 2.2、基础准备   ......
  • LNMP一键安装
    PHP环境快捷搭建工具: https://lnmp.org/ [安装]wgethttps://soft.lnmp.com/lnmp/lnmp2.1.tar.gz-Olnmp2.1.tar.gz&&tarzxflnmp2.1.tar.gz&&cdlnmp2.1&&./install.shlnmp自动进行安装,根据计算机的性能与带宽情况,预计再半个小时左右即可全部完成nginx+php+m......
  • 阿里云服务器手动部署LNMP环境(Alibaba Cloud Linux 3/2、CentOS 7/8)
    LNMP是目前主流的网站服务器架构之一,适合运行大型和高并发的网站应用,例如电子商务网站、社交网络、内容管理系统等。LNMP分别代表Linux、Nginx、MySQL和PHP。本文介绍如何在AlibabaCloudLinux3/2、CentOS7/8操作系统的ECS实例上搭建LNMP环境。部署环境的实例要求手动部署LNMP环......
  • 构建LNMP+WordPress
    一、案例实施1.安装LNMP环境1.1修改主机名[root@localhost~]#hostnamectlset-hostnamelnmp[root@localhost~]#bash[root@lnmp~]#hostnamectl1.2使用脚本安装lnmp将提供的lnmp1.6-full.tar.gz软件包,上传到虚拟机的/root目录下,并解压[root@lnmp~]#ls[root......
  • Centos7编译安装LNMP和搭建WordPress网站
    步骤1:安装依赖包 yum-yinstallgcc-c++&&yuminstall-ypcrepcre-devel&&yuminstall-yzlibzlib-devel&&yuminstall-yopensslopenssl-devel步骤2:编译安装nginx1.下载nginxwgethttp://nginx.org/download/nginx-1.26.2.tar.gz2.解压......