How to Install WordPress 3.9 with Apache2 + MySQL 5.5 + PHP_MySQL

php中文网
发布: 2016-06-01 13:07:59
原创
1114人浏览过

WordPressApache

wordpress is free and open source blogging tool written in php andmysqlas default database. it’s probably the easiest and most powerful blogging and website content management system (orcms) in existence today. in addition,  wordpress is a way of getting information up on the web. it was first set up for bloggers and is now used to build websites large and small. it is now the largest self-hosted website building tool in the world.

This tutorial will describe basic step how to installing fresh wordpress 3.9 with Apache2,Mysql5.5 and PHP 5.5 in Ubuntu Server 14.04 LTS .

Step 1 : Setup LAMP Stack

Before installing wordpress you need to have a LAMP (Linux, Apache2, MySQL5, and PHP5) stack installed on yourUbuntu Server14.04. If you don’t have these components already installed and configured, you can use this tutorial to learn  how to Install LAMP Stack on Ubuntu Server 14.04 .

Step 2 : Create Database and User for WordPress

Log in tomysqlserver as root user by typing the following command

mysql -u root -p
登录后复制

Once Successful login to the Mysql Server, use these command to create database for wordpress. In this case I will give the name of the wordpress database as dbwordpress,  You can call this whatever you would like.

立即学习PHP免费学习笔记(深入)”;

CREATE DATABASE dbwordpress;
登录后复制

Next, we are going to create a separate MySQL user account and give this user a password. On this case I will call the new account “wpuser” and password for new account “ wpP@5sw0Rd “, you should definitely change the password for your installation and can name the user whatever you’d like. You can do this by typing the following command:

CREATE USER wpuser@localhost IDENTIFIED BY 'wpP@5sw0Rd';
登录后复制

Next, grant all privileges on the database you just created to the new user by running the commands below

GRANT ALL PRIVILEGES ON dbwordpress.* TO wpuser@localhost;
登录后复制

We need to flush the privileges so that the current instance of MySQL knows about the recent privilege changes we’ve made:

FLUSH PRIVILEGES;
登录后复制

And finally we exit the MySQL terminal by entering:

exit;
登录后复制

Create Database and User for WordPress How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

Step 3 : Download WordPress Latest Version

Enter to directory Document root ofApache:

cd /var/www/html
登录后复制

Download wordpress latest version from the project’s website with the following commad:

sudo wget http://wordpress.org/latest.tar.gz
登录后复制

Extract the files “latest.tar.gz” to rebuild the WordPress directory with these command:

sudo tar -zxvf latest.tar.gz
登录后复制

This will create a directory called wordpress  in directory /var/www/html

create a directory called wordpress How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

Copy all file on wordpress directory in toApache‘s document root , we recommend to use rsync command for preserves permissions and data integrity:

sudo rsync -avP wordpress/ /var/www/html
登录后复制

Or, you can doing it without mentioning Apache’s document root:

sudo rsync -avP wordpress/ .
登录后复制

Once copying all file on wordpress directory is complete. Remove wordpress directory and file latest.tar.gz

sudo rm -rf wordpress/ latest.tar.gz
登录后复制

Give permissions to user and group (www-data) over everything under directory /var/www/html

sudo chown -R www-data:www-data /var/www/html
登录后复制

Give permissions to user and group www data How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

Step 4 : Install WordPress through the Web Browser

Complete the wordpress installation through the web browser, In your web browser, navigate to your server’s domain name or public IP address [http://ip_public] or [http://domain]

You should see this image:

Create Configuration File for WordPress How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

we need some information on the database How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

Click on Create Configuration File, followed by Let’s Go in the next step. In the 3rd step, enter the details as follows:

Database Name: dbwordpress

User Name: wpuser

腾讯Effidit
腾讯Effidit

腾讯AI Lab开发的AI写作助手,提升写作者的写作效率和创作体验

腾讯Effidit 65
查看详情 腾讯Effidit

Password: wpP@5sw0Rd

Database Host: localhost

Table Prefix: wp_

Selection 211 How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

After click on Submit. you should get the following page. Click Run Install

run install wordpress How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

Now you will see the WordPress initial configuration page, Fill out the information for the site such as Site title, Username, Password and Your Email, Check list on privacy option if you allow search engine crawling your site. Then and click Install WordPress

WordPress Installation How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

WordPress will confirm the installation process is success. It also show you login account that have been created on previous step.

Selection 212 How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

Hit the log in button if you want login to wordpress dashboard.

Just another WordPress site How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

Additonal Setting – WordPress Permalinks

By default, WordPress create  URLs dynamically that look something like this [ domain/?page_id=4 ] to enable URL friendly you need to have an .htaccess file on root directory where wordpress installed, The first thing you do is edit the file /etc/apache2/sites-available/000-default.conf.

sudo nano /etc/apache2/sites-available/000-default.conf
登录后复制

Add the following line under option ( DocumentRoot /var/www/html) on section 

ServerName domain_or_IP<Directory /var/www/html/>AllowOverride All</Directory>
登录后复制

Example:

add option on file 000 default conf How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

Enable the rewrite module with these command:

sudo a2enmod rewrite
登录后复制

Restart apache2 service:

sudo service apache2 restart
登录后复制

Create empty file .htaccess in your document root

sudo touch /var/ww/html/.htaccess
登录后复制

Give permission file .htaccess with username and group (www-data)

sudo chown www-data:www-data /var/ww/html/.htaccess
登录后复制

Set permission file /var/www/html/.htaccess to 644

sudo chmod 664 /var/www/html/.htaccess
登录后复制

Now you can setting wordpress permaliks from wordpress dashboard, navigate to Settings -> Permalinks

Setting Wordpress Permalinks How to Install Wordpress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS

The following video created by LinuxScoop  and is describes How to install WordPress 3.9 with Apache2 + MySQL 5.5 + PHP5.5 in Ubuntu Server 14.04 LTS . Original video you can found  here

Note: This tutorial have been tested on VPS  DigitalOcean  512MB

Link Reference :

WPS零基础入门到精通全套教程!
WPS零基础入门到精通全套教程!

全网最新最细最实用WPS零基础入门到精通全套教程!带你真正掌握WPS办公! 内含Excel基础操作、函数设计、数据透视表等

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号