LAMP搭建論壇 部落格平台

2021-10-07 04:00:05 字數 3604 閱讀 9353

lamp 是指linux(作業系統)+ apache (http 伺服器)+ mysql/mariadb(資料庫)和 php(網路程式語言),一般用來建立 web 應用平台。

1、首先確保你的linux能連上外網

ping www.qq.com
2、安裝http服務軟體,並啟動服務

開機自啟:systemctl enable httpd

啟動服務: systemctl start httpd

3、安裝mariadb以及啟動服務

yum install  mariadb mariadb-devel  mariadb-server  -y

開機自啟:systemctl enable mariadb

啟動服務: systemctl start mariadb

4、安裝php支援

yum install php  php-mysql  php-devel  -y
5、由於是測試環境 所以直接關閉防火牆和sellinux

停止firewall:systemctl stop firewalld.service

禁止firewall開機啟動:systemctl disable firewalld.service

關閉selinux:

①臨時關閉:

##設定selinux 成為permissive模式

##setenforce 1 設定selinux 成為enforcing模式

setenforce 0

②永久關閉:

vi /etc/selinux/config

將selinux=enforcing改為selinux=disabled

設定後需要重啟才能生效

6、建立資料庫及使用者許可權

[root@dhcp~]

# mysql -uroot -p

enter password:

welcome to the mariadb monitor. commands end

with

;or \g.

your mariadb connection id is

2server version: 5.5

.60-mariadb mariadb server

2000

,2018

, oracle, mariadb corporation ab and others.

type

'help;'

or'\h'

for help.

type

'\c'

to clear the current input statement.

mariadb [

(none)

]>

show

databases;+

--------------------+

|database|+

--------------------+

| information_schema |

| auth |

| mysql |

| performance_schema |

| test |

| zabbix |

+--------------------+

6rows

inset

(0.02 sec)

mariadb [

(none)

]>

create

database bbs charset

=utf8;

query ok,

1row affected (

0.00 sec)

mariadb [

(none)

]>

grant

allon bbs.

*to bbs@'localhost' identified by 'bbs123';

query ok,

0rows affected (

0.02 sec)

mariadb [

(none)

]>

7、測試apache**目錄位置

客戶端ie開啟測試網頁http://ip/test.php

8、將win的discuz_x3.2_sc_utf8.zip傳輸到linux,並且解壓移動到/var/www/html/bbs

[root@dhcp ~]

# unzip discuz_x3.2_sc_utf8.zip -d /tmp

解決目錄移至/var/www/html/bbs

[root@dhcp ~]

# mv /tmp/upload /var/www/html/bbs

[root@dhcp ~]

# cd /var/www/html/bbs

[root@dhcp bbs]

# ls -l

設定目錄訪問的許可權

[root@dhcp bbs]

# chmod -r 757

9、進入到安裝頁面,完成安裝http://ip/bbs

1、服務上面已經準備好了

2、將壓縮包傳到linux/tmp並且解壓縮到/var/www/html/blog

[在/tmp下執行]

tar xf wordpress-4.9.4-zh_cn.tar.gz -c /usr/src

mv /usr/src/wordpress /var/www/html/blog

3、 建立乙個資料庫用來搭建blog,並且將該資料庫許可權賦予給使用者blog

4、進入安裝頁面http://ip/blog

5、 因為系統存在了乙個空的wp-config.php,導致安裝系統不能建立該檔案,所以先刪除該檔案然後再進入到安裝頁面將裡面的內容複製到新的wp-config.php中,即可開始安裝。

6、完成

用lamp搭建論壇

解壓網頁檔案,並移動到虛擬機器的root目錄下 1 檢視samba版本 2 解除安裝samba 3 檢查是否解除安裝成功 4 安裝服務 5 啟動服務 6 安裝服務 yum y install mariadb server yum y install php mysql 7 檢視資料庫配置檔案 用其覆...

搭建LAMP平台

是一種成熟的動態企業 伺服器模式 步驟 1 快速安裝lamp平台元件 2 確認安裝結果 3 啟動lamp平台 只需要啟動 服務 資料庫服務即可 php元件由 呼叫模組實現 4 對外開放設定 調整防火牆 selinux保護策略 6 測試安裝結果 在網頁環境下建立php環境測試檔案 root local...

LAMP例項搭建wordpress部落格步驟

lamp是linux apache mysql or mariadb php的簡稱,是公司搭建 開源方案的的最佳選擇,尤其對於初創公司,可以快速 成本低的方案布置自已的 開展業務。web資源型別 靜態資源 原始形式與響應內容一致的,在客戶端瀏覽器執行 動態資源 原始形式通常為程式檔案 如php 需要...