Ubuntu16.4安装Wordpress
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu16.4安装Wordpress相关的知识,希望对你有一定的参考价值。
0.基本操作
更新源
apt-get update
修改主机名,阿里云主机名字太丑
vi /etc/hostname
Xshell(ssh连接工具)上传下载文件,方便后续上传安装WordPress
apt install rz sz
sz filename 从服务端发送文件到客户端
rz 从客户端上传文件到服务端
安装FTP服务,解决后续wordpress安装插件或主题出现不能创建目录的问题
apt-get install vsftpd 安装ftp
vi /etc/ftpusers 注释掉root用户,有风险,但很方便
vi /etc/vsftpd.conf
取消注释#write_enable=YES
service vsftpd restart
1.安装Apache
apt-get install apache2 安装
service apache2 restart/status/start/stop 查看状态
关闭防火墙80端口限制
ufw allow 80
80端口默认会被防火墙关闭ufw命令参考,后面mysql数据库3306端口也是
测试:访问http://Ubuntu的IP,出现It Works!网页,
2.安装MySQL
apt-get install mysql-server mysql-client 安装
mysql -u root -p 测试
service mysql retart/status/start/stop 查看状态
关闭防火墙3306端口限制
ufw allow 3306
设置远程访问 参考
vi /etc/mysql/mysql.conf.d/mysqld.cnf
注释掉bind-address = 127.0.0.1,否则只能自身访问
mysql -u root -p 登陆mysql
允许root用户远程访问,此处用户是root,密码是password
grant all on *.* to [email protected]'%' identified by 'password' with grant option;
flush privileges;
3.安装php
安装
apt-get install php7.0
apt-get install libapache2-mod-php7.0
apt-get install php7.0-mysql
重启
service apache2 restart
service mysql restart
测试
vim /var/www/html/phpinfo.php
文件中写:<?php echo phpinfo();?>
浏览器访问:http://ubuntu地址/phpinfo.php,出现PHP Version网页
4.安装phpMyAdmin
sudo apt-get install phpmyadmin
安装时:空格选择apache2,enter确定,下一步配置数据库,输入密码。
创建phpMyAdmin快捷方式
sudo ln -s /usr/share/phpmyadmin /var/www/html
sudo a2enmod rewrite 启用Apache mod_rewrite模块,后面修改wordpress链接时会用
重启服务
service php7.0-fpm restart
service apache2 restart
浏览器访问:http://ubuntu地址/phpmyadmin
5.配置Apache
Web目录: /var/www/html
安装目录: /etc/apache2/
全局配置: /etc/apache2/apache2.conf
监听端口: /etc/apache2/ports.conf
虚拟主机: /etc/apache2/sites-enabled/000-default.conf
vim /etc/apache2/apache2.conf
添加:
AddType application/x-httpd-php .php .htm .html
AddDefaultCharset UTF-8
重启Apache服务
service apache2 restart
下载并安装 WordPress
切换到你的临时目录(没有便创建)并用 wget 去下载 WordPress(以4.3.1为例)
cd ~/temp
wget http://wordpress.org/wordpress-4.3.1.tar.gz
下载完成后解压
tar xzvf wordpress*
复制解压的目录到你的 WordPress目录下,推荐使用 rsync 安全复制文件
cd wordpress*
sudo rsync -avz . /var/www/html
进入 WordPress目录检查复制的文件
cd /var/www/html
ls -lsa
确保 WordPress 目录文件可写,同时,以 www-data 用户, www-data 属组运行(用户,属组可自定义)
chown www-data:www-data -R /var/www/html/
配置 WordPress 编辑 WordPress config.php 文件
cp /var/www/html/wp-config-sample.php /var/www/html/wp-config.php
vim /var/www/html/wp-config.php
找到并修改数据库名称,数据库用户名, mysql root 密码
[...]
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'wordpressadmin');
/** MySQL database password */
define('DB_PASSWORD', 'wordpresspassword');
/** MySQL hostname */
define('DB_HOST', 'localhost');
重启 Apache 服务
service apache2 restart
安装 WordPress
访问
http://
你的域名
or
你的
IP
在网页上配置
注意
如果登陆进去是Apache的欢迎页则把/var/www/html/index.html删除掉,但是不能删除其他的!
以上是关于Ubuntu16.4安装Wordpress的主要内容,如果未能解决你的问题,请参考以下文章