填坑 centos7搭建LAMP

2021-09-28 22:36:01 字數 1849 閱讀 2864

命令:certutil -hashfile  檔名路徑 檔名

解決方法:

輸入「1」,按enter鍵

輸入「2」,按enter鍵

輸入「q",按enter鍵

輸入「yes」,按enter鍵

memory : 100 m rss (443 mb vsz)

started: wed jul 10 09:56:42 2019 - 00:22 ago

state : sleeping, pid: 18441

解決方法:

1.檢視占用情況 ps -ef | grep yum

2.嘗試殺掉程序kill -s 18441

3.清掉快取中的程序:rm -f /var/run/yum.pid

4.重啟yum:/sbin/service yum-updatesd restart

1,安裝apache: yum install httpd httpd-devel

2,啟動apache:systemctl start httpd

3,設定apache開機自啟:systemctl enable httpd

1.關閉防火牆:service firewalld stop

2.關閉防火牆:systemctl stop firewalld.service

3.禁止防火牆開機啟動:systemctl disable firewalld.service

1.檢視狀態:getenforce  ->enforcing

2.臨時關閉:setenforce 0 ->permissive

3.永久關閉:vim /etc/sysconfig/selinux

將selinux=cnforcing改為selinux=disable

重啟伺服器

1.安裝:yun install mariadb-server mariadb-libs mariadb-devel

2.啟動:systemctl start mariadb

3.開機啟動:systemctl enable mariadb

1,安裝:yum -y install php

2,檢視php是否安裝成功:rpm -ql php

3,將php和mysql關聯起來:yum install php-mysql

4,檢視是否安裝成功:rpm -ql php-mysql

5,安裝常用的php模組:yum install -y php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel php-bcmath

2.解壓:unzip master.zip

3.重新命名:mv master dvwa

4.移動:mv  dvwa /var/www/html/

5.賦權:chmod 777 dvwa

6.修改httpd.conf檔案:將裡面所有的none 全部修改為 all,然後重啟虛擬機器

CentOS 7搭建LAMP環境

一 檢查環境 1.檢視centos版本 root localhost cat etc redhat release centos linux release 7.4.1708 core root localhost 2.檢查是否安裝相關應用 root localhost service httpd ...

centos7用yum搭建LAMP環境

簡言 使用yum安裝php5.6 apache2.4.7 mysql5.6 環境 centos7 httpd v 檢視版本資訊 yum y install epel release 安裝epel release php v 檢視版本資訊 解除安裝mariadb,否則安裝mysql會出現衝突 rpm ...

CentOS 7 配置LAMP環境

yum install httpd啟動apache systemctl start httpd.service訪問 主機位址 測試 參考mariadb資料庫管理系統是mysql的乙個分支,主要由開源社群在維護,採用gpl授權許可。開發這個分支的原因之一是 甲骨文公司收購了mysql後,有將mysql...