wordpress安裝精簡版

2021-10-01 13:47:32 字數 1813 閱讀 6885

1、更新yum 源

[root@bogon ~]# yum -y update

2.安裝軟體

3.檢視php版本

php -version

4.解除安裝php相關所有的

rpm -qa | grep php | xargs rpm -e

5.檢視版本

php -version

6.更新php的yum源

rpm -uvh

7.安裝新版php環境

yum install php56w.x86_64 php56w-cli.x86_64 php56w-common.x86_64 php56w-gd.x86_64 php56w-ldap.x86_64 php56w-mbstring.x86_64 php56w-mysql.x86_64 php56w-pdo.x86_64 php56w-odbc.x86_64 php56w-xml.x86_64 php56w-xmlrpc.x86_64 php56w-soap.x86_64

8.啟動http服務

9.啟動mysql服務

[root@localhost init.d]# service mysqld start

10.檢視埠

ss-tnl

11.進入mysql

[root@shining ~]# mysql

12.配置資料庫資料

mysql> show databases;

create database wordpress;

mysql> show databases;

mysql> create user wpuser@localhost;

mysql> use mysql;

mysql> select user from user;

mysql> update user set password = password(「wppassword」) where user =  『wpuser』;

mysql> grant all privileges on wordpress.* to wpuser@localhost identified by 『wppassword』;

mysql> flush privileges;

mysql> exit;

13.配置wordpress

cp  /home/rz/music/檔案壓縮名 /var/www/html

cd  /var/www/html

[root@bogon html]# tar xvf wordpress5.***.gz

[root@bogon html]# cd wordpress

[root@bogon wordpress]# cp wp-config-sample.php wp-config.php

[root@bogon wordpress]# vim wp-config.php

[root@bogon wordpress]#

/** wordpress資料庫的名稱 /

define(『db_name』,『wordpress』);

/* mysql資料庫使用者名稱 /

define(『db_user』,『wpuser』);

/* mysql資料庫密碼 */

define(『db_password』,『wppassword』);

精簡版XP安裝IIS

2 點開始 執行 輸入 c windows inf sysoc.inf 不含引號 這時會彈出乙個記事本檔案,找到其中 components 這一段,新增 iis iis.dll,ocentry,iis.inf,7 不含引號 如果其中有 iis 這行,那麼先刪除掉再新增。在執行裡輸入 expand c...

AsyncTask原理精簡版

asynctask有三個主要的方法 onpreexecute doinbackground string.params onpostexecute 建立asynctask物件需要重寫乙個類繼承asynctask,因為asynctask本身是抽象類 new asynctask execute para...

Sql優化精簡版

1.select語句中避免使用 盡量應該根據業務需求按欄位進行查詢 2.刪除重覆記錄 delete from tble tb where tb.id select min id from tble ble where tb.name ble.name 3.用 替換 4.盡量多使用commit 如對大...