Installing WordPress on your Zunicore Cloud Server

We have a lot of web developers taking advantage of the Zunicore flexibility while building and hosting their sites on the Zunicore Cloud. Some of their design and site integration with Content Management Systems (CMS) is truly remarkable. Their ability to create, customize, configure, backup, and even create the server as a customized template really showcases how incredibly advanced these users are and how easy it is for CMS developers to maximize efficiency using the Zunicore Cloud.

However, not all of our users are familiar with building a Content Management Server and web developing using Php or MySQL. So, to provide further insight into how simple it can be to set up a CMS using our Zunicore Cloud, we wanted to show how quick and easy it can be.

You will first need to install the basic packages:

apache
MySQL
Php53
Php53-mysql
unzip
wget

These packages will allow you to build the CMS as a Linux web server and wget will retrieve the latest WordPress software.

#yum -y install mysql-server httpd php53  php53-mysql unzip wget

 

Make sure to turn on MySQL and Apache:

#service mysqld start; service httpd start

You will then need to make sure Apache and MySQL will start at run time:

#chkconfig httpd on; chkconfig mysqld on

Now, you will need to create a database for your WordPress server:

#mysql -u root -p
mysql> CREATE DATABASE wordpressblog;
mysql> GRANT ALL PRIVILEGES ON wordpressblog.* TO “wordpress”@”localhost” IDENTIFIED BY “zunicore” ;
mysql> FLUSH PRIVILEGES;
mysql> Exit;

We use the below values for the configuration:

DATABASE name = wordpressblog

Username = wordpress

Password = zunicore

After you have created the database, change directories to /var/www/html. You will now download the latest WordPress package and unzip it in your directory:

#wget http://wordpress.org/latest.zip
#unzip latest.zip

Once this extracts, you can remove the download .zip and the unnecessary directory:

#rm latest.zip ; mv wordpress/* ./ ; rmdir wordpress

Now, you will need to make wp-content/uploads and wp-content/cache writable by your web server:

#mkdir wp-content/uploads wp-content/cache

#chown apache:apache wp-content/uploads wp-content/cache

Next, you will need to edit the WordPress configuration file. First, copy wp-config-sample.php to wp-config.php:

#cp wp-config-sample.php wp-config.php

Then, edit /var/www/html/wp-config.php :

#vim /var/www/html/wp-config.php

Change the WordPress values correctly to match the database name, user, and password that was created earlier:

DB_NAME = the database name (wordpressblog)

DB_USER = user name (wordpress)

DB_HOST = localhost

DB_PASSWORD = PASSWORD (zunicore)

You can now complete the set up your of WordPress CMS. Open up your web browser and enter your IP address/wp-admin/install.php in the url field. You should see the WordPress Welcome message on your browser.  This will start the process of creating a WordPress admin, adding the site name, and a description to your site:


Once you are done, you will then be forwarded to your first ever CMS!

At any point of the installation you are not comfortable with setting up the CMS or you would prefer an even easier experience, Standing Cloud provides you with a  CMS of your choice and an incredibly easy, point and click install process all while using the Zunicore Cloud.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Google+ photo

You are commenting using your Google+ account. Log Out / Change )

Connecting to %s




Twitter Updates

  • @PoonHealey Hello, We do not offer phone support for the Zunicore platform. You can get a hold of us with live chat. Live chat is av... 1 year ago
  • @artifaktCom Hello, An API will be available soon that will allow you to obtain this output. Right now, the API is undergoing signifi... 1 year ago
  • @jonathansuter Hello, We can reply back with any answers you need. Please update this with any questions that you have. 1 year ago
  • @RyanCorner Hello, We will forward this information to our development team. We will update this ticket when completed. 1 year ago
  • @beagile Hello, You would have to use the templates we offer. But if you spin up two VHDs on the server, you can always copy the data... 1 year ago
  • @indiejustin Hello Justin, Can you create a ticket in our internal system so i can verify you and then determine the issue of the VM. 1 year ago
  • @kangawallafox Hello Shaun. I am not seeing a ticket under your name. Please respond to the ticket via the user portal and we will respond. 1 year ago
  • @josephoenix Hello Joseph. Please submit a ticket to [email protected] stating you'd like to deactivate your account and we'll handle it. 1 year ago
  • @Open_Universe That is great to hear. If any assistance is needed, please let us know. Have a great day and enjoy your time in the cloud! 2 years ago
  • @Open_Universe If you can provide the email address that is associated with your account, we will create a ticket and inform you when ready 2 years ago

Follow

Get every new post delivered to your Inbox.

%d bloggers like this: