目次
Step 1 : Setup LAMP Stack
Step 2 : Create Database and User for WordPress
Step 3 : Download WordPress Latest Version
Step 4 : Install WordPress through the Web Browser
Additonal Setting – WordPress Permalinks
ホームページ データベース mysql チュートリアル How to Install WordPress 3.9 with Apache2 + MySQL 5.5 + PHP_MySQL

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

Jun 01, 2016 pm 01:07 PM

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.

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

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

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></directory>AllowOverride All
ログイン後にコピー

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 :

このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

AI Hentai Generator

AI Hentai Generator

AIヘンタイを無料で生成します。

ホットツール

メモ帳++7.3.1

メモ帳++7.3.1

使いやすく無料のコードエディター

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

SublimeText3 Mac版

SublimeText3 Mac版

神レベルのコード編集ソフト(SublimeText3)

DockerでのMySQLメモリの使用を減らします DockerでのMySQLメモリの使用を減らします Mar 04, 2025 pm 03:52 PM

この記事では、DockerのMySQLメモリ使用量を最適化することを調査します。 監視手法(Docker統計、パフォーマンススキーマ、外部ツール)および構成戦略について説明します。 これらには、Dockerメモリの制限、スワッピング、およびcgroupsが含まれます

mysqlの問題を解決する方法共有ライブラリを開くことができません mysqlの問題を解決する方法共有ライブラリを開くことができません Mar 04, 2025 pm 04:01 PM

この記事では、MySQLの「共有ライブラリを開くことができない」エラーについて説明します。 この問題は、必要な共有ライブラリ(.so/.dllファイル)を見つけることができないMySQLの障害に起因しています。ソリューションには、システムのパッケージMを介してライブラリのインストールを確認することが含まれます。

Alter Tableステートメントを使用してMySQLのテーブルをどのように変更しますか? Alter Tableステートメントを使用してMySQLのテーブルをどのように変更しますか? Mar 19, 2025 pm 03:51 PM

この記事では、MySQLのAlter Tableステートメントを使用して、列の追加/ドロップ、テーブル/列の名前の変更、列データ型の変更など、テーブルを変更することについて説明します。

Linuxでmysqlを実行します(phpmyAdminを使用してポッドマンコンテナを使用して/なし) Linuxでmysqlを実行します(phpmyAdminを使用してポッドマンコンテナを使用して/なし) Mar 04, 2025 pm 03:54 PM

この記事では、PHPMyAdminの有無にかかわらず、LinuxにMySQLを直接インストールするのとPodmanコンテナを使用します。 それは、各方法のインストール手順を詳述し、孤立、携帯性、再現性におけるポッドマンの利点を強調しますが、

sqliteとは何ですか?包括的な概要 sqliteとは何ですか?包括的な概要 Mar 04, 2025 pm 03:55 PM

この記事では、自己完結型のサーバーレスリレーショナルデータベースであるSQLiteの包括的な概要を説明します。 SQLiteの利点(シンプルさ、移植性、使いやすさ)と短所(同時性の制限、スケーラビリティの課題)を詳しく説明しています。 c

MACOSで複数のMySQLバージョンを実行する:ステップバイステップガイド MACOSで複数のMySQLバージョンを実行する:ステップバイステップガイド Mar 04, 2025 pm 03:49 PM

このガイドは、HomeBrewを使用してMacOSに複数のMySQLバージョンをインストールおよび管理することを示しています。 Homebrewを使用して設置を分離し、紛争を防ぐことを強調しています。 この記事では、インストール、開始/停止サービス、および最高のPRAを詳述しています

MySQL接続用のSSL/TLS暗号化を構成するにはどうすればよいですか? MySQL接続用のSSL/TLS暗号化を構成するにはどうすればよいですか? Mar 18, 2025 pm 12:01 PM

記事では、証明書の生成と検証を含むMySQL用のSSL/TLS暗号化の構成について説明します。主な問題は、セルフ署名証明書のセキュリティへの影響を使用することです。[文字カウント:159]

人気のあるMySQL GUIツール(MySQL Workbench、PhpMyAdminなど)は何ですか? 人気のあるMySQL GUIツール(MySQL Workbench、PhpMyAdminなど)は何ですか? Mar 21, 2025 pm 06:28 PM

記事では、MySQLワークベンチやPHPMyAdminなどの人気のあるMySQL GUIツールについて説明し、初心者と上級ユーザーの機能と適合性を比較します。[159文字]

See all articles