伺服器上安裝WordPress

2021-10-04 03:49:19 字數 2087 閱讀 7185

參考

環境;centos 7.3 64位

yum -y install httpd #安裝web伺服器apache,也叫httpd

systemctl start httpd.service #啟動服務並設定為開機啟動

yum -y install firewalld firewall-config #配置防火牆 安裝firewall

systemctl start firewalld.service #啟動服務並設定為開機啟動

systemctl enable firewalld.service

firewall-cmd --permanent --zone=public --add-service=http #開啟埠

firewall-cmd --reload #重新載入

此時開啟ip位址就會有介面

yum -y install mariadb-server mariadb #安裝資料庫mariadb

systemctl start mariadb.service #啟動服務並設定為開機啟動

systemctl enable mariadb.service

mysql_secure_installation #配置root密碼

mysql -u root -p #登陸mariadb為wordpress建立資料庫及使用者

(我這裡資料庫為wordpress,使用者為user,密碼為123456,可以自己替換)

create database wordpress;

create user user@localhost identified by 『123456』;

更改使用者許可權,儲存並退出

grant all privileges on wordpress.* to user@localhost;

flush privileges;

exit

systemctl restart httpd.service #最後再重啟相關服務

systemctl restart mariadb.service

yum provides php #安裝php

rpm -uvh #更新源

rpm -uvh

yum install -y php72w php72w-opcache php72w-xml php72w-mcrypt php72w-gd php72w-devel php72w-mysql php72w-intl php72w-mbstring #安裝依賴包

vim /var/www/html/info.php #用vim新建乙個php頁面檢查安裝的情況

編輯為以下內容

<?php phpinfo(); ?>

儲存退出

systemctl restart httpd.service #重啟httpd服務

就可以看到php的詳細資訊

安裝wordpress

cd /

mkdir wordpress

cd wordpress

tar xzvf latest.tar.gz

cp -rf wordpress/* /var/www/html/

chown -r apache:apache /var/www/html/ #修改資料夾許可權

chmod -r 777 /var/www/html/

mkdir -p /var/www/html/wp-content/uploads

chown -r :apache /var/www/html/wp-content/uploads

cd /var/www/html #編輯配置檔案

cp wp-config-sample.php wp-config.php

vim wp-config.php

systemctl restart httpd.service ##最後重啟相關的服務

systemctl restart mariadb.service

在自己伺服器上安裝WordPress部落格

通過ssh登入伺服器後,我們鍵入如下命令 screen s lnmp如果沒有screen的可以自行安裝 yum install screen 或 apt get install screen下面通過指令碼一鍵安裝lmnp wget c tar zxf lnmp1.4.tar.gz cd lnmp1....

wordpress伺服器遷移

最近終於空了些,於是打算把原來伺服器的wordpress遷移到學生機上去,這樣就省下每個月100塊了.步驟如下 1 先用phpmyadmin備份資料庫表 2 備份 程式 3.新伺服器安裝lamp環境 安裝httpd 安裝mysql centos7安裝mariadb 安裝php 安裝phpmyadmi...

jmeter伺服器上安裝

或者wget http apache jmeter 4.0.tgz 拷貝到安裝目錄並解壓 cp apache jmeter 4.0.tgz usr local jmeter tar zxvf apache jmeter 4.0.tgz 解壓得到apache jmeter 4.0目錄 環境變數配置 為...