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