WordPress: Difference between revisions

From Alpine Linux
No edit summary
(22 intermediate revisions by 7 users not shown)
Line 1: Line 1:
== Set up WordPress on Alpine Linux ==
[http://wordpress.org/ WordPress] is web software you can use to create a beautiful website or blog. For Wordpress a bunch of [http://wordpress.org/extend/plugins/ plugins] are available.


This document will be a quick c/p guide to setup WordPress on Alpine linux. What we will setup is the following:
== Install lighttpd, PHP, and MySql ==
 
{{:Setting Up Lighttpd With FastCGI}}
* Lighttpd with PHP  
* MySql
* WordPress


== Install lighttpd, PHP, and MySql ==
Install extra packages:
{{Cmd|apk add wget php5-mysql mysql mysql-client php5-zlib}}


apk add nano php php-mysql mysql mysql-client lighttpd
Restart Lighttpd:
{{Cmd|/etc/init.d/lighttpd restart}}


== Configuring Lighttpd==
== Installing and configuring  WordPress ==


'''Edit lighttpd.conf'''
Create a directory named {{Path|webapps}}


nano +46 /etc/lighttpd/lighttpd.conf
{{Cmd|mkdir -p /usr/share/webapps/}}


Uncomment line:
Download the latest Wordpress source files


uncoment    include "mod_fastcgi.conf", save and exit
{{Cmd|cd /usr/share/webapps/
wget http://wordpress.org/latest.tar.gz}}


== Installing and configuring  WordPress ==
Unpack the archive and delete it afterwards


'''Install WordPress'''
{{Cmd|tar -xzvf latest.tar.gz
rm latest.tar.gz}}


Download
Change the folder persmissions


  cd /var/www/localhost/htdocs/
{{Cmd|chown -R lighttpd /usr/share/webapps/}}
  wget http://wordpress.org/latest.tar.gz


Unpack
Create a symlink to the {{Path|wordpress}} folder


  tar -xzvf latest.tar.gz
{{Cmd|ln -s /usr/share/webapps/wordpress/ /var/www/localhost/htdocs/wordpress}}
 
== Starting ==
'''Starting http and sql server and adding to boot'''


/etc/init.d/lighttpd start && rc-update add lighttpd default
== Config and start MySql ==
== Config MySql ==


/usr/bin/mysql_install_db --user=mysql
{{Cmd|<nowiki>/usr/bin/mysql_install_db --user=mysql
/etc/init.d/mysql start && rc-update add mysql default
/etc/init.d/mariadb start && rc-update add mariadb default
/usr/bin/mysqladmin -u root password 'password'
/usr/bin/mysqladmin -u root password 'password'</nowiki>}}


'''Create the WordPress database'''
==Create the WordPress database==


mysql -u root -p 'password'
{{Cmd|mysql -u root -p}}


CREATE DATABASE wordpress;
{{Cmd|CREATE DATABASE wordpress;
GRANT ALL PRIVILEGES ON wordpress.* TO "root";
GRANT ALL PRIVILEGES ON wordpress.* TO 'wordpress'@'localhost' IDENTIFIED BY 'wordpress password';
FLUSH PRIVILEGES;
FLUSH PRIVILEGES;
EXIT
EXIT}}


== Config your WordPress ==
== Config your WordPress ==


Browse
Browse to
 
http://WEBSERVER_IP_ADDRESS/wordpress/
http://WEBSERVER_IP_ADDRESS/WordPress/
 
  click on: "Create a Configuration File"
  click on: "Let’s go!"


  Database Name: wordpress
* Click on: "Create a Configuration File"
  User Name: root
* Click on: "Let’s go!"
  Password: the MySQL password
:* Database Name: wordpress
  Database Host: localhost
:* User Name: wordpress
  Table Prefix: wp_
:* Password: <wordpress password>
:* Database Host: localhost
:* Table Prefix: wp_


  You may need create the wp-config.php manually then copy and paste the following text into it.
You may need create the wp-config.php manually, so modify define the 'DB_NAME', DB_USER and DB_PASSWORD, then copy and paste the text into it.
  After you've done that, click "Run the install."
After you've done that, click "Run the install."


  Enter Information needed
* Enter Information as needed


  Site Title
:* Site Title
  Username
:* Username
  Password, twice
:* Password, twice
  Your E-mail
:* Your E-mail


After you've done that, click "Install WordPress"  
After you've done that, click "Install WordPress"  


You have WordPress working, to access go to http://WEBSERVER_IP_ADDRESS/wordpress and enjoy!
You have WordPress working, to access go to http://WEBSERVER_IP_ADDRESS/wordpress and enjoy!
[[Category:SQL]]

Revision as of 10:12, 9 October 2017

WordPress is web software you can use to create a beautiful website or blog. For Wordpress a bunch of plugins are available.

Install lighttpd, PHP, and MySql

Basic Installation

For installing the additional packages first activate community packages and update the package index

Install the required packages:

# apk add lighttpd php82 fcgi php82-cgi

Configure Lighttpd

Edit lighttpd.conf (/etc/lighttpd/lighttpd.conf) and uncomment the line:

Contents of /etc/lighttpd/lighttpd.conf

... include "mod_fastcgi.conf" ...

Edit mod_fastcgi.conf (/etc/lighttpd/mod_fastcgi.conf), find and change /usr/bin/php-cgi to /usr/bin/php-cgi82.

Contents of /etc/lighttpd/mod_fastcgi.conf

... "bin-path" => "/usr/bin/php-cgi82" # php-cgi ...

Start lighttpd service and add it to default runlevel

# rc-service lighttpd start # rc-update add lighttpd default

Install extra packages:

apk add wget php5-mysql mysql mysql-client php5-zlib

Restart Lighttpd:

/etc/init.d/lighttpd restart

Installing and configuring WordPress

Create a directory named webapps

mkdir -p /usr/share/webapps/

Download the latest Wordpress source files

cd /usr/share/webapps/ wget http://wordpress.org/latest.tar.gz

Unpack the archive and delete it afterwards

tar -xzvf latest.tar.gz rm latest.tar.gz

Change the folder persmissions

chown -R lighttpd /usr/share/webapps/

Create a symlink to the wordpress folder

ln -s /usr/share/webapps/wordpress/ /var/www/localhost/htdocs/wordpress

Config and start MySql

/usr/bin/mysql_install_db --user=mysql /etc/init.d/mariadb start && rc-update add mariadb default /usr/bin/mysqladmin -u root password 'password'

Create the WordPress database

mysql -u root -p

CREATE DATABASE wordpress; GRANT ALL PRIVILEGES ON wordpress.* TO 'wordpress'@'localhost' IDENTIFIED BY 'wordpress password'; FLUSH PRIVILEGES; EXIT

Config your WordPress

Browse to http://WEBSERVER_IP_ADDRESS/wordpress/

  • Click on: "Create a Configuration File"
  • Click on: "Let’s go!"
  • Database Name: wordpress
  • User Name: wordpress
  • Password: <wordpress password>
  • Database Host: localhost
  • Table Prefix: wp_

You may need create the wp-config.php manually, so modify define the 'DB_NAME', DB_USER and DB_PASSWORD, then copy and paste the text into it. After you've done that, click "Run the install."

  • Enter Information as needed
  • Site Title
  • Username
  • Password, twice
  • Your E-mail

After you've done that, click "Install WordPress"

You have WordPress working, to access go to http://WEBSERVER_IP_ADDRESS/wordpress and enjoy!