2022-09-02 11:08:25 - 米境通
Magento(麥進(jìn)斗)是一套專業(yè)開源的電子商務(wù)系統(tǒng)。Magento設(shè)計(jì)得非常靈活,具有模塊化架構(gòu)體系和豐富的功能。易于與第三方應(yīng)用系統(tǒng)無縫集成。其面向企業(yè)級應(yīng)用,可處理各方面的需求,以及建設(shè)一個多種用途和適用面的電子商務(wù)網(wǎng)站。包括購物、航運(yùn)、產(chǎn)品評論等等,充分利用開源的特性,提供代碼庫的開發(fā),非常規(guī)范的標(biāo)準(zhǔn),易于與第三方應(yīng)用系統(tǒng)無縫集成。
準(zhǔn)備工作
云服務(wù)器一臺,沒有的可以先到騰訊云購買,放行安全組的入方向端口80和3306。
騰訊云新用戶代金券
一、安裝配置Apache
安裝Apache:
先更新軟件包和存儲庫
yumupdate-y
復(fù)制
安裝Apache
yuminstallhttpd-y
復(fù)制
查看Apache是否安裝成功
httpd-v
復(fù)制
出現(xiàn)如下圖所示即安裝成功
打開Apache配置文件
vim/etc/httpd/conf/httpd.conf
復(fù)制
在Includeconf.modules.d/*.conf的下一行,添加LoadModulerewrite_modulemodules/mod_rewrite.so
將內(nèi)容中的AllowOverrideNone更改為AllowOverrideAll
內(nèi)容太多不好找可以按Shift+:輸入/AllowOverridecontrolswhat命令查找AllowOverride所在位置,找到更改保存。
啟動Apache服務(wù)
systemctlstarthttpd
復(fù)制
設(shè)置Apache服務(wù)開機(jī)自啟動
systemctlenablehttpd
復(fù)制
二、安裝配置MySQL
添加MySQLYUM源
rpm-Uvhhttp://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm
復(fù)制
安裝MySQL
yum-yinstallmysql-community-server
復(fù)制
啟動MySQL服務(wù)并設(shè)置開機(jī)自啟動
啟動MySQL服務(wù)
systemctlstartmysqld
復(fù)制
設(shè)置MySQL服務(wù)開機(jī)自啟動
systemctlenablemysqld
復(fù)制
配置MySQL
查看/var/log/mysqld.log文件,獲取并記錄root用戶的初始密碼
#grep'temporarypassword'/var/log/mysqld.log
復(fù)制
說明下一步重置root用戶密碼時,會使用該初始密碼。
設(shè)置root賬號密碼
mysql_secure_installation
復(fù)制
-
Enterpasswordforuserroot:#輸入上一步中獲取的root用戶密碼
The'validate_password'pluginisinstalledontheserver.
Thesubsequentstepswillrunwiththeexistingconfigurationoftheplugin.
Usingexistingpasswordforroot.
Estimatedstrengthofthepassword:100
Changethepasswordforroot?((Pressy|YforYes,anyotherkeyforNo):Y#是否更改root用戶密碼,輸入Y
Newpassword:#輸入密碼,長度為8至30個字符,必須同時包含大小寫英文字母、數(shù)字和特殊符號。特殊符號可以是()'~!@#$%^&*-+=|{}[]:;‘<>,.?/
Re-enternewpassword:#再次輸入密碼
Estimatedstrengthofthepassword:100
Doyouwishtocontinuewiththepasswordprovided?(Pressy|YforYes,anyotherkeyforNo):Y
復(fù)制
輸入Y刪除匿名用戶賬號。