溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

LAMP架構(gòu) —(介紹及實(shí)戰(zhàn))

發(fā)布時(shí)間:2020-08-03 14:05:37 來(lái)源:網(wǎng)絡(luò) 閱讀:1663 作者:JarryZ 欄目:MySQL數(shù)據(jù)庫(kù)

源碼編譯安裝LAMP

LAMP架構(gòu) —(介紹及實(shí)戰(zhàn))
1.Apache網(wǎng)站服務(wù)
2.MySQL服務(wù)
3.LAMP架構(gòu)應(yīng)用實(shí)例

Apache簡(jiǎn)介

Apache起源:

1.源于A Patchy Server,著名的開(kāi)源Web服務(wù)軟件
2.1995年時(shí),發(fā)布Apache服務(wù)程序的1.0版本
3.由Apache軟件基金會(huì)(ASF) 負(fù)責(zé)維護(hù)
4.最新的名稱為"Apache HTTP Server”
5.官方站點(diǎn): http://httpd.apache.org/

Apache簡(jiǎn)介

主要特點(diǎn):

1.開(kāi)放源代碼、跨平臺(tái)應(yīng)用
2.支持多種網(wǎng)頁(yè)編程語(yǔ)言
3.模塊化設(shè)計(jì)、運(yùn)行穩(wěn)定、良好的安全性

軟件版本:

1.X:

1.目前最高版本是1.3,運(yùn)行穩(wěn)定
2.向下兼容性較好,但缺乏一些較新的功能
2.X:
1.目前最高版本是2.4
2.具有更多的功能特性
3.與1.X相比,配置管理風(fēng)格存在較大差異

編譯安裝httpd服務(wù)器

編譯安裝的優(yōu)點(diǎn)

1.具有較大的自由度,功能可定制
2.可及時(shí)獲得最新的軟件版本
3.普遍適用于大多數(shù)Linux版本,便于移植使用

獲得Apache服務(wù)器的源碼包

1.參考地址: http://httpd.apache.org/download.cgi

編譯安裝httpd服務(wù)器

準(zhǔn)備工作

1.卸載httpd及相關(guān)依賴包

[root@www~]# rpm -e httpd --nodeps

2.源碼編譯及安裝

[root@www ~]# tar zxf httpd-2.4.25.tar.gz -C /usr/src
[root@www ~]# cd /usr/src/httpd
[root@www httpd-2.4.25]# ./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-charset-lite --enable-cgi
[root@www httpd-2.4.25]# make && make install 
確認(rèn)安裝結(jié)果:
[root@www ~]# Is /usr/local/httpd
bin cgi-bin error   icons   logs    manual
build   conf    htdocs  include man modules
優(yōu)化執(zhí)行路徑:
[root@www ~]# In -S /usr/local/httpd/bin/* /usr/local/bin
[root@www ~]# Is -I /usr/local/bin/httpd /usr/local/bin/apachectl
Irwxrwxrwx 1 root root 30 5月10 06:20 /usr/local/bin/apachectl -> /usr/local/httpd/bin/apachectl
Irwxrwxrwx 1 root root 26 5月10 06:20 /usr/local/bin/httpd -> /usr/local/httpd/bin/httpd
添加httpd系統(tǒng)服務(wù)

1.通過(guò)chkconfig進(jìn)行管理系統(tǒng)服務(wù)
2.通過(guò)systemctl進(jìn)行管理系統(tǒng)服務(wù)

[root@www ~]# cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd
[root@www ~]# vim /etc/init.d/httpd
#!/bin/bash
#chkconfig: 35 85 21
#description: Startup script for the Apache HTTP Server
[root@www ~]# chkconfig --add httpd
[root@www ~]# chkconfig --list httpd
httpd   0:關(guān) 1:關(guān) 2:關(guān) 3:開(kāi) 4:關(guān) 5:開(kāi) 6:關(guān)

httpd服務(wù)的目錄結(jié)構(gòu)

主要目錄和文件:

1.服務(wù)目錄: /usr/local/httpd/
2.主配置文件: /usr/local/httpd/conf/httpd.conf
3.網(wǎng)頁(yè)目錄: /usr/local/httpd/htdocs/
4.服務(wù)腳本: /usr/local/httpd/bin/apachectl
5.執(zhí)行程序: /usr/localhttpd/bin/httpd
6.訪問(wèn)日志: /usr/local/httpd/log/access log
7.錯(cuò)誤日志: /usr/localhttpd/log/error
log

httpd服務(wù)器基本配置

Web站點(diǎn)部署過(guò)程:

1.確定網(wǎng)站名字、IP地址
2.配置并啟動(dòng)httpd服務(wù)
3.部署網(wǎng)頁(yè)文檔s
4.在客戶機(jī)中訪問(wèn)Web站點(diǎn)
5.查看Web站點(diǎn)訪問(wèn)情況

httpd.conf配置文件

全局配置項(xiàng):決定httpd服務(wù)器的全局運(yùn)行參數(shù):
ServerRoot "/usr/local/httpd"
Listen 80
User daemon
Group daemon
ServerAdmin webmaster@kgc.com
ServerName www.kqc.com
DocumentRoot"/usr/local/httpd/htdocs."
DirectoryIndex index.html index.php
ErrorLog logs/error log
LogLevel warn
1 CustomLog logs/access_ log
common
PidFile logs/httpd.pid
CharsetDefault UTF-8
Include conf/extra/httpd-default.conf
......
常用的全局配置參數(shù)

1.ServerRoot:服務(wù)目錄
2.Listen:監(jiān)聽(tīng)的IP地址、端口號(hào)
3.User:運(yùn)行服務(wù)的用戶身份
4.Group:運(yùn)行服務(wù)的組身份
5.ServerAdmin:管理員郵箱
6.ServerName:網(wǎng)站服務(wù)器的域名
7.DocumentRoot:網(wǎng)頁(yè)文檔的根目錄
8.DirectoryIndex:默認(rèn)的索引頁(yè)文件
9.ErrorLog:設(shè)置錯(cuò)誤日志文件的路徑
10.LogLevel:記錄日志的級(jí)別,默認(rèn)為warn

常用的全局配置參數(shù)(續(xù))

1.CustomLog:訪問(wèn)日志文件的位置
2.PidFile:保存httpd進(jìn)程PID號(hào)的文件
3.AddDefaultCharset:設(shè)置站點(diǎn)中的網(wǎng)頁(yè)默認(rèn)使用的字符集編碼
4.Timeout:網(wǎng)絡(luò)連接超時(shí),默認(rèn)為300秒
5.KeepAlive:是否保持連接,可選On或Off
6.MaxKeepAliveRequests:每次連接最多請(qǐng)求文件數(shù)
7.KeepAlive' Timeout:保持連接狀態(tài)時(shí)的超時(shí)時(shí)間
8.Include:需要包含進(jìn)來(lái)的其他配置文件

MySQL的編譯安裝

MySQL 5.X系列版本的使用最為廣泛,穩(wěn)定性、兼容性都不錯(cuò),此處選用mysql-5.6.36.tar.gz源碼包
準(zhǔn)備工作

1.確認(rèn)沒(méi)有使用RPM方式安裝mysql-server、mysql ,
2.安裝光盤(pán)自帶的ncurses-devel包
3.安裝cmake包

[root@www ~]# tar zxf cmake-2.8.6.tar.gz
[root@www ~]# cd cmake-2.8.6 
[root@www cmake-2.8.6]# ./configure
[root@www cmake-2.8.6]# gmake && gmake install
源碼編譯及安裝
[root@www ~]# groupadd mysql
[root@www ~ ]# useradd -M -S /sbin/nologin mysql -g mysql
[root@www ~]# tar zxf mysql-5.6.36.tar.gz -C /usr/src
[root@www ~]# cd /usr/src/mysql-5.6.36
[root@www mysql-5.6.36]# cmake -
DCMAKE INSTALL PREFIX=/usr/local/mysql -DSYSCONFDIR=/etc -DDEFAULT CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general ci -DWITH EXTRA CHARSETS=all
[root@www mysql-5 6.36]# make && make install
安裝后調(diào)整
[root@www ~]# chown -R mysql:mysql /usr/local/mysql
[root@www mysql-5.6.36]# rm -rf 7etc/my.cnf
[root@www mysql-5.6.36]# cp support- files/my-default.cnf /etc/my.cnf
[root@www mysql-5.6.36]# /usr/local/mysql/scripts/mysql install db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data/
[root@www mysql-5.6.36]#echo"PATH=$PATH:/usr/local/mysql/bin" >> /etc/profile
[root@www mysql-5.6.36]# . /etc/ profile
添加系統(tǒng)服務(wù)
以便通過(guò)chkconfig進(jìn)行管理

[root@www mysql-5.6.36]# cp support-files/mysql.server /etcfred/init.d/ mysqld
[root@www mysql-5.6.36]# chmod +X 7etc/rc.d/init.d/mysqld
[root@www mysql-5.6.36]# chkconfig --add mysqld

啟動(dòng)MySQL服務(wù),并查看運(yùn)行狀態(tài)
[root@www mysql-5.6.36]# service mysqld start
Starting MySQL.Logging to '/usr/local/mysql/data/www.err'.
SUCCESS!
[root@www mysql-5.6.36]# /etc/init.d/mysqld status
SUCCESS! MySQL running (41548)
[root@www mysql-5.6.36]# netstat -anpt | grep mysqld
tcp6    0   0..3306     ...*    LISTEN  41 548/mysqld
以便通過(guò)chkconfig進(jìn)行管理
[root@www mysql-5.6.36]# cp support-files/mysql.server /etcfred/init.d/ mysqld
[root@www mysql-5.6.36]# chmod +X 7etc/rc.d/init.d/mysqld
[root@www mysql-5.6.36]# chkconfig --add mysqld
啟動(dòng)MySQL服務(wù),并查看運(yùn)行狀態(tài)

登錄及退出MySQL環(huán)境

連接并登錄到MySQL操作環(huán)境
mysql-u用戶名_[-p]
提示符: mysql>
設(shè)置數(shù)據(jù)庫(kù)用戶的密碼
mysqladmin -u root _[-p] password 新密碼
退出MySQL操作環(huán)境
mysql> exit

LAMP平臺(tái)概述

什么是LAMP:

1.目前最為成熟的一種企業(yè)網(wǎng)站應(yīng)用模式,可提供動(dòng)態(tài)Web站點(diǎn)應(yīng)
用及開(kāi)發(fā)環(huán)境

構(gòu)成組件:

1.Linux、 Apache、 MySQL、 PHP/Perl/Python

LAMP的優(yōu)勢(shì)

1.成本低廉
2.可定制、易于開(kāi)發(fā)
3.方便易用、安全和穩(wěn)定

Demo:完整LAMP架構(gòu),創(chuàng)建論壇

首先我們需要準(zhǔn)備一臺(tái)Linux主機(jī),LAMP架構(gòu)需要用到的壓縮包(此處可在本人的百度網(wǎng)盤(pán)鏈接進(jìn)行下載),還有最終我們準(zhǔn)備搭建的bbs論壇的文件也在其中

百度網(wǎng)盤(pán)資源鏈接:https://pan.baidu.com/s/1dGbEwswQeej2qD_UTE-7rQ&shfl=sharepset
提取碼:bjg6

第一步:打包的壓縮文件解壓到電腦中自行定義的文件夾中,把此文件夾進(jìn)行共享

右鍵文件夾,選擇屬性,點(diǎn)擊共享,選擇共享,下拉選項(xiàng)中選擇Everyone,點(diǎn)擊添加,再點(diǎn)擊右下方的共享,點(diǎn)擊完成就可以了,集體操作如下圖:

LAMP架構(gòu) —(介紹及實(shí)戰(zhàn))

第二步:打開(kāi)VMware中的CentOS 7虛擬機(jī),查看共享文件夾并進(jìn)行掛載

[root@localhost ~]# smbclient -L //192.168.10.13/       //此處輸入自己宿主機(jī)的IP地址
Enter SAMBA\root's password:                            //此處直接回車
OS=[Windows 10 Home China 18362] Server=[Windows 10 Home China 6.3]
    Sharename       Type      Comment
    ---------       ----      -------
    ADMIN$          Disk      遠(yuǎn)程管理
    C$              Disk      默認(rèn)共享
    D$              Disk      默認(rèn)共享
    IPC$            IPC       遠(yuǎn)程 IPC
    LAMP-test       Disk                                //此處可以看到共享出來(lái)的文件夾 
Connection to 192.168.0.103 failed (Error NT_STATUS_RESOURCE_NAME_NOT_FOUND)
NetBIOS over TCP disabled -- no workgroup available
[root@localhost ~]# ls /mnt/                            //此時(shí)我們查看掛載是空的
[root@localhost ~]# mount.cifs //192.168.0.103/LAMP-test /mnt/ //把共享的文件掛載到mnt目錄下
Password for root@//192.168.0.103/LAMP-test:            //此處直接回車 
[root@localhost ~]# cd /mnt/                            //進(jìn)入mnt目錄
[root@localhost mnt]# ls                    //此時(shí)查看詳情就可以看到所有我們需要用到的壓縮包了
apr-1.6.2.tar.gz       Discuz_X2.5_SC_UTF8.zip  mysql-5.6.26.tar.gz
apr-util-1.6.0.tar.gz  httpd-2.4.29.tar.bz2     php-5.6.11.tar.bz2

第三步:安裝Apache

[root@localhost mnt]# yum install -y gcc gcc-c++ make pcre-devel expat-devel perl
//安裝必要組件
[root@localhost mnt]# tar zxvf apr-1.6.2.tar.gz -C /opt/
[root@localhost mnt]# tar zxvf apr-util-1.6.0.tar.gz -C /opt/
[root@localhost mnt]# tar jxvf httpd-2.4.29.tar.bz2 -C /opt/
//解壓縮以上文件到opt目錄下
[root@localhost mnt]# cd /opt/
[root@localhost opt]# ls
apr-1.6.2  apr-util-1.6.0  dis  httpd-2.4.29  rh
[root@localhost opt]# mv apr-1.6.2/ httpd-2.4.29/srclib/apr
[root@localhost opt]# mv apr-util-1.6.0/ httpd-2.4.29/srclib/apr-util
[root@localhost opt]# cd /opt/httpd-2.4.29/
[root@localhost httpd-2.4.29]# ls
ABOUT_APACHE     buildconf       httpd.dsp       libhttpd.mak   README.cmake
acinclude.m4     CHANGES         httpd.mak       LICENSE        README.platforms
Apache-apr2.dsw  CMakeLists.txt  httpd.spec      Makefile.in    ROADMAP
Apache.dsw       config.layout   include         Makefile.win   server
apache_probes.d  configure       INSTALL         modules        srclib
ap.d             configure.in    InstallBin.dsp  NOTICE         support
build            docs            LAYOUT          NWGNUmakefile  test
BuildAll.dsp     emacs-style     libhttpd.dep    os             VERSIONING
BuildBin.dsp     httpd.dep       libhttpd.dsp    README
[root@localhost httpd-2.4.29]# ./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-charset-lite --enable-cgi
//安裝必要組件
[root@localhost httpd-2.4.29]# make
[root@localhost httpd-2.4.29]# make install
[root@localhost httpd-2.4.29]# cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd
cp:是否覆蓋"/etc/init.d/httpd"? yes
[root@localhost httpd-2.4.29]# vim /etc/init.d/httpd
#!/bin/sh
# chkconfig: 35 85 21
# description: Apache is a World Wide Web server
//在#!/bin/sh下行插入這兩行內(nèi)容,按Esc退出插入模式,按:wq保存退出
[root@localhost httpd-2.4.29]# chkconfig --add httpd
[root@localhost httpd-2.4.29]# vim /usr/local/httpd/conf/httpd.conf
輸入/Server,找到:ServerName www.example.com:80  把前面的#號(hào)注釋刪除
輸入/Listen,查找80端口監(jiān)聽(tīng),并開(kāi)啟監(jiān)聽(tīng)本機(jī)的80端口:Listen 192.168.56.128: 80
按Esc退出插入模式,按:wq保存退出
[root@localhost httpd-2.4.29]# ln -s /usr/local/httpd/conf/httpd.conf /etc/
[root@localhost httpd-2.4.29]# ln -s /usr/local/httpd/bin/* /usr/local/bin/
//以上操作為創(chuàng)建軟鏈接
[root@localhost httpd-2.4.29]# systemctl stop firewalld.service
[root@localhost httpd-2.4.29]# setenforce 0
//關(guān)閉防火墻及增強(qiáng)型安全功能
[root@localhost httpd-2.4.29]# httpd -t
Syntax OK
[root@localhost httpd-2.4.29]# service httpd start
[root@localhost httpd-2.4.29]# netstat -ntuap | grep httpd
tcp        0      0 192.168.56.128:80       0.0.0.0:*               LISTEN      22697/httpd 

第四步:安裝MySQL

[root@localhost httpd-2.4.29]# cd ~
[root@localhost ~]# yum install -y ncurses-devel autoconf cmake
//安裝必須組件
[root@localhost ~]# tar zxvf mysql-5.6.26.tar.gz -C /opt/
[root@localhost ~]# cd /opt/mysql-5.6.26/
[root@localhost mysql-5.6.26]# cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DEXTRA_CHARSETS=all -DSYSCONFDIR=/etc/ -DMYSQL_DATADIR=/home/mysql/ -DMYSQL_UNIX_ADDR=/home/mysql/mysql.sock
//安裝必須組件
[root@localhost mysql-5.6.26]# make
[root@localhost mysql-5.6.26]# make install
[root@localhost mysql-5.6.26]# cp support-files/my-default.cnf /etc/my.cnf
cp:是否覆蓋"/etc/my.cnf"? yes
[root@localhost mysql-5.6.26]# cp support-files/mysql.server /etc/init.d/mysqld
cp:是否覆蓋"/etc/init.d/mysqld"? yes
[root@localhost mysql-5.6.26]# cd /etc/init.d
[root@localhost init.d]# ls
functions  httpd  mysqld  netconsole  network  README
[root@localhost init.d]# chmod 755 mysqld
[root@localhost init.d]# ls -ln
總用量 56
-rw-r--r--. 1 0 0 17500 5月   3 2017 functions
-rwxr-xr-x. 1 0 0  3502 10月 18 22:45 httpd
-rwxr-xr-x. 1 0 0 10870 10月 18 23:20 mysqld
-rwxr-xr-x. 1 0 0  4334 5月   3 2017 netconsole
-rwxr-xr-x. 1 0 0  7293 5月   3 2017 network
-rw-r--r--. 1 0 0  1160 8月   5 2017 README
[root@localhost init.d]# chkconfig --add /etc/init.d/mysqld
[root@localhost init.d]# chkconfig --level 235 mysqld on
[root@localhost init.d]# echo "PATH=$PATH:/usr/local/mysql/bin" >> /etc/profile
[root@localhost init.d]# source /etc/profile
[root@localhost init.d]# echo $PATH
/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/root/bin:/usr/local/mysql/bin:/root/bin:/usr/local/mysql/bin
[root@localhost init.d]# useradd -s /sbin/nologin mysql
//創(chuàng)建用戶“mysql”
[root@localhost init.d]# chown -R mysql:mysql /usr/local/mysql/
[root@localhost init.d]# /usr/local/mysql/scripts/mysql_install_db --user=mysql --ldata=/var/lib/mysql --basedir=/usr/local/mysql --datadir=/home/mysql
//安裝必要組件
[root@localhost init.d]# vim /etc/init.d/mysqld
[root@localhost init.d]# service mysqld start
Starting MySQL SUCCESS! 
[root@localhost init.d]# netstat -ntuap | grep mysqld
tcp6       0      0 :::3306                 :::*                    LISTEN      1310/mysqld 
[root@localhost init.d]# mysqladmin -u root -p password "abc123"    //給root賬號(hào)設(shè)置新密碼

第五步:安裝PHP

[root@localhost init.d]# cd ~
[root@localhost ~]# yum install -y gd libpng libpng-devel pcre pcre-devel libxml2-devel libjpeg-devel
[root@localhost ~]# tar jxvf php-5.6.11.tar.bz2 -C /opt/
[root@localhost ~]# cd /opt/php-5.6.11/
[root@localhost php-5.6.11]# ./configure --prefix=/usr/local/php5 --with-gd --with-zlib --with-apxs2=/usr/local/httpd/bin/apxs --with-mysql=/usr/local/mysql --with-config-file-path=/usr/local/php5 --enable-mbstring
[root@localhost php-5.6.11]# make
[root@localhost php-5.6.11]# make install
[root@localhost php-5.6.11]# cp php.ini-development /usr/local/php5/php.ini
cp:是否覆蓋"/usr/local/php5/php.ini"? yes
[root@localhost php-5.6.11]# ln -s /usr/local/php5/bin/* /usr/local/bin/
[root@localhost php-5.6.11]# vim /etc/httpd.conf    
    AddType application/x-compress .Z
        AddType application/x-gzip .gz .tgz
        AddType application/x-httpd-php .php
        AddType application/x-httpd-php-source .phps
//在上兩行下面插入下面兩行內(nèi)容
DirectoryIndex index.php index.html
//在DirectoryIndex和index.html中間添加index.php
//按Esc退出插入模式,按:wq保存退出
[root@localhost php-5.6.11]# vim /usr/local/httpd/htdocs/index.php
<?php
phpinfo();
?>
//寫(xiě)入以上內(nèi)容,按Esc退出插入模式,按:wq保存退出
[root@localhost php-5.6.11]# service httpd restart

進(jìn)入網(wǎng)頁(yè)進(jìn)行測(cè)試(此處IP地址填寫(xiě)的是安裝服務(wù)的CentOS 7的IP地址):http://192.168.56.128/index.php,如果配置成功因該出現(xiàn)如下界面:

LAMP架構(gòu) —(介紹及實(shí)戰(zhàn))

第六步:安裝論壇組件并使用論壇

[root@localhost php-5.6.11]# cd ~
[root@localhost ~]# unzip Discuz_X2.5_SC_UTF8.zip -d /opt/Discuz
[root@localhost ~]#cp -r /opt/Discuz/upload/ /usr/local/httpd/htdocs/bbs
[root@localhost ~]#cd /usr/local/httpd/htdocs/bbs/
[root@localhost bbs]# chown -R daemon ./config/
[root@localhost bbs]# chown -R daemon ./data/
[root@localhost bbs]# chown -R daemon ./uc_client/data/cache/
[root@localhost bbs]# chown -R daemon ./uc_server/data/
[root@localhost bbs]# mysql -uroot -pabc123
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.26 Source distribution

Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> create database zzz;
Query OK, 1 row affected (0.00 sec)

mysql> grant all privileges on bbs.* to 'zzz'@'localhost' identified by '123123';
Query OK, 0 rows affected (0.01 sec)

mysql> grant all privileges on bbs.* to 'zzz'@'%' identified by '123123';
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> quit
Bye

下面論壇的安裝步驟在網(wǎng)頁(yè)中進(jìn)行:

在宿主機(jī)的瀏覽器界面輸入自己的虛擬機(jī)IP地址,例如:192.168.565.128/bbs進(jìn)入如下界面:

LAMP架構(gòu) —(介紹及實(shí)戰(zhàn))

點(diǎn)擊同意進(jìn)入下一步

LAMP架構(gòu) —(介紹及實(shí)戰(zhàn))

點(diǎn)擊下一步

LAMP架構(gòu) —(介紹及實(shí)戰(zhàn))

選擇全新安裝,點(diǎn)擊下一步

LAMP架構(gòu) —(介紹及實(shí)戰(zhàn))

數(shù)據(jù)服務(wù)器:192.168.56.128(此處輸入自己的虛擬機(jī)IP)

數(shù)據(jù)庫(kù)名:bbs

數(shù)據(jù)庫(kù)用戶名:bbsuser(此處可在之前的命令中自行定義)

數(shù)據(jù)庫(kù)密碼:admin123(此處可在之前的命令中自行定義)

管理員賬號(hào):admin(默認(rèn))

密碼:123123(可自行輸入)

結(jié)束之后點(diǎn)擊下一步,無(wú)故障則論壇安裝完成!
可進(jìn)入論壇的主頁(yè)界面,大成功!LAMP架構(gòu) —(介紹及實(shí)戰(zhàn))
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI