tang88seng

没有废话,步骤如下:

  • 下载安装软件,MySQL Apache PHP

sudo aptitude install mysql-server mysql-client    ##安装 MySQL
sudo aptitude install apache2 apache2-doc libapache2-mod-php5  ##安装 Apache
sudo aptitude install php5 php5-mysql    ##安装 php

  • 建立数据库/用户

mysql -u root -p  ##Root 登录
CREATE DATABASE wordpress;   ##建立数据库 wordpress
CREATE USER \'wordpress\'@\'localhost\' IDENTIFIED BY \'wordpress\';   ##建立数据库用户名字和口令都是 wordpress
GRANT ALL PRIVILEGES ON wordpress.* TO "wordpress"@\'localhost\';  ##授权
FLUSH PRIVILEGES;

  • 下载 wordpress

wget https://cn.wordpress.org/wordpress-4.5.1-zh_CN.tar.gz
或者从这儿下载: https://cn.wordpress.org/

  • 安装配置

不建议参考,网上攻略;wordpress-4.5.1-zh_CN.tar.gz 解开后里面的 readme.html

分类:

技术点:

相关文章:

  • 2021-11-12
  • 2021-09-20
  • 2021-05-31
  • 2021-11-15
  • 2021-12-15
  • 2021-11-11
猜你喜欢
  • 2021-11-22
  • 2021-11-09
  • 2021-08-21
  • 2021-12-15
  • 2021-12-09
  • 2021-12-13
  • 2021-12-15
相关资源
相似解决方案