この記事では、主に yum を使用した lanmp のインストールについて紹介します。これを必要な友人に参考にしてもらいます
まずファイアウォールを設定します
CentOS 7.0 はデフォルトでファイアウォールを使用します
1. ファイアウォールを閉じます:
systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 或者开启某端口 firewall-cmd --permanent --add-port=50000/tcp用该命令查询firewall-cmd --permanent --query-port=50000/tcp如果是yes就是添加成功,如果是no就是没成功成功后重载防火墙firewall-cmd --reload
2.关闭SELINUX
Lnmpのインストール
1. nginxをインストールします
2. rree3. nginx ポートを変更する番号 (独自の要件に従って)
vi /etc/selinux/config #SELINUX=enforcing #注释掉 SELINUX=disabled #增加 :wq! #保存退出 setenforce 0 #使配置立即生效
4. http://ip:81 にアクセスして、nginx ホームページを表示します
5. 次に、PHP-fpm をインストールします
6. nginx 設定ファイルで php vi /etc/nginx/conf.d/default.conf を特定するには、前の # を削除して fastcgi_param
yum install yum-priorities -y wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm yum install nginx
7 にアクセスしてください。設定をロードします
vi /etc/nginx/conf.d/default.conf と入力します
systemctl start nginx.service #启动nginx systemctl stop nginx.service #停止 systemctl restart nginx.service #重启 systemctl enable nginx.service #设置开机启动
9. ドメイン名の変更 上記 (ieccohomo.com) サイトの localhost を www.a.com
Lamp に変更しますインストール
1. Apacheをインストールします
2.安装mariadb(MySQL)
yum install mariadb mariadb-server #询问是否要安装,输入Y即可自动安装,直到安装完成 systemctl start mariadb.service #启动MariaDB systemctl stop mariadb.service #停止MariaDB systemctl restart mariadb.service #重启MariaDB systemctl enable mariadb.service #设置开机启动
3.修改mysql密码,安装后默认为空
修改mysql密码:set password for 'root'@'localhost'=password 'root';
mysql授权远程连接(navicat等): grant all on *.* to root identified by 'root';
4.安装PHP以及组件,使PHP支持 MariaDB
yum install php php-mysql php-gd libjpeg* php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-bcmath php-mhash #这里选择以上安装包进行安装,根据提示输入Y回车 systemctl restart mariadb.service #重启MariaDB systemctl restart httpd.service #重启apache
5.访问测试
cd /var/www/html vi index.php #输入下面内容 <?php phpinfo();?> :wq! #保存退出
在客户端浏览器输入服务器IP地址端口号
以上がyum インストールランプの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。