在lnmp的基礎上部署word press

2021-10-01 16:39:35 字數 1074 閱讀 2417

使用rz先將事先準備好的wordpress上傳到centos7上(因為我裝的wordpress是5.3.2版本的,所以php必須要求5.6.20版本以上才能支援)

安裝unzip,並將word press解壓到/data/server下

yum -y install unzip

unzip wordpress-5.3.2.zip

mv wordpress /data/server/nginx/html/

cd wordpress/

mv * …/

然後修改配置檔案

cd /data/server/nginx/html

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

vim wp-config.php

修改前

修改後

重啟nginx

登入mysql

[root@localhost html]# [root@localhost html]# mysql -u root -p

mysql>

建立wordpress的資料庫

mysql> create database wordpress;

給wordpress建立使用者並增加許可權

mysql> grant all on wordpress.* to cui@『localhost』 identified by 『123』;

重新整理許可權

mysql> flush privileges;

關閉防火牆,主機瀏覽器訪問並註冊賬號

在lnmp的基礎上部署word press

用yum安裝unzip,用來解包wordpress root localhost yum y install unzip root localhost cd usr local src 上傳wordpress軟體包 解包 root localhost src unzip n wordpress 5....

LNMP在CentOS環境的部署

資源獲取及安裝 整個過程可能會持續十幾分鐘 wget co lnmp1.5.tar.gz tar zxf lnmp1.5.tar.gz cd lnmp1.5 install.sh lnmp 外掛程式安裝 addons.sh install redis addons.sh install memcac...

在Azure上部署squid的教程

首先關閉防火牆 setenforce 0設定最大檔案數 ulimit n 1048576設定最大檔案控制代碼數 echo soft nofile 1048576 etc security limits.conf echo hard nofile 1048576 etc security limits...