SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU BY RAMI

Size: px
Start display at page:

Download "SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU BY RAMI"

Transcription

1 SETTING UP 3 WORDPRESS SITES ON APACHE AND UBUNTU BY RAMI

2 SETTING UP 3 WORDPRESS SITES ON APACHE SERVER AND UBUNTU 14.04

3 THE SET UP This may be a little rough in some places because not all the terms are explained but this is the order and steps needed, so even if you don't know what somethings mean yet just follow the steps, if you need more explanations everything is based of the tutorials at digital ocean so you can refer back to those. This tutorial basically sets up three Wordpress websites from scratch, the tutorials at digital ocean are all missing a piece of the puzzle that is needed to make the sites function with out limitations, if you ve through the tutorials already you will see by the end of this. Do not use the 1 click set up for setting up multiple websites because they have their own settings and directories which you have to change and figure out to get the to work. If you want more than three websites its just a matter of creating another new directory and copying the vanilla Wordpress files into it, following the Wordpress guide at digital ocean for setting up from scratch, then creating another apache record for it so Apache knows its there, as well as another DNS domain record, 2

4 basically repeating the same steps outlined below for another site. First Step First go to the DNS page on Digital Ocean and create 3 separate domain records for each site, exactly like the tutorial for a single Domain, all identical using the same ip address for that one droplet. When your ready, go to each websites domain provider that it s registered with and point them to Digital Oceans Name servers, nothing fancy is needed here. The set up should be in this order because some installations depend on specific resources being there before you do anything else; INITIAL SERVER SETUP (See Apache tutorial for more info) - Log in as root user and change the password they sent by , you have to do this first. - Create a new user, you then need to be logged in as this user when setting everything else up. Use the following commands: adduser demo (Next put your name were it says Username) gpasswd -a Username sudo - Add a Swap file so we don t run out of RAM (See swap file tutorial for more info) - You must be logged in as the User you just created for it to work, some of these commands after you type them will bring up available resources so you know what is there on the server, others do other stuff ;) 3

5 Use the following commands: sudo swapon -s free -m df -h sudo fallocate -l 4G /swapfile (the letter is an L not a 1, tutorials are horrible this way) ls -lh /swapfile sudo chmod 600 /swapfile ls -lh /swapfile sudo mkswap /swapfile sudo swapon -s free -m - Now you have to Edit a file with root privileges in your text editor: Use the following commands: sudo nano /etc/fstab - At the bottom of the file you just opened, you need to add a line that will tell the operating system to automatically use the file you created, so mover the cursor to the last line and type: /swapfile none swap sw Save your work by hitting Ctrl X (i m using mac), press Y for Yes and and hit enter to close the file when you are finished. 4

6 - Now Use the following commands to see what is there on the server: cat /proc/sys/vm/swappiness 60 sudo sysctl vm.swappiness=10 vm.swappiness = 10 - We have to Edit the file Use the following commands: sudo nano /etc/sysctl.conf - After the bottom line you can add: vm.swappiness=10 - Save and close the file by hitting Ctrl X then pressing Y when you are finished. Now Use the following commands: cat /proc/sys/vm/vfs_cache_pressure 100 sudo sysctl vm.vfs_cache_pressure=50 vm.vfs_cache_pressure = 50 5

7 - We have to Edit the file, Use the following commands: sudo nano /etc/sysctl.conf - At the bottom, add the line that specifies your new value: vm.vfs_cache_pressure = 50 - Save and close the file when you are finished. SETTING UP A LAMP STACK (See the LAMP tutorial for more info) Install Apache - Use the following commands: sudo apt-get update sudo apt-get install apache2 Install MySQL - Use the following commands: sudo apt-get install mysql-server php5-mysql sudo mysql_install_db sudo mysql_secure_installation 6

8 - You will be asked to enter the password you set for the MySQL root account. Next, it will ask you if you want to change that password. If you are happy with your current password, type "n" for "no" at the prompt. - For the rest of the questions, you should simply hit the "ENTER" key through each prompt to accept the default values. This will remove some sample users and databases, disable remote root logins, and load these new rules so that MySQL immediately respects the changes we have made. - At this point, your database system is now set up and we can move on. Install PHP This is the P in a LAMP stack and means where almost done :) - Use the following commands: sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt - We have to Edit the file, Use the following commands: sudo nano /etc/apache2/mods-enabled/dir.conf It will look like this: <IfModule mod_dir.c> DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm </IfModule> - We want to move the index.php file highlighted above to the first position in the line, after the DirectoryIndex specification, to like this: <IfModule mod_dir.c> DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm </IfModule> 7

9 - Save and close the file by hitting Ctrl X and then Y. - Use the following commands to restart the server: sudo service apache2 restart Install PHP Modules (optional) - This is optional I didn t install anything, but Use the following commands and read the description to see if you want anything. apt-cache search php5- to install sudo apt-get install package1 package2...etc SETTING UP MYSQL DATABASE: - This is for the first website only, but Remember to write down somewhere each user and pass you create. - Use the following commands mysql -u root -p (choose a database name were it says name) CREATE DATABASE name; (choose a user name were it says user, type your pass were it says your password) CREATE USER user@localhost IDENTIFIED BY 'yourpassword'; GRANT ALL PRIVILEGES ON name of your database.* TO user@localhost; FLUSH PRIVILEGES; exit 8

10 Downloading WordPress: - Use the following commands; cd ~ wget tar xzvf latest.tar.gz sudo apt-get update sudo apt-get install php5-gd libssh2-php cd ~/wordpress cp wp-config-sample.php wp-config.php nano wp-config.php - MySQL settings - You can get this info from your web host - Type The name of the database for WordPress define('db_name', 'your database name here'); -Type your MySQL database username define('db_user', 'your user name here'); - Type you MySQL database password define('db_password', 'your password here'); - Now to Copy Files to the Document Root, Use the following commands: sudo rsync -avp ~/wordpress/ /var/www/html/ 9

11 - To Create directories for your other two other websites, they will be located in the following directory, cd /var/www/html/...so Use the following commands for the First Site; sudo mkdir /var/www/html/name of your 1st site/ Use the following commands for the second sudo mkdir /var/www/html/name of your 2nd site/ - We have to now give ownership to server, -see the guide for more info. Use the following commands; cd /var/www/html sudo chown -R user:www-data * mkdir /var/www/html/wp-content/uploads sudo chown -R :www-data /var/www/html/wp-content/uploads - In your web browser, navigate to your server's domain name or public IP address to see if it worked: IT WORKS! - Now to Configure Permalinks for WordPress: - We have to edit a file and change a few lines, Use the following commands sudo nano /etc/apache2/sites-available/000-default.conf <VirtualHost *:80> ServerAdmin your address here DocumentRoot /var/www/html 10

12 ServerName your website address here (no ServerAlias www. your web site address here.com <Directory /var/www/html/> AllowOverride All </Directory> - Save and exit the file. - Now Use the following commands; sudo a2enmod rewrite sudo service apache2 restart - We have to Create a.htaccess File, Use the following commands; touch /var/www/html/.htaccess sudo chown :www-data /var/www/html/.htaccess chmod 664 /var/www/html/.htaccess ALL DONE up to this point it is identical to the tutorials. SET UP FOR OTHER SITES Mysql : -Use the following commands mysql -u root -p 11

13 CREATE USER 1st website IDENTIFIED BY 'your pass'; CREATE USER 2nd website IDENTIFIED BY 'your pass'; CREATE DATABASE 1st website name; CREATE DATABASE 2nd website name; GRANT ALL PRIVILEGES ON 1st website name.* TO 1st website GRANT ALL PRIVILEGES ON 2nd website name.* TO 2nd website FLUSH PRIVILEGES; exit - Now Use the following commands; cd /var/www/html/ sudo mkdir 1st website name sudo mkdir 2nd website name cp ~/wordpress/wp-config-sample.php ~/wordpress/wp-config.php sudo rsync -avp ~/wordpress/ /var/www/html/1st website name/ sudo rsync -avp ~/wordpress/ /var/www/html/2nd website name/ sudo chown www-data:www-data * -R sudo usermod -a -G www-data linux_user_name 12

14 cd /var/www/html/1st website name sudo nano wp-config.php MySQL settings - Type The name of the database for WordPress define('db_name', '1st website name'); - Type MySQL database username define('db_user', 'your user name'); - Type MySQL database password define('db_password', 'your password'); cd /var/www/html/2nd website name sudo nano wp-config.php - Type The name of the database for WordPress define('db_name', '2nd website name'); define('db_user', 'your username'); define('db_password', 'your password'); sudo rsync -avp ~/wordpress/ /var/www/html/1st website name/ sudo rsync -avp ~/wordpress/ /var/www/html/2nd website name/ 13

15 [command rewrites Wordpress into directory each deleting settings] cd /var/www/html/1st website name/ sudo chown -R demo:www-data * cd /var/www/html/2nd website name/ sudo chown -R demo:www-data * cd /var/www/html/1st website name/ mkdir /var/www/html/1st website name/wp-content/uploads sudo chown -R :www-data /var/www/html/1st website name/wp-content/uploads cd /var/www/html/2nd website name/ mkdir /var/www/html/2nd website name/wp-content/uploads sudo chown -R :www-data /var/www/html/2nd website name/wp-content/uploads SETUP IS COMPLETE TEST AFTER VPS SETUP - Granting Permissions: sudo chown -R $USER:$USER /var/www/html/1st website name/ sudo chown -R $USER:$USER /var/www/html/2nd website name/ sudo chmod -R 755 /var/www/html 14

16 - Creating New Virtual Host Files: sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/1st website name.conf sudo nano /etc/apache2/sites-available/1st website name.conf <VirtualHost *:80> ServerAdmin your address DocumentRoot /var/www/html/1st website name/ ServerName 1st website name.com (no ServerAlias www. 1st website name. com <Directory /var/www/html/1st website name > AllowOverride All </Directory> - For the second Website; sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/2nd website name.conf sudo nano /etc/apache2/sites-available/2nd website name.conf <VirtualHost *:80> ServerAdmin your address DocumentRoot /var/www/html/2nd website name/ ServerName 2nd website name.com 15

17 ServerAlias www. 2nd website name. com <Directory /var/www/html/> AllowOverride All </Directory> - Save and Exit then use the following command sudo a2enmod 1st website name.conf rewrite sudo service apache2 restart sudo a2ensite 1st website name.conf sudo service apache2 restart sudo a2ensite 2nd website name.conf sudo service apache2 restart Wordpress Uploads: - In order for uploads to work on the other two websites, you have to give permission to www-data, the apache user, so Wordpress can write to your directories, it can t be your own user root or your user name. sudo chown -R www-data:www-data /var/www/html/your yoursite2/ sudo chown -R www-data:www-data /var/www/html/your website3/ 16

18 - If you ever need to work on files in these directories and you don t have permission to do so you have to switch it back to the root username or your user and when your done switch it back to www-data, the Apache user for Wordpress to use the directories again. This is done by substituting www-data for root in the following command; sudo chown -R root:root /var/www/html/site3/ [ The command used to look like this, sudo chown -R www-data:www-data] INCREASING THE WORDPRESS UPLOAD SIZE: - Otherwise you cant upload good themes and other apps and files. -We have to Edit a very, very lengthy file by using the following command; sudo nano /etc/php5/apache2/php.ini - Edit the file In this order Under Resource Limits change max_execution_time to = 300 Under Data Handling increase Max post size from 8M to 100M or anything you like. Now Under FILE UPLOADS look for upload_max_filesize = 2M text and replace it with upload_max_filesize = 1000M or anything else you wish. 17

19 - Save and exit the file, by hitting ctrl x, press y, then hit return. - Restart your Apache 2 server using following command sudo service apache2 restart WE ARE ALL DONE 18

20 RESOURCES The tutorial is a little rough in some places but i used some of the following resources to write it which you may find helpful: How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Ubuntu nux-apache-mysql-php-lamp-stack-on-ubuntu How To Set Up Apache Virtual Hosts on Ubuntu LTS How To Set Up Multiple WordPress Sites on a Single Ubuntu VPS How To Configure the Apache Web Server on an Ubuntu or Debian VPS 19

21 untu-or-debian-vps How To Optimize Apache Web Server Performance How To Install and Configure Varnish with Apache on Ubuntu n-ubuntu DNS 1. An Introduction to DNS Terminology, Components, and Concepts 2. A Comparison of DNS Server Types: How To Choose the Right DNS Configuration 3. How To Set Up a Host Name with DigitalOcean 4. How To Configure Bind as a Caching or Forwarding DNS Server on Ubuntu How To Configure Bind as an Authoritative-Only DNS Server on Ubuntu How To Configure BIND as a Private Network DNS Server on Ubuntu How To Use NSD, an Authoritative-Only DNS Server, on Ubuntu d-concepts How To Set Up and Test DNS Subdomains with DigitalOcean's DNS Panel alocean-s-dns-panel DNS Tips and Tricks How To Configure DNS Round-Robin Load-Balancing For High-Availability How To Use Dig, Whois, & Ping on an Ubuntu VPS to Query DNS Data 20

22 ery-dns-data How To Set Up and Test DNS Subdomains with DigitalOcean's DNS Panel How To Set Up and Test DNS Subdomains with DigitalOcean's DNS Panel Pasted from < 21

We want to install putty, an ssh client on the laptops. In the web browser goto:

We want to install putty, an ssh client on the laptops. In the web browser goto: We want to install putty, an ssh client on the laptops. In the web browser goto: www.chiark.greenend.org.uk/~sgtatham/putty/download.html Under Alternative binary files grab 32 bit putty.exe and put it

More information

Observium Enable your new virtual host 4

Observium Enable your new virtual host 4 Observium Contents 1 Introduction 1 1.1 Goals................................. 1 1.2 Notes................................. 1 2 Observium installation 2 2.1 1. Installation based on offical instructions.............

More information

ViMP 2.0. Installation Guide. Verfasser: ViMP GmbH

ViMP 2.0. Installation Guide. Verfasser: ViMP GmbH ViMP 2.0 Installation Guide Verfasser: ViMP GmbH Table of contents About this document... 3 Prerequisites... 4 Preparing the server... 5 Apache2... 5 PHP... 5 MySQL... 5 Transcoding... 6 Configuration...

More information

شرکت توسعه ارتباطات پردیس پارس. owncloud. The last file sharing platform you'll ever need

شرکت توسعه ارتباطات پردیس پارس. owncloud. The last file sharing platform you'll ever need شرکت توسعه ارتباطات پردیس پارس owncloud The last file sharing platform you'll ever need. Explore the Features: Click Sync and Share Your Data, with Ease A Safe Home for All Your Data Your Data is Where

More information

Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance

Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance What is OVH Public Cloud Public Cloud Instances provides a choice of two types of virtual machines: the RAM instances are

More information

Apache MySQL PHP PHPAdmin Install

Apache MySQL PHP PHPAdmin Install Apache MySQL PHP PHPAdmin Install Installing Apache 2 To only install the apache2 webserver, use any method to install apache2 It requires a restart for it to work sudo /etc/init.d/apache2 restart Checking

More information

Install WordPress 3.X In Multi Blog / Multi user mode On localhost

Install WordPress 3.X In Multi Blog / Multi user mode On localhost Install WordPress 3.X In Multi Blog / Multi user mode On localhost In this tutorial, we will cover how to setup WordPress as a Multi User /Multi Blog. We ll start by downloading and installing a new version

More information

L.A.M.P. Stack Part I

L.A.M.P. Stack Part I L.A.M.P. Stack Part I By George Beatty and Matt Frantz This lab will cover the basic installation and some configuration of a LAMP stack on a Ubuntu virtual box. Students will download and install the

More information

BitcoinMonster Masternode Linux VPS Tutorial - Vultr VPS Created By : Samshak Donet Mon: MKX8PFz1uvBkwNDTXtUuj6KinudhsKZh1K

BitcoinMonster Masternode Linux VPS Tutorial - Vultr VPS Created By : Samshak Donet Mon: MKX8PFz1uvBkwNDTXtUuj6KinudhsKZh1K BitcoinMonster Masternode Linux VPS Tutorial - Vultr VPS Created By : Samshak Donet Mon: MKX8PFz1uvBkwNDTXtUuj6KinudhsKZh1K Step 1 Download, install and sync latest BitcoinMonster Windows s wallet on both

More information

Kollaborate Server. Installation Guide

Kollaborate Server. Installation Guide 1 Kollaborate Server Installation Guide Kollaborate Server is a local implementation of the Kollaborate cloud workflow system that allows you to run the service in-house on your own server and storage.

More information

Masternode Setup Guide

Masternode Setup Guide Masternode Setup Guide What this guide is This guide is aimed at anyone who wants to run a Reliance masternode on an Ubuntu 16.04 VPS. What this guide is not A tutorial for linux. What I mean by that,

More information

Below are the steps to install Orangescrum Self Hosted version of Cloud Edition in Ubuntu Server Last Updated: OCT 18, 2018

Below are the steps to install Orangescrum Self Hosted version of Cloud Edition in Ubuntu Server Last Updated: OCT 18, 2018 Below are the steps to install Orangescrum Self Hosted version of Cloud Edition in Ubuntu Server Last Updated: OCT 18, 2018 Step 1 Download the Orangescrum Self Hosted version of CloudEdition Extract the

More information

Setting up a Chaincoin Masternode

Setting up a Chaincoin Masternode Setting up a Chaincoin Masternode Introduction So you want to set up your own Chaincoin Masternode? You ve come to the right place! These instructions are correct as of April, 2017, and relate to version

More information

Topics. What is a RaspberryPi? Why should I want one? What is Raspbian? What is SSH? What is FTP? What is LAMP? Making a LAMP Stack!

Topics. What is a RaspberryPi? Why should I want one? What is Raspbian? What is SSH? What is FTP? What is LAMP? Making a LAMP Stack! Topics What is a RaspberryPi? Why should I want one? What is Raspbian? What is SSH? What is FTP? What is LAMP? Making a LAMP Stack! What is a Raspberry Pi? The Raspberry Pi is a Credit Card sized computer.

More information

BitcoinGenX Masternode Setup Tutorial

BitcoinGenX Masternode Setup Tutorial BitcoinGenX Masternode Setup Tutorial BEFORE YOU CONTINUE WITH THE FOLLOWING TUTORIAL PLEASE MAKE SURE YOU HAVE AN UBNUTU 16.04 X64 LINUX SERVER WHICH YOU CAN BUY FROM DIGITAL OCEAN OR VULTR OTHER PLACES

More information

Cacti monitoring tool

Cacti monitoring tool Cacti monitoring tool Cacti is a web-based monitoring tool designed for easy-to-use front-end for the data logging software using RRDTool. It allows users to monitor services at regular interval of time

More information

How to set up a WordPress Website on Amazon Web Services (AWS)

How to set up a WordPress Website on Amazon Web Services (AWS) How to set up a WordPress Website on Amazon Web Services (AWS) TEXT-ONLY GUIDE Joseph Spurrier josephspurrier.com November 1, 2014 v 1.0 Table of Contents 1 Abstract... 3 2 Overview... 3 3 Pricing... 3

More information

Installing MediaWiki using VirtualBox

Installing MediaWiki using VirtualBox Installing MediaWiki using VirtualBox Install VirtualBox with your package manager or download it from the https://www.virtualbox.org/ website and follow the installation instructions. Load an Image For

More information

CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS

CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS This tutorial shows the steps required to setup your Crowdcoin Masternode on a Linux server and run your wallet on a Windows operating system

More information

This guide assumes that you are setting up a masternode for the first time. You will need:

This guide assumes that you are setting up a masternode for the first time. You will need: KRT MN Guide Setting up a masternode requires a basic understanding of Linux and blockchain technology, as well as the ability to follow instructions closely. It also requires regular maintenance and careful

More information

How to force automatic removal of deleted files in nextcloud

How to force automatic removal of deleted files in nextcloud How to force automatic removal of deleted files in nextcloud Nextcloud will get rid of files that have been deleted for 30 days. However in reality these files will remain on the server until such a time

More information

AWS/LAMP/Wordpress/Bootstrap Extravaganza. I am determined to make this shit fun.

AWS/LAMP/Wordpress/Bootstrap Extravaganza. I am determined to make this shit fun. AWS/LAMP/Wordpress/Bootstrap Extravaganza I am determined to make this shit fun. Agenda What is AWS? Launch your instance Deploy LAMP stack Install Wordpress Bootstrap it Q&A What is AWS? Amazon Web Services

More information

Apache Manual Install Ubuntu Php Mysql. Phpmyadmin No >>>CLICK HERE<<<

Apache Manual Install Ubuntu Php Mysql. Phpmyadmin No >>>CLICK HERE<<< Apache Manual Install Ubuntu Php Mysql Phpmyadmin No Ubuntu 14.10 LAMP server tutorial with Apache 2, PHP 5 and MySQL (MariaDB) Additionally, I will install phpmyadmin to make MySQL administration easier.

More information

Installing Open Project on Ubuntu AWS with Apache and Postgesql

Installing Open Project on Ubuntu AWS with Apache and Postgesql Installing Open Project on Ubuntu AWS with Apache and Postgesql Contents Installing Open Project on Ubuntu AWS with Apache and Postgesql... 1 Add new ports to your security group... 2 Update your system...

More information

Tungsten Dashboard for Clustering. Eric M. Stone, COO

Tungsten Dashboard for Clustering. Eric M. Stone, COO Tungsten Dashboard for Clustering Eric M. Stone, COO In this training session 1. Tungsten Dashboard Welcome 2. Tungsten Dashboard Overview 3. Tungsten Dashboard Prerequisites 4. Tungsten Dashboard Security

More information

2. Installing OpenBiblio 1.0 on a Windows computer

2. Installing OpenBiblio 1.0 on a Windows computer Table of Contents Installing OpenBiblio 1. System requirements... 1 2. Installing OpenBiblio 1.0 on a Windows computer... 1 2.1. Install prerequisite software... 1 2.2. Install OpenBiblio... 2 2.3. Using

More information

Bitnami Ruby for Huawei Enterprise Cloud

Bitnami Ruby for Huawei Enterprise Cloud Bitnami Ruby for Huawei Enterprise Cloud Description Bitnami Ruby Stack provides a complete development environment for Ruby on Rails that can be deployed in one click. It includes most popular components

More information

CazCoin VPS Masternode Setup May 2018

CazCoin VPS Masternode Setup May 2018 VPS Masternode Setup May 2018 VPS Masternode Setup May 2018 Contents 1. Introduction... 3 2. Requirements... 3 3. Block Rewards?... 4 4. VPS Preparation... 4 5. Local Wallet Setup... 5 6. Edit Local Config

More information

CazCoin VPS Masternode Setup December 2018

CazCoin VPS Masternode Setup December 2018 Contents 1. Introduction... 3 2. Requirements... 3 3. VPS Preparation... 4 4. Local Wallet Setup... 4 5. Edit Local Configuration Files... 6 6. VPS Setup... 7 7. Starting the Masternode... 10 8. Wallet

More information

Bitnami HHVM for Huawei Enterprise Cloud

Bitnami HHVM for Huawei Enterprise Cloud Bitnami HHVM for Huawei Enterprise Cloud Description HHVM is an open source virtual machine designed for executing programs written in Hack and PHP. HHVM uses a just-in-time (JIT) compilation approach

More information

How To Start Mysql Using Linux Command Line Client In Ubuntu

How To Start Mysql Using Linux Command Line Client In Ubuntu How To Start Mysql Using Linux Command Line Client In Ubuntu Step One: Install MySQL Client On Debian, Ubuntu or Linux Mint: Before you start typing commands at the MySQL prompt, remember that each In

More information

TZC WALLET + HEADLESS WALLET ON LINUX. Local Wallet + PoS Headless Wallet on VPS (Ubuntu 16.04)

TZC WALLET + HEADLESS WALLET ON LINUX. Local Wallet + PoS Headless Wallet on VPS (Ubuntu 16.04) TZC WALLET + HEADLESS WALLET ON LINUX Local Wallet + PoS Headless Wallet on VPS (Ubuntu 16.04) What you need: a - A local computer running under Ubuntu 16.04 b - A remote server (Virtual Private Network,

More information

Buzztouch Server 2.0 with Amazon EC2

Buzztouch Server 2.0 with Amazon EC2 Buzztouch Server 2.0 with Amazon EC2 This is for those that want a step by step instructions on how to prepare an Amazon's EC2 instance for the Buzztouch server. This document only covers the amazon EC2

More information

How to Make a Raspberry Pi Web Server

How to Make a Raspberry Pi Web Server 2 Ways to Make a Raspberry Pi Web Server - wikihow http://www.wikihow.com/make-a-raspberry-pi-web-server of 5 08/5/203 :3 AM How to Make a Raspberry Pi Web Server If you are looking for a way to make a

More information

A PAtCHy server: developed by the Apache group formed 2/95 around by a number of people who provided patch files for NCSA httpd 1.3 by Rob McCool.

A PAtCHy server: developed by the Apache group formed 2/95 around by a number of people who provided patch files for NCSA httpd 1.3 by Rob McCool. Outline q Introduction to Apache httpd web server q Basic Compilation, Installation and Configuration q Apache File system q Apache Logging & Status q Security & Performance Features q Virtual Hosting

More information

Step 1 - Install Apache and PostgreSQL

Step 1 - Install Apache and PostgreSQL How to install OTRS (Open Source Trouble Ticket System) on Ubuntu 16.04 Prerequisites Ubuntu 16.04. Min 2GB of Memory. Root privileges. Step 1 - Install Apache and PostgreSQL In this first step, we will

More information

CTEC1863/2017F Lab #11, Part 1 Page 1 of 11. In this lab, we will be installing a popular solution for database-driven web sites.

CTEC1863/2017F Lab #11, Part 1 Page 1 of 11. In this lab, we will be installing a popular solution for database-driven web sites. CTEC1863/2017F Lab #11, Part 1 Page 1 of 11 Lab #11: LAMP In this lab, we will be installing a popular solution for database-driven web sites. This configuration is known as LAMP, an acronym standing for

More information

Apache + PHP + MySQL. bdnog November 2017 Dhaka, Bangladesh

Apache + PHP + MySQL. bdnog November 2017 Dhaka, Bangladesh Apache + PHP + MySQL bdnog7 18-22 November 2017 Dhaka, Bangladesh Outline q Introduction to Apache httpd web server q Basic Compilation, Installation and Configuration q Apache File system q Apache Logging

More information

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ control wallet on local PC (Windows)

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ control wallet on local PC (Windows) Masternode Guide #1 Single masternode on Linux VPS (Ubuntu)+ control wallet on local PC (Windows) Prerequisites: a - A remote server (Virtual Private Server, VPS) which will be our masternode wallet. b

More information

Managing Xen With Xen-Tools, Xen-Shell, And Argo

Managing Xen With Xen-Tools, Xen-Shell, And Argo By Falko Timme Published: 2006-10-21 20:35 Managing Xen With Xen-Tools, Xen-Shell, And Argo Version 1.0 Author: Falko Timme Last edited 10/21/2006 This guide describes how

More information

OpenEMR INSTALLATION AND UPGRADE Quick guide

OpenEMR INSTALLATION AND UPGRADE Quick guide OpenEMR INSTALLATION AND UPGRADE Quick guide Preliminary documentation September 2 nd, 2009 Updated February 1 st, 2010 Amended on July 13 th, 2010 Amended September 22, 2010 Page 1 of 19 Preliminary notes

More information

If you re the administrator on any network,

If you re the administrator on any network, Let s do an inventory! If you re the administrator on any network, chances are you ve already faced the need to make an inventory. In fact, keeping a list of all the computers, monitors, software and other

More information

Beetle Coin Masternodes Guide

Beetle Coin Masternodes Guide Beetle Coin Masternodes Guide Beetles, Indomitable Creatures. What you need: 1-More than 50,000 BEET. 2-One computer with Beetle-qt wallet installed.(put more than 50,000 BEET in this wallet) 3-One VPS.

More information

Install some base packages. I recommend following this guide as root on a new VPS or using sudo su, it will make running setup just a touch easier.

Install some base packages. I recommend following this guide as root on a new VPS or using sudo su, it will make running setup just a touch easier. Nagios 4 on Ubuntu 16 Install some base packages. I recommend following this guide as root on a new VPS or using sudo su, it will make running setup just a touch easier. apt-get install php-gd build-essential

More information

MASTERNODE Setup Guide

MASTERNODE Setup Guide MASTERNODE Setup Guide Version 1.0 February 2018 Page 1 / 13 Table of Contents Table of Contents... 2 Linux Setup... 3 Prerequisites... 3 Updates and dependencies... 3 Building the wallet... 4 Starting

More information

INTRODUCTION. To avoid the PHP7 conflicts use this OS image: STEP 1 - Parts List:

INTRODUCTION. To avoid the PHP7 conflicts use this OS image:   STEP 1 - Parts List: INTRODUCTION These are enhanced instruction set to install RaspberryPints on a Raspberry Pi 2 Model B with use of an AlaMode card and Flow Meters from AdaFruit.com. I started with instruction set here:

More information

Illustrated Steps to create greggroeten.net with AWS

Illustrated Steps to create greggroeten.net with AWS Illustrated Steps to create greggroeten.net with AWS Screenshots of each step Table of Contents 1. CREATE VPC 10.10.0/16.... 3 2. CREATE 1 PUBLIC SUBNET IN DEFAULT AZ, EX BELOW... 4 3. CREATE IGW, ATTACH

More information

How To Start Mysql Use Linux Command Line Client In Ubuntu

How To Start Mysql Use Linux Command Line Client In Ubuntu How To Start Mysql Use Linux Command Line Client In Ubuntu Getting started with MySQL for web and server applications on Ubuntu 14.04 LTS (Trusty Tahr). get started with MySQL on an Ubuntu 14.04 LTS (Trusty

More information

Installing LAMP on Ubuntu and (Lucid Lynx, Maverick Meerkat)

Installing LAMP on Ubuntu and (Lucid Lynx, Maverick Meerkat) Installing LAMP on Ubuntu 10.04 and 10.10 (Lucid Lynx, Maverick Meerkat) April 29, 2010 by Linerd If you're developing websites, it's nice to be able to test your code in the privacy of your own computer

More information

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version... Contents Note: pay attention to where you are........................................... 1 Note: Plaintext version................................................... 1 Hello World of the Bash shell 2 Accessing

More information

Setting Up PHPlist (Open-Source Newsletter Manager)

Setting Up PHPlist (Open-Source Newsletter Manager) By Oliver Meyer Published: 2008-05-25 18:48 Setting Up PHPlist (Open-Source Newsletter Manager) Version 1.0 Author: Oliver Meyer Last edited 04/23/2008 This document

More information

Installing OptiRain Open on Raspbian

Installing OptiRain Open on Raspbian QUICKSMART Installing OptiRain Open on Raspbian QuickSmart Development P.O. Box 3689 Santa Clara, CA 95055 408-777-0944 www.quicksmart.com This document shows how to install OptiRain Open 2 on a Raspberry

More information

Installing PHP on Windows 10 Bash and Starting a Local Server

Installing PHP on Windows 10 Bash and Starting a Local Server Installing PHP on Windows 10 Bash and Starting a Local Server Bash on Ubuntu/Windows is a way to use a command line to run all kinds of programs (including git!). But we ll want a Bash terminal to run

More information

Complete Guide to Setting Up Linda on Ubuntu 16 For Staking

Complete Guide to Setting Up Linda on Ubuntu 16 For Staking Complete Guide to Setting Up Linda on Ubuntu 16 For Staking By Chris T. aka lagwag0n Join Us on Discord: https://discord.gg/8evurqx Table of Contents: 1. Introduction 2. Purchasing a VPS from Vultr 3.

More information

Linux Systems Administration Getting Started with Linux

Linux Systems Administration Getting Started with Linux Linux Systems Administration Getting Started with Linux Network Startup Resource Center www.nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International

More information

Linux Network Administration. Apache Web Server COMP1071 Summer 2017

Linux Network Administration. Apache Web Server COMP1071 Summer 2017 Linux Network Administration Apache Web Server COMP1071 Summer 2017 Overview Apache2 is a software package which provides the infrastructure to deliver web services It is flexible, fast, open source, scalable,

More information

SUB1X Masternode Setup Guide: LINUX Version

SUB1X Masternode Setup Guide: LINUX Version SUB1X Masternode Setup Guide: LINUX Version What you will need for this guide: 1) Local computer with Windows, MacOS or Linux. 2) Remote server VPS [Vultr.com or AWS for instance] 3) PuTTY to configure

More information

SCRIV NETWORK COLD WALLET MASTERNODE SETUP GUIDE DETAILED

SCRIV NETWORK COLD WALLET MASTERNODE SETUP GUIDE DETAILED SCRIV NETWORK MASTERNODE SETUP GUIDE COLD WALLET DETAILED March, 2018 Table of Contents Requirements for running SCRIV cold wallet masternode on Linux VPS: 3 Setup Linux-based VPS... 3 1. Install SCRIV

More information

Installing WordPress CMS

Installing WordPress CMS Installing WordPress CMS Extract the contents of the wordpress zip file to D:/public_html/wordpress folder as shown in diagram 1. D:/public_html/wordpress is a virtual domain controlled by Apache Web server

More information

#Uncomment the second line to enable any form of FTP write command. #write_enable=yes

#Uncomment the second line to enable any form of FTP write command. #write_enable=yes Installing and configuring Apache 2 in Linux Please note that dashes (-) are used to indicate what you should type, they should not be included in the command. Install Linux on an old desktop, dual core

More information

LOCAL WALLET (COLD WALLET):

LOCAL WALLET (COLD WALLET): This tutorial will teach you how to create a masternode with a "cold/hot" setup. The whole process is as follows. LOCAL WALLET (COLD WALLET): Visit TRAID platform s official repository on GitHub and download

More information

VPS SETUP: What is a VPS? A VPS is a cloud server, running on a virtual machine. You can t run a masternode on your computer itself.

VPS SETUP: What is a VPS? A VPS is a cloud server, running on a virtual machine. You can t run a masternode on your computer itself. Our guide makes it easy to set up your own masternode! BEFORE YOU BEGIN, YOU WILL NEED: 1. 1,000 SUPPO s 2. The latest SuppoCoin wallet, which can always be found here: https://www.suppocoin.io 3. Two

More information

How To Start Mysql Use Linux Command Line Client In Xampp

How To Start Mysql Use Linux Command Line Client In Xampp How To Start Mysql Use Linux Command Line Client In Xampp It also assumes that you're familiar with the MySQL command-line client and that you And since both Amazon and Bitnami have a free tier, you can

More information

CSCI 201 Lab 1 Environment Setup

CSCI 201 Lab 1 Environment Setup CSCI 201 Lab 1 Environment Setup "The journey of a thousand miles begins with one step." - Lao Tzu Introduction This lab document will go over the steps to install and set up Eclipse, which is a Java integrated

More information

OptiRain Open 2 Installation Guide for LInux. This guide provides general instructions for installing OptiRain Open 2 on a Linux based server.

OptiRain Open 2 Installation Guide for LInux. This guide provides general instructions for installing OptiRain Open 2 on a Linux based server. QUICKSMART OptiRain Open 2 Installation Guide for LInux QuickSmart Development P.O. Box 3689 Santa Clara, CA 95055 408-777-0944 www.quicksmart.com This guide provides general instructions for installing

More information

Linux Essentials Objectives Topics:

Linux Essentials Objectives Topics: Linux Essentials Linux Essentials is a professional development certificate program that covers basic knowledge for those working and studying Open Source and various distributions of Linux. Exam Objectives

More information

Everything about Linux User- and Filemanagement

Everything about Linux User- and Filemanagement Everything about Linux User- and Filemanagement Lukas Prokop 20. April 2009 Inhaltsverzeichnis 1 Who I am 2 1.1 whoami..................................... 3 1.2 passwd......................................

More information

Bitnami ez Publish for Huawei Enterprise Cloud

Bitnami ez Publish for Huawei Enterprise Cloud Bitnami ez Publish for Huawei Enterprise Cloud Description ez Publish is an Enterprise Content Management platform with an easy to use Web Content Management System. It includes role-based multi-user access,

More information

SO, ARE YOU READY? HERE WE GO:

SO, ARE YOU READY? HERE WE GO: Date: 28/09/2012 Procedure: How To Move WordPress To A New Server Or Host Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 HOW TO MOVE WORDPRESS TO A NEW SERVER OR HOST It

More information

Lab Authentication, Authorization, and Accounting

Lab Authentication, Authorization, and Accounting Objectives Given a scenario, select the appropriate authentication, authorization, or access control Install and configure security controls when performing account management, based on best practices

More information

Bitnami Coppermine for Huawei Enterprise Cloud

Bitnami Coppermine for Huawei Enterprise Cloud Bitnami Coppermine for Huawei Enterprise Cloud Description Coppermine is a multi-purpose, full-featured web picture gallery. It includes user management, private galleries, automatic thumbnail creation,

More information

Manually Password Protect Directories Apache Ubuntu

Manually Password Protect Directories Apache Ubuntu Manually Password Protect Directories Apache Ubuntu Apache can be configured to force users to login before being Password protection can be useful for securing a directory that planning to edit them manually,

More information

Magento Image Guide Page 1 of 23

Magento Image Guide Page 1 of 23 Magento Image Guide Page 1 of 23 Magento Image Guide Page 2 of 23 Magento Image Guide Page 3 of 23 : mysql -uroot p : MySQL [(none)]> create database mydbname; MySQL [(none)]> show databases; Magento Image

More information

CIS 76 Ethical Hacking Building an open source Pentest Sandbox, carrying out a Remote Code Execution exploit, and Remediating the RCE vulnerability.

CIS 76 Ethical Hacking Building an open source Pentest Sandbox, carrying out a Remote Code Execution exploit, and Remediating the RCE vulnerability. CIS 76 Ethical Hacking Building an open source Pentest Sandbox, carrying out a Remote Code Execution exploit, and Remediating the RCE vulnerability. Ryan Borden December 3, 2017 Contact: ryanborden81@gmail.com

More information

The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN).

The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN). Set the Hostname Before you begin installing and configuring the components described in this guide, please make sure you've followed our instructions for setting your hostname. Issue the following commands

More information

Bitnami Moodle for Huawei Enterprise Cloud

Bitnami Moodle for Huawei Enterprise Cloud Bitnami Moodle for Huawei Enterprise Cloud Description Moodle is a Course Management System that is designed using sound pedagogical principles to help educators create effective online learning communities.

More information

Install Guides. Automated Compiler Cold Node (Linux VPS) Absolute. Proof of View

Install Guides. Automated Compiler Cold Node (Linux VPS) Absolute. Proof of View Install Guides Automated Compiler Cold Node (Linux VPS) Absolute. Proof of View Automated Compiler Cold Node Masternode - Linux VPS Cold Node Masternode A Masternode runs on another computer (VPS) which

More information

WA2572 Introduction to Responsive Web Development for Mac. Classroom Setup Guide. Web Age Solutions Inc.

WA2572 Introduction to Responsive Web Development for Mac. Classroom Setup Guide. Web Age Solutions Inc. WA2572 Introduction to Responsive Web Development for Mac Classroom Setup Guide Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software Requirements...3

More information

GMU Specifications And Installation Procedures Page 1 04/04/08. JBM Gateway Management Utility Server Specifications And Installation Procedures

GMU Specifications And Installation Procedures Page 1 04/04/08. JBM Gateway Management Utility Server Specifications And Installation Procedures And Installation Procedures Page 1 04/04/08 JBM Gateway Management Utility Server Specifications And Installation Procedures And Installation Procedures Page 2 04/04/08 GMU Specifications... 3 Recommended

More information

Installation Manual InfraManage.NET Installation Instructions for Ubuntu

Installation Manual InfraManage.NET Installation Instructions for Ubuntu Installation Manual InfraManage.NET Installation Instructions for Ubuntu Copyright 1996 2017 Timothy Ste. Marie Version 7.5.72SQL InfraManage.NET Installing InfraManage.NET Page 1 of 78 Table of Contents

More information

Bitnami Pimcore for Huawei Enterprise Cloud

Bitnami Pimcore for Huawei Enterprise Cloud Bitnami Pimcore for Huawei Enterprise Cloud Description Pimcore is the open source platform for managing digital experiences. It is the consolidated platform for web content management, product information

More information

KOHA UBUNTU In Compatible With. 1 P a g e

KOHA UBUNTU In Compatible With. 1 P a g e KOHA In Compatible With UBUNTU 14.04.4 1 P a g e http://wasimrlis.blogspot.in https://coprofessionals.wordpress.com 2 P a g e Koha is an open source Integrated Library System (ILS), used world-wide. The

More information

CherryPy on Apache2 with mod_python

CherryPy on Apache2 with mod_python Revision History CherryPy on Apache2 with mod_python Revision 1.5 November 9, 2009 Revised by: FB Ferry Boender 1. Introduction I ve recently written a web application using Python using the following

More information

Bitnami OroCRM for Huawei Enterprise Cloud

Bitnami OroCRM for Huawei Enterprise Cloud Bitnami OroCRM for Huawei Enterprise Cloud Description OroCRM is a flexible open-source CRM application. OroCRM supports your business no matter the vertical. If you are a traditional B2B company, franchise,

More information

Digital Free Library. Created by Kirby Griese. Last updated on :35:15 PM UTC

Digital Free Library. Created by Kirby Griese. Last updated on :35:15 PM UTC Digital Free Library Created by Kirby Griese Last updated on 2018-01-04 04:35:15 PM UTC Guide Contents Guide Contents Overview Parts Needed Preparation Prepare Micro SD Card Install Apache Configure Access

More information

Adding a Admin account to Wordpress database

Adding a Admin account to Wordpress database Copyright 2016 TBehr Services LLC Adding a Admin account to Wordpress database TBEHR Services, LLC (Software) Version 1..0 AUTHOR: TERRENCE BEHRENS COPYRIGHT 2014 TBEHR SERVICES LLC MODIFIED: 5/5/2016

More information

Stats of Web Server types

Stats of Web Server types APACHE HTTP SERVER About Apache Apache http server project http://httpd.apache.org Apache foundation started to support the web server project, but now extends to a multitude of other projects. Stats of

More information

Rover Coin. Hot Cold Wallet Masternode VPS setup Guide

Rover Coin. Hot Cold Wallet Masternode VPS setup Guide Rover Coin Hot Cold Wallet Masternode VPS setup Guide 2018.03.07 1 Contents 1. Windows cold wallet guide... 3 1.1 Download the latest Rover windows wallet.... 3 1.2 How to make your own Rover address.....

More information

How To Clone, Backup & Move Your WordPress Blog! Step By Step Guide by Marian Krajcovic

How To Clone, Backup & Move Your WordPress Blog! Step By Step Guide by Marian Krajcovic How To Clone, Backup & Move Your WordPress Blog! Step By Step Guide by Marian Krajcovic 2010 Marian Krajcovic You may NOT resell or giveaway this ebook! 1 If you have many WordPress blogs and especially

More information

LINUX VPS GUIDE. Pre-requisites: (this guide assumes you are using windows)

LINUX VPS GUIDE. Pre-requisites: (this guide assumes you are using windows) LINUX VPS GUIDE Pre-requisites: (this guide assumes you are using windows) Philscurrency Wallet Download PHILS wallet if you don t have already from the link below https://github.com/philscurrency/philscurrency/releases/download/v1.2/phils

More information

Install and make Apache + PHP to work with PosgreSQL database server on Debian Linux and set up server Web Posgre interface Pgpadmin howto

Install and make Apache + PHP to work with PosgreSQL database server on Debian Linux and set up server Web Posgre interface Pgpadmin howto Install and make Apache + PHP to work with PosgreSQL database server on Debian Linux and set up server Web Posgre interface Pgpadmin howto Author : admin In previous article I've wrote on how to install

More information

Physics REU Unix Tutorial

Physics REU Unix Tutorial Physics REU Unix Tutorial What is unix? Unix is an operating system. In simple terms, its the set of programs that makes a computer work. It can be broken down into three parts. (1) kernel: The component

More information

macos High Sierra Apache Setup: Multiple PHP Versions First part in a multi-part blog series for Mac developers

macos High Sierra Apache Setup: Multiple PHP Versions First part in a multi-part blog series for Mac developers macos 10.13 High Sierra Apache Setup: Multiple PHP Versions First part in a multi-part blog series for Mac developers Andy Miller posted on 10/22/2017 in macos + sierra + apache + homebrew + php 14 mins

More information

How to Create a NetBeans PHP Project

How to Create a NetBeans PHP Project How to Create a NetBeans PHP Project 1. SET UP PERMISSIONS FOR YOUR PHP WEB SITE... 2 2. CREATE NEW PROJECT ("PHP APPLICATION FROM REMOTE SERVER")... 2 3. SPECIFY PROJECT NAME AND LOCATION... 2 4. SPECIFY

More information

Masternode Setup Guide Local Wallet with VPS Server

Masternode Setup Guide Local Wallet with VPS Server Masternode Setup Guide Local Wallet with VPS Server What you will need: 1) Local computer windows 7-10 2) Remote server VPS [vultr.com] 3) PuTTY to configure and setup VPS 4) 10,000 PHR If you would like

More information

CustomLog /var/www/vhosts/example.com/statistics/logs/access_log common

CustomLog /var/www/vhosts/example.com/statistics/logs/access_log common All steps as root, unless mentioned otherwise. First of all, configure your Apache server to use combined, instead of common as log format, in /etc/httpd/conf/httpd.conf. In Section 1: CustomLog logs/access_log

More information

Ubuntu Practice and Configuration Post Installation Exercises interlab at AIT Bangkok, Thailand

Ubuntu Practice and Configuration Post Installation Exercises interlab at AIT Bangkok, Thailand Ubuntu Practice and Configuration Post Installation Exercises interlab at AIT Bangkok, Thailand 1. Get used to using sudo 2. Create an inst account 3. Learn how to install software 4. Update /etc/apt/sources.list

More information

Lab 2A> ADDING USERS in Linux

Lab 2A> ADDING USERS in Linux Lab 2A> ADDING USERS in Linux Objective In this lab, student will learn how to create user accounts using the Linux operating system. Scenario The XYZ Company has just installed a server running Linux.

More information

Installing Oxwall completely in Amazon Cloud

Installing Oxwall completely in Amazon Cloud Contents Installing Oxwall completely in Amazon Cloud... 1 PART 1 Creating AWS Instance... 1 Section 1 Security Group... 1 Section 2 - A LAMP-friendly instance... 2 Section 3 - The Elastic IP... 5 PART

More information

EX200 Q&A. DEMO Version

EX200 Q&A. DEMO Version Red Hat Certified System Administrator (RHCSA) Exam Q&A DEMO Version Copyright (c) 2015 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration purpose only, this free

More information