How to install Wordpress In FreeBSD

How to install wordpress.

Installation is depending on current version, Web Server Application, Operating system and user define directory.

This installation is on FREEBSD10.1 with Wordpress Version

1 - #wget https://wordpress.org/latest.tar.gz
                                   @
     #fetch https://wordpress.org/latest.tar.gz

 #wget: Command not found.
 #pkg install wget
 ....................................
New packages to be INSTALLED:
        wget: 1.16.3
        gettext-runtime: 0.19.4
        libidn: 1.31

The process will require 4 MiB more space.
859 KiB to be downloaded.

Proceed with this action? [y/N]: Y(Enter)
2 - #tar -zxvf latest.tar.gz
-z When operating on files with the extension .tar.gz.
-x Extract files from an archive.
-v Verbose
-f Use archive file (or device) ARCHIVE.
3 - Now u will see the wordpress file in folder named wordpress.(Use #ls or #ll to list file and folder)
4 - #chown www:www wordpress

5 - Open web browser. navigate to http://localhost/wordpress



6- Enjoy your fresh Wordpress installation

Comments