<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" version="2.0">

<channel>
	<title>Ubuntu Server Guide</title>
	<atom:link href="https://ubuntuserverguide.com/feed" rel="self" type="application/rss+xml"/>
	<link>https://ubuntuserverguide.com</link>
	<description>Ubuntu Server Guide: Contain About Ubuntu Server Guide, Tutorial, Setup and Configuration</description>
	<lastBuildDate>Fri, 22 May 2015 22:50:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.6</generator>
	<itunes:explicit>no</itunes:explicit><itunes:subtitle>Ubuntu Server Guide: Contain About Ubuntu Server Guide, Tutorial, Setup and Configuration</itunes:subtitle><item>
		<title>﻿How to Install Prestashop with Apache2 + MySQl 5.5 + PHP 5.5 on Ubuntu Server 14.04</title>
		<link>https://ubuntuserverguide.com/2015/05/%ef%bb%bfhow-to-install-prestashop-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=%25ef%25bb%25bfhow-to-install-prestashop-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04</link>
					<comments>https://ubuntuserverguide.com/2015/05/%ef%bb%bfhow-to-install-prestashop-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04.html#respond</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Fri, 22 May 2015 07:31:46 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Apache2]]></category>
		<category><![CDATA[Ecommerce]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Prestashop]]></category>
		<category><![CDATA[Ubuntu Server 14.04]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1766</guid>

					<description><![CDATA[<p>Introduction Prestashop is an free and open source shopping cart which has many features that make it compatible with any web server (Apache, NginX and Microsoft IIS). It is well know for its vast collection of themes as well as custom store design. Multiple payment gateways can be integrated which makes it reliable and secured.</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2015/05/%ef%bb%bfhow-to-install-prestashop-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04.html">﻿How to Install Prestashop with Apache2 + MySQl 5.5 + PHP 5.5 on Ubuntu Server 14.04</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>Introduction</h3>
<p><strong>Prestashop</strong> is an free and open source shopping cart which has many features that make it compatible with any web server (Apache, NginX and Microsoft IIS). It is well know for its vast collection of themes as well as custom store design. Multiple payment gateways can be integrated which makes it reliable and secured. It is fully supported with SSL certificates.</p>
<p>Prestashop supports more than 65 languages which keeps the e-commerce site to more flexible. It has about 3,500+ free and paid modules that has multiple functionalities.</p>
<p>In this tutorial, we will cover How to Install Prestashop with LAMP (Linux, Apache, MySQL, PHP) server on<a href="http://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html"> Ubuntu Server 14.04</a>.</p>
<h3>Prerequisites</h3>
<p>Before you begin with this tutorial, you should have a separate, non-root user account set up on your server. You can find out the tutorial how to create a user with sudo privileges by following steps 1 &#8211; 4 in the<a href="http://ubuntuserverguide.com/2014/04/initial-server-configuration-on-ubuntu-server-14-04.html" target="_blank" rel="nofollow"> Initial server setup for Ubuntu Server 14.04</a></p>
<p>Once you have fulfilled the above requirements, continue on with the following guide.</p>
<h2>Step 1 &#8211; Set Up LAMP Server for Prestashop</h2>
<p>Before get the prestashop files and install them into your web directory. You need to have Linux, Apache, PHP, and MySQL (LAMP) installed and configured on your server.</p>
<h3>Install Apache, MySql and PHP5</h3>
<p>Make sure your package repositories and installed programs are up to date by issuing the following commands:</p>
<pre>sudo apt-get update</pre>
<pre>sudo apt-get upgrade</pre>
<p>Install Apache, PHP, MySQL package and PHP modules that will be needed by the Prestashop installation.</p>
<pre>sudo apt-get install lamp-server^ php5-curl php5-gd php5-mcrypt php5-memcache</pre>
<p>During the installation, you’ll be asked to setup the MySQL root user password. This is an administrative account in MySQL that has increased privileges, Enter the password and select `OK`.</p>
<p>Now, Enable module <em>php5-mcrypt</em> by typing the following command:</p>
<pre>sudo php5enmod mcrypt</pre>
<h3>Edit PHP configuration file</h3>
<p>We will also be making a few small tweaks to our PHP configuration file. These are recommended by the Prestashop. Open and edit the Apache PHP configuration file <em>/etc/php5/apache2/php.ini</em> with sudo privileges in your text editor</p>
<pre>sudo nano /etc/php5/apache2/php.ini</pre>
<p>Then add/modify the following lines:</p>
<pre>memory_limit = 128M
upload_max_filesize = 16M
max_execution_time = 60
file_uploads = On
allow_url_fopen = On
magic_quotes_gpc = Off
register_globals = Off</pre>
<p>When you are finished, press <strong>CTRL+O</strong> to save then press <strong>CTRL+X</strong> to Exit.</p>
<h3>Changing the Default Directory Index Page</h3>
<p>By default, apache load index page html script called index.html. Now, we will make PHP script called index.php first load in apache web server. You can do this by editing file <em>dir.conf</em>, it is located on directory <em>/etc/apache2/mods-enabled/</em>:</p>
<pre>sudo nano /etc/apache2/mods-enabled/dir.conf</pre>
<p>It will look like this:</p>
<pre>&lt;IfModule mod_dir.c&gt;
 DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
&lt;/IfModule&gt;</pre>
<p>Move the <em>index.php</em> file to first position:</p>
<pre>&lt;IfModule mod_dir.c&gt;
 DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm
 &lt;/IfModule&gt;</pre>
<p>When you are finished, press <strong>CTRL+O</strong> to save then press <strong>CTRL+X</strong> to Exit.</p>
<h3>Improve MySQL Installation Security</h3>
<p>The following command is initializes the MySQL data directory and creates the system tables that it contains, if they do not exist.</p>
<pre>sudo mysql_install_db</pre>
<p>Securing MySQL installation by running the following command:</p>
<pre>sudo mysql_secure_installation</pre>
<p>After execute the command above, it will be ask you to enter the password 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`. It also ask you to remove some sample users and databases, disable remote root logins, and load these new rules so that MySQL immediately respects the changes you have made.</p>
<h3>Restart the Apache and MySQL Server</h3>
<p>Restart apache and mysql service so that all of the changes take effect :</p>
<pre>sudo service apache2 restart &amp;&amp; sudo service mysql restart</pre>
<h2>Step 2 &#8211; Create MySQL User and Database for Prestashop</h2>
<p>Log into the MySQL Shell as root:</p>
<pre>mysql -u root -p</pre>
<p>Once Successful login to the MySQL Shell. Now, create database for prestashop. In this tutorial, We will call our database `dbprestashop`. Feel free to give it whatever name you choose</p>
<pre>CREATE DATABASE dbprestashop;</pre>
<p>Next, you need to create a user that the Prestashop application can use to connect to the database. In this tutorial, we&#8217;ll call our user <strong>prestauser</strong></p>
<pre>CREATE USER prestauser@localhost IDENTIFIED BY 'prestashoppsswd';</pre>
<p>Now, you have a database and a user for prestashop installation, but these two components have no relationship yet. The user has no access to the database.</p>
<p>Fix it by granting the user account access to your database with the following command:</p>
<pre>GRANT ALL PRIVILEGES ON dbprestashop.* TO prestauser@localhost;</pre>
<p>Now the user has access to the database. We need to flush the privileges to tell mysql to reload the user table. Then sign out from MySQL shell.</p>
<pre>FLUSH PRIVILEGES;</pre>
<pre>exit;</pre>
<h2>Step 3 &#8211; Download Stable Version of Prestashop</h2>
<p>Next, download the stable version of prestashop installation files from the <a href="https://www.prestashop.com/en/download" target="_blank" rel="nofollow">prestashop official site</a>. Currently, stable version of prestashop available in version 1.6.0.14. Download it with following command:</p>
<pre>wget https://www.prestashop.com/download/old/prestashop_1.6.0.14.zip</pre>
<p>Now, Extract <strong>prestashop_1.6.0.14.zip</strong> with command <em>unzip</em>. If you don&#8217;t have unzip package installed on your server, install it by entering the command:</p>
<pre>sudo apt-get install unzip</pre>
<p>Extract prestashop archieve:</p>
<pre>unzip prestashop_1.6.0.14.zip</pre>
<p>This will create a directory called <strong><span style="text-decoration: underline;">prestashop</span></strong> in your home directory.</p>
<h2>Step 4 &#8211; Copy Prestashop File to Apache Root Directory</h2>
<p>In this step, you need to copy prestashop installation into apache&#8217;s root directory, where it can be served to visitors of our website. The directory of the apache document root is <strong>/var/www/html/</strong>. Use <em>rsync</em> command to transferring files from directory to directory. You can transfer prestashop installation files by typing:</p>
<pre>sudo rsync -avP ~/prestashop/ /var/www/html/</pre>
<h2>Step 5 &#8211; Set Ownership and Permission Prestashop Installation File</h2>
<p>Next, you need to change the group ownership of prestashop installation files for increased security. The group ownership that will give to web server process, which is <em>www-data</em>. This will allow Apache to interact with the content as necessary.</p>
<p>In this guide, we will use the same username that used in <a href="http://ubuntuserverguide.com/2014/04/initial-server-configuration-on-ubuntu-server-14-04.html" target="_blank">tutorial initial setup for ubuntu server 14.04</a>, which called &#8220;<strong>ubuntu</strong>&#8220;. First, you should ensure that your username is included in <strong>www-data</strong> group</p>
<pre>sudo usermod -aG www-data ubuntu</pre>
<pre>sudo chown -R ubuntu:www-data /var/www/html/*

</pre>
<p>Find all directories in <em>/var/www/html/</em> and set their permissions to <strong>755</strong></p>
<pre>sudo find /var/www/html/ -type d -exec chmod 775 {} \;</pre>
<p>Do it again, but for files and set to <strong>644</strong></p>
<pre>sudo find /var/www/html/ -type f -exec chmod 644 {} \;</pre>
<h2>Step 6 &#8211; Install Prestshop Through Web Browser</h2>
<p>Now, you can complete prestashop installation through web browser on your computer. Open your favorite web browser, then navigate to your server&#8217;s domain name or public IP address:</p>
<p>Select your language and hit the `Next` button</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1771" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/Step-1.png" alt="Prestashop Installation - Step 1 - Select language" width="745" height="501" /></p>
<p>Check list License Agreements &#8211; click `Next`</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1772" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/Step-2.png" alt="Prestashop Installation - Step 2 - License Agreement" width="745" height="504" /></p>
<p>On this page, you need the fill out the information for your prestashop site and the administrative user account</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1773" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/Step-3.png" alt="prestashop installation - Step 3" width="745" height="630" /></p>
<p>Configure database for prestashop site by fill out the database information that created in `Step 2`</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1774" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/Step-4.png" alt="Prestashop Installation - Step 4 - Configure Database" width="745" height="505" /></p>
<p>Prestshop installation is finish.</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1775" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/Step-5.png" alt="Prestashop Installation - Step 5" width="745" height="506" /></p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1776" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/Step-6.png" alt="Prestashop Installation - Step 6" width="745" height="506" /></p>
<p>Now you can access prestashop front office by clicking <strong>Discover your store</strong>. Click <strong>Manage your store</strong> to access prestashop dashboard.</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1777" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/PrestaShop-Site.png" alt="PrestaShop Site" width="745" height="371" /></p>
<p>For security reason, Prestashop not permitted to acccess prestashop dashboard until you have deleted the <em>/install</em> folder and renamed the <em>/admin</em> folder.</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1778" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/PrestaShop-Site-Admin-login.png" alt="PrestaShop Site - Admin login" width="745" height="507" /></p>
<p>You can Rename <em>/install</em> folder and renamed the <em>/admin</em> folder by typing command:</p>
<pre>sudo rm -rf /var/www/html/install</pre>
<pre>sudo mv /var/www/html/admin/ /var/www/html/admin353jccgjg</pre>
<p>Now you can access prestashop back office by typing address <em>http://your_domain/admin353jccgjg</em>. It should appear like this:</p>
<h2><img loading="lazy" class="aligncenter size-full wp-image-1779" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/PrestaShop-Site-Dashboard.png" alt="PrestaShop Site Dashboard" width="745" height="370" /><br />
Step 7 – Additional Setting – Set URL Friendly</h2>
<p>Enable apache module rewrite</p>
<pre>sudo a2enmod rewrite</pre>
<p>Edit file 000-default.conf</p>
<pre>sudo nano /etc/apache2/sites-available/000-default.conf</pre>
<p>On section &lt;Directory &#8220;/var/www/html&#8221;&gt; add line AllowOverride All</p>
<pre>&lt;Directory "/var/www/html"&gt;
 AllowOverride All
&lt;/Directory&gt;</pre>
<p>Create file <em>.httacces </em>and <em>robot.txt</em></p>
<pre>sudo touch /var/www/html/.htaccess</pre>
<pre>sudo touch /var/www/html/robot.txt</pre>
<p>Change permission file <em>.httacces</em> and <em>robot.txt</em> to 666</p>
<pre>sudo chmod 666 /var/www/html/.htaccess</pre>
<pre>sudo chmod 666 /var/www/html/robot.txt</pre>
<p>Change ownership file <em>.httacces</em> and <em>robot.txt</em> to <strong>user:www-data</strong></p>
<pre>sudo chown ubuntu:www-data /var/www/html/.htaccess</pre>
<pre>sudo chown ubuntu:www-data /var/www/html/robot.txt</pre>
<p>Back to prestashop dashboard, navigate to Preferences -&gt; SEO &amp; URLs, Set yes on &#8220;Friendly URL&#8221;</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1794" src="http://ubuntuserverguide.com/wp-content/uploads/2015/05/Urls-Friendly-Prestashop.png" alt="Urls Friendly Prestashop" width="1366" height="626" /></p>
<h3>Conclusion</h3>
<p>In this guide, you should now have a prestashop instance up and running on your Ubuntu Server 14.04. Prestashop is simple, easy to use, dynamic, growing, and in-vogue ecommerce CMS that realizes and delivers on the expectations of enterprising web ecommerce ventures.</p>
<p><strong>Note :</strong> This tutorial has been tested in <a href="https://www.digitalocean.com/?refcode=cafe9537d606" target="_blank" rel="nofollow">VPS Digital Ocean</a> and work great.</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2015/05/%ef%bb%bfhow-to-install-prestashop-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04.html">﻿How to Install Prestashop with Apache2 + MySQl 5.5 + PHP 5.5 on Ubuntu Server 14.04</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2015/05/%ef%bb%bfhow-to-install-prestashop-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Zentyal Server 4.0 : Linux Business Server Based on Ubuntu Server 14.04 LTS</title>
		<link>https://ubuntuserverguide.com/2014/11/zentyal-server-4-0.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=zentyal-server-4-0</link>
					<comments>https://ubuntuserverguide.com/2014/11/zentyal-server-4-0.html#respond</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Wed, 19 Nov 2014 06:53:17 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Ubuntu Server 14.04]]></category>
		<category><![CDATA[Zentyal]]></category>
		<category><![CDATA[Zentyal Server 4.0]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1721</guid>

					<description><![CDATA[<p>Zentyal Server 4.0, a small Linux business server that can be configured as Directory Server, Domain Controller, Zentyal Mail Server, Gateway, Unified Threat Manager (UTM), Unified Communications Server or a combination of them, has been released with many improvements, better and easier web management console, bug fixes and is now available for download. The major change that is very important</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/11/zentyal-server-4-0.html">Zentyal Server 4.0 : Linux Business Server Based on Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Zentyal Server 4.0, a small Linux business server that can be configured as Directory Server, Domain Controller, Zentyal Mail Server, Gateway, Unified Threat Manager (UTM), Unified Communications Server or a combination of them, has been released with many improvements, better and easier web management console, bug fixes and is now available for download.</p>
<p>The major change that is very important for this particular version is the fact the developers are now basing the new version of Zentyal server 4.0 on <a title="How To Install Ubuntu Server 14.04 LTS Trusty Tahr" href="http://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html">Ubuntu Server 14.04</a> (trusty tahr). it available in two editions. <strong>Zentyal server 4.0 community edition,</strong> is good for personal use. If you need more features, you can go for the paid <strong>Zentyal Server 4.0 Commercial Edition</strong>.</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1726" src="http://ubuntuserverguide.com/wp-content/uploads/2014/11/Zentyal-Server-4.0-based-on-Ubuntu-Server-14.04.png" alt="Zentyal Server 4.0 based on Ubuntu Server 14.04" width="1024" height="400" /></p>
<p>According to <a href="http://www.zentyal.com/press/zentyal-announces-zentyal-server-4-0-major-new-linux-small-business-server-release/" target="_blank" rel="nofollow">official announcement</a>, &#8220;The Zentyal server 4.0 release focuses on providing an improved and stable server edition with native Microsoft® Exchange protocol implementation and Active Directory interoperability, with the goal of providing a complete and easy-to-use Small Business Server, with native support for mixed IT environments that include Windows®, Linux and Mac OS® clients, as well as mobile devices with ActiveSync®. Thanks to this, Zentyal server 4.0 offers full native Microsoft® Outlook Compatibility without plugins or connectors.&#8221;</p>
<p>&#8220;Besides focusing primarily on mail and mail-related directory features, additional improvements have also taken place. An important effort has been put into establishing the necessary quality assurance processes and to offer existing customers a migration path from Commercial Zentyal Server 3.2 Editions to 4.0 Edition&#8221;</p>
<p>Here&#8217;s the highlights of Zentyal Server 4.0:</p>
<p><strong>Zentyal Mail</strong></p>
<ul>
<li>Native compatibility with Microsoft® Exchange Server Protocols</li>
<li>Native compatibility with Microsoft Active Directory®</li>
<li>Multiple Virtual Mail Domain</li>
<li>Email, calendars, contacts</li>
<li>Webmail</li>
<li>Supported email clients</li>
<li>Synchronization with mobile devices</li>
</ul>
<p><strong>Zentyal Directory</strong></p>
<ul>
<li>Native compatibility with Microsoft Active Directory®</li>
</ul>
<p>More details about Zentyal Server 4.0 features you can read on <a href="http://www.zentyal.com/for-smbs/technical-features/" target="_blank" rel="nofollow">Zentyal Server Features</a></p>
<p><strong>Download Zentyal Server 4.0:</strong></p>
<ul>
<li><a href="http://download.zentyal.com/zentyal-4.0-amd64.iso" target="_blank" rel="nofollow">Zentyal Community Edition</a></li>
<li><a href="http://www.zentyal.com/zentyal-server/trial/" target="_blank" rel="nofollow">Zentyal Commercial Edition</a></li>
</ul>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/11/zentyal-server-4-0.html">Zentyal Server 4.0 : Linux Business Server Based on Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2014/11/zentyal-server-4-0.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<enclosure length="666370048" type="application/x-iso9660-image" url="http://download.zentyal.com/zentyal-4.0-amd64.iso"/><itunes:explicit/><itunes:subtitle>Zentyal Server 4.0, a small Linux business server that can be configured as Directory Server, Domain Controller, Zentyal Mail Server, Gateway, Unified Threat Manager (UTM), Unified Communications Server or a combination of them, has been released with many improvements, better and easier web management console, bug fixes and is now available for download. The major change that is very important The post Zentyal Server 4.0 : Linux Business Server Based on Ubuntu Server 14.04 LTS appeared first on Ubuntu Server Guide.</itunes:subtitle><itunes:summary>Zentyal Server 4.0, a small Linux business server that can be configured as Directory Server, Domain Controller, Zentyal Mail Server, Gateway, Unified Threat Manager (UTM), Unified Communications Server or a combination of them, has been released with many improvements, better and easier web management console, bug fixes and is now available for download. The major change that is very important The post Zentyal Server 4.0 : Linux Business Server Based on Ubuntu Server 14.04 LTS appeared first on Ubuntu Server Guide.</itunes:summary><itunes:keywords>News, Ubuntu Server 14.04, Zentyal, Zentyal Server 4.0</itunes:keywords></item>
		<item>
		<title>Ubuntu Server 14.10 Utopic Unicorn : Released with OpenStack 2014.1</title>
		<link>https://ubuntuserverguide.com/2014/11/ubuntu-server-14-10-utopic-unicorn.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ubuntu-server-14-10-utopic-unicorn</link>
					<comments>https://ubuntuserverguide.com/2014/11/ubuntu-server-14-10-utopic-unicorn.html#respond</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Mon, 17 Nov 2014 06:06:23 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Ubuntu Server]]></category>
		<category><![CDATA[Ubuntu Server 14.10]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1703</guid>

					<description><![CDATA[<p>Ubuntu Server 14.10 Utopic Unicorn is the latest version of ubuntu server edition. Released and announced by canonical brings with new features and bug fixes. One imporant about this release, Ubuntu Server 14.10 come with support for Docker containers, the latest iteration of OpenStack 2014.1, and a bunch of other refreshed features aimed at hyperscale deployments. it</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/11/ubuntu-server-14-10-utopic-unicorn.html">Ubuntu Server 14.10 Utopic Unicorn : Released with OpenStack 2014.1</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Ubuntu Server 14.10</strong> Utopic Unicorn is the latest version of ubuntu server edition. Released and announced by canonical brings with new features and bug fixes.</p>
<p>One imporant about this release, Ubuntu Server 14.10 come with support for Docker containers, the latest iteration of OpenStack 2014.1, and a bunch of other refreshed features aimed at hyperscale deployments. it also support for Docker v1.2, as well as LXC containers, embedded inside. With previous editions of Ubuntu Server, containers could only be created by sysadmins with root access. But now LXC containers are getting a new user-level controller, which means users can do so too.</p>
<p><a href="https://juju.ubuntu.com/" target="_blank" rel="nofollow">Juju</a>, Ubuntu’s service orchestration tool, has a revamped GUI which aims to simplify the scaling of large scale deployments, such as OpenStack, on public and private clouds or on bare metal. The addition of a machine level view makes it easier to manage workloads, while at a service level, users can take advantage of drag and drop placement.</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1709" src="http://ubuntuserverguide.com/wp-content/uploads/2014/11/Ubuntu-Server-14.10-juju-GUI.png" alt="Ubuntu Server 14.10 : juju GUI" width="1366" height="768" /></p>
<p>In additional, Juno update of <a href="http://www.ubuntu.com/cloud/openstack" target="_blank" rel="nofollow">OpenStack</a> also included in Ubuntu Server 14.10. Key components like Cinder, Ceilometer, Glance, Heat, Horizon, Nova and Swift have all been refreshed, while the new OpenStack setup includes options for installing Hadoop and Apache Spark on virtual machines running atop OpenStack. Juno also offers more granular policy controls for object storage as well as support for network function virtualization (NFV).</p>
<p><a href="https://maas.ubuntu.com/" target="_blank" rel="nofollow">Ubuntu’s Metal-as-a-Service (MaaS) </a>tool to help run Ubuntu on bare metal servers has been updated to version 1.7. Now, it’s not only capable of deploying Ubuntu Server instances, but also instances of CentOS 6.X, SUSE Linux Enterprise Server 11 SP3, and Windows Server 2012 and 2012 R2.</p>
<p><img loading="lazy" class="aligncenter size-full wp-image-1710" src="http://ubuntuserverguide.com/wp-content/uploads/2014/11/Ubuntu-Server-14.10-MAAS.png" alt="Ubuntu Server 14.10 - MAAS" width="998" height="498" /></p>
<p>For more deatail about this release you can read <a href="https://wiki.ubuntu.com/UtopicUnicorn/ReleaseNotes#Ubuntu_Server" target="_blank" rel="nofollow">official release announcement of Ubuntu Server 14.10 Utopic Unicorn</a></p>
<h2>Download Ubuntu Server 14.10 Utopic Unicorn</h2>
<p>Ubuntu Server 14.10 is available for download and install. Among the supported hardware platforms, we can mention 32-bit (i386), 64-bit (amd64), 64-bit Mac (amd64 for Macintosh systems), PowerPC (PPC), as well as PowerPC64 (PPC64) Little Endian. while a more detailed look at the new specs and features can be found <a href="https://blueprints.launchpad.net/ubuntu/utopic/+specs" target="_blank" rel="nofollow">here</a>.</p>
<p><strong>Torrent</strong></p>
<ul>
<li><a href="http://releases.ubuntu.com/14.10/ubuntu-14.10-server-amd64.iso.torrent" target="_blank" rel="nofollow">Ubuntu Server 14.10 AMD64 torrent</a></li>
<li><a href="http://releases.ubuntu.com/14.10/ubuntu-14.10-server-i386.iso.torrent" target="_blank" rel="nofollow">Ubuntu Server 14.10 i386 torrent</a></li>
</ul>
<p><strong>Direct</strong></p>
<ul>
<li><a href="http://releases.ubuntu.com/14.10/ubuntu-14.10-server-amd64.iso" target="_blank" rel="nofollow">Ubuntu Server 14.10 AMD64 iso</a></li>
<li><a href="http://releases.ubuntu.com/14.10/ubuntu-14.10-server-i386.iso" target="_blank" rel="nofollow">Ubuntu Server 14.10 i386 iso</a></li>
</ul>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/11/ubuntu-server-14-10-utopic-unicorn.html">Ubuntu Server 14.10 Utopic Unicorn : Released with OpenStack 2014.1</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2014/11/ubuntu-server-14-10-utopic-unicorn.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			<enclosure length="23616" type="application/x-bittorrent" url="http://releases.ubuntu.com/14.10/ubuntu-14.10-server-amd64.iso.torrent"/><itunes:explicit/><itunes:subtitle>Ubuntu Server 14.10 Utopic Unicorn is the latest version of ubuntu server edition. Released and announced by canonical brings with new features and bug fixes. One imporant about this release, Ubuntu Server 14.10 come with support for Docker containers, the latest iteration of OpenStack 2014.1, and a bunch of other refreshed features aimed at hyperscale deployments. it The post Ubuntu Server 14.10 Utopic Unicorn : Released with OpenStack 2014.1 appeared first on Ubuntu Server Guide.</itunes:subtitle><itunes:summary>Ubuntu Server 14.10 Utopic Unicorn is the latest version of ubuntu server edition. Released and announced by canonical brings with new features and bug fixes. One imporant about this release, Ubuntu Server 14.10 come with support for Docker containers, the latest iteration of OpenStack 2014.1, and a bunch of other refreshed features aimed at hyperscale deployments. it The post Ubuntu Server 14.10 Utopic Unicorn : Released with OpenStack 2014.1 appeared first on Ubuntu Server Guide.</itunes:summary><itunes:keywords>News, Ubuntu Server, Ubuntu Server 14.10</itunes:keywords></item>
		<item>
		<title>How to Install Drupal 7.x with Apache2 + MySQl 5.5 + PHP 5.5 on Ubuntu Server 14.04 LTS</title>
		<link>https://ubuntuserverguide.com/2014/08/how-to-install-drupal-7-x-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04-lts.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-install-drupal-7-x-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04-lts</link>
					<comments>https://ubuntuserverguide.com/2014/08/how-to-install-drupal-7-x-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04-lts.html#respond</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Thu, 28 Aug 2014 06:49:29 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Ubuntu Server 14.04]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1554</guid>

					<description><![CDATA[<p>Drupal is open source software maintained and developed by a community of 721,200+ users and developers. Use it to build everything from personal blogs to enterprise applications. It is written PHP and a backend database, such as MySQL. Thousands of add-on modules and designs let you build any site you can imagine. Drupal is free, flexible, robust and</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/08/how-to-install-drupal-7-x-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04-lts.html">How to Install Drupal 7.x with Apache2 + MySQl 5.5 + PHP 5.5 on Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://drupal.org" target="_blank" rel="nofollow"><strong>Drupal</strong></a> is open source software maintained and developed by a community of 721,200+ users and developers. Use it to build everything from personal blogs to enterprise applications. It is written PHP and a backend database, such as MySQL. Thousands of add-on modules and designs let you build any site you can imagine. Drupal is free, flexible, robust and constantly being improved by hundreds of thousands of passionate people from all over the world.(<a href="http://drupalfacts.mogdesign.eu/" target="_blank" rel="nofollow">DrupalFact</a>)</p>
<p>In this tutorial we will provide you basic step how to install Drupal 7.x with Apache2 + MySQl 5.5 + PHP 5.5 on <a title="How To Install Ubuntu Server 14.04 LTS Trusty Tahr" href="http://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html">Ubuntu Server 14.04 LTS</a>.</p>
<h2>Step 1 : Setup LAMP Stack</h2>
<p>Before installing Drupal 7.x you need to have a LAMP (Linux, Apache2, MySQL5, and PHP5) stack installed on your Ubuntu Server 14.04. If you don’t have these components already installed and configured, you can use this tutorial to learn <a href="http://ubuntuserverguide.com/2014/06/how-to-install-lamp-in-ubuntu-server-14-04-lts.html">how to Install LAMP Stack on Ubuntu Server 14.04</a>.</p>
<h2>Step 2 : Create Database and User for Drupal</h2>
<p>Log in to <a style="color: #77216f;" title="See also How To Install Drupal 7 on Ubuntu Server 12.04" href="http://ubuntuserverguide.com/2012/08/how-to-install-drupal-7-on-ubuntu-server-12-04.html">mysql</a> server as root user by typing the following command</p>
<pre style="color: #111111;">mysql -u root -p</pre>
<p style="color: #111111;">Once Successful login to the Mysql Server, use these command to create database for drupal. In this case I will give the name of the drupal database as <strong>dbdrupal, </strong>You can call this whatever you would like.</p>
<pre style="color: #111111;">CREATE DATABASE dbdrupal;</pre>
<p style="color: #111111;">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 <strong>“drupuser” </strong>and password for new account “<strong>drUPp@5sw0Rd</strong>“, 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:</p>
<pre style="color: #111111;">CREATE USER drupuser@localhost IDENTIFIED BY 'drUPp@5sw0Rd';</pre>
<p style="color: #111111;">Next, grant all privileges on the database you just created to the new user by running the commands below</p>
<pre style="color: #111111;">GRANT ALL PRIVILEGES ON dbdrupal.* TO drupuser@localhost;</pre>
<p style="color: #111111;">We need to flush the privileges so that the current instance of MySQL knows about the recent privilege changes we’ve made:</p>
<pre style="color: #111111;">FLUSH PRIVILEGES;</pre>
<p style="color: #111111;">And finally we exit the MySQL terminal by entering:</p>
<pre style="color: #111111;">exit;</pre>
<p style="color: #111111;"><img loading="lazy" class="aligncenter wp-image-1571" src="http://ubuntuserverguide.com/wp-content/uploads/2014/08/Create-Database-and-User-for-Drupal.jpg" alt="Create Database and User for Drupal" width="728" height="400" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/08/Create-Database-and-User-for-Drupal.jpg 900w, https://ubuntuserverguide.com/wp-content/uploads/2014/08/Create-Database-and-User-for-Drupal-200x109.jpg 200w" sizes="(max-width: 728px) 100vw, 728px" /></p>
<h2 style="font-weight: bold;">Step 3 : Download Drupal 7.x</h2>
<p>Enter to directory Document root of Apache :</p>
<pre>cd /var/www/html</pre>
<p>Download drupal 7.x from the drupal project’s website with the following command:</p>
<pre>sudo wget http://ftp.drupal.org/files/projects/drupal-7.31.tar.gz</pre>
<p>Extract the files “drupal-7.31.tar.gz” to rebuild the drupal directory with these command:</p>
<pre>sudo tar -zxvf drupal-7.31.tar.gz</pre>
<p>This will create a directory called <strong>drupal-7.31</strong> in directory /var/www/html</p>
<p>Copy all file on drupal-7.31 directory in to Apache‘s document root , we recommend to use <strong>rsync</strong> command for preserves permissions and data integrity:</p>
<pre>sudo rsync -avP drupal-7.31/ /var/www/html</pre>
<p>Or, you can doing it without mentioning Apache’s document root:</p>
<pre>sudo rsync -avP drupal-7.31/ .</pre>
<p>Once copying all file on drupal directory is complete. Remove directory drupal-7.31 and file latest.tar.gz by typing the following command:</p>
<pre>sudo rm -rf drupal-7.31/ drupal-7.31.tar.gz</pre>
<p>Give permissions to user and group (www-data) over everything under directory /var/www/html</p>
<pre>sudo chown -R www-data:www-data /var/www/html

</pre>
<h2 style="font-weight: bold; color: #111111;">Step 4 : Install Drupal 7.x from the Web Browser</h2>
<p>Complete the drupal 7.x installation through the web browser, in your web browser, navigate to your server’s domain name or public IP address <strong>[http://ip_public] </strong>or <strong>[http://domain]</strong></p>
<p>You should see this image:</p>
<p>In this case I would choose profle : standar option.</p>
<p><img loading="lazy" class="aligncenter" src="http://ubuntuserverguide.com/wp-content/uploads/2014/08/Install-Drupal-Step-1.png" alt="Install Drupal - Step 1" width="728" height="419" /></p>
<p>Choose language : Default english</p>
<p><img loading="lazy" class="aligncenter" src="http://ubuntuserverguide.com/wp-content/uploads/2014/08/Install-drupal-Step-2.png" alt="Install drupal - Step 2" width="728" height="417" /></p>
<p>Select database type : default mysql, enter the database name, database username, and database password</p>
<p><img loading="lazy" class="aligncenter" src="http://ubuntuserverguide.com/wp-content/uploads/2014/08/Install-Drupal-Step-3.png" alt="Install Drupal - Step 3" width="728" height="417" /></p>
<p><img loading="lazy" class="aligncenter" src="http://ubuntuserverguide.com/wp-content/uploads/2014/08/Install-Drupal-Step-4.png" alt="Install Drupal - Step 4" width="728" height="417" /></p>
<p style="color: #111111;">Drupal installation is complete, click &#8220;visit your new site&#8221; to show homepage of drupal site<img loading="lazy" class="aligncenter" src="http://ubuntuserverguide.com/wp-content/uploads/2014/08/Install-Drupal-Step-6.png" alt="Install Drupal - Step 6" width="728" height="417" /></p>
<p><img loading="lazy" class="aligncenter" src="http://ubuntuserverguide.com/wp-content/uploads/2014/08/Drupal-Site.png" alt="Drupal Site" width="728" height="417" /></p>
<p>The following video created by <a href="http://youtube.com/user/linuxscoop" target="_blank" rel="nofollow">LinuxScoop</a> and is describes How to Install Drupal 7.x with Apache2 + MySQl 5.5 + PHP 5.5 on Ubuntu Server 14.04 LTS . Original video you can found <a href="http://www.youtube.com/watch?v=D2lzuQy1syQ" target="_blank" rel="nofollow">here</a>:</p>
<div class="video-container" style="margin-top:20px;"><iframe width="100%" height="409" src="http://www.youtube.com/embed/D2lzuQy1syQ" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen></iframe></div>
<p><strong>Note</strong>: This tutorial have been tested on VPS <a href="https://www.digitalocean.com/?refcode=cafe9537d606" target="_blank" rel="nofollow">DigitalOcean</a></p>
<p style="color: #111111;"><strong>Link Reference :</strong></p>
<ul>
<li><a href="https://www.drupal.org/documentation/install" target="_blank" rel="nofollow" class="broken_link">Drupal Documentation</a></li>
</ul>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/08/how-to-install-drupal-7-x-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04-lts.html">How to Install Drupal 7.x with Apache2 + MySQl 5.5 + PHP 5.5 on Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2014/08/how-to-install-drupal-7-x-with-apache2-mysql-5-5-php-5-5-on-ubuntu-server-14-04-lts.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install WordPress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS</title>
		<link>https://ubuntuserverguide.com/2014/06/how-to-install-wordpress-3-9-with-apache2-mysql-5-5-php-5-5-in-ubuntu-server-14-04-lts.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-install-wordpress-3-9-with-apache2-mysql-5-5-php-5-5-in-ubuntu-server-14-04-lts</link>
					<comments>https://ubuntuserverguide.com/2014/06/how-to-install-wordpress-3-9-with-apache2-mysql-5-5-php-5-5-in-ubuntu-server-14-04-lts.html#comments</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Mon, 23 Jun 2014 03:04:59 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Apache2]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu Server 14.04]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1500</guid>

					<description><![CDATA[<p>WordPress is free and open source blogging tool written in PHP and MySQl as default database. it’s probably the easiest and most powerful blogging and website content management system (or CMS) 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</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/06/how-to-install-wordpress-3-9-with-apache2-mysql-5-5-php-5-5-in-ubuntu-server-14-04-lts.html">How to Install WordPress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>WordPress</strong> is free and open source blogging tool written in PHP and MySQl as default database. it’s probably the easiest and most powerful blogging and website content management system (or CMS) in existence today. In addition, <em>WordPress</em> 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.</p>
<p><span style="line-height: 1.5em;">This tutorial will describe basic step how to installing fresh <span style="text-decoration: underline;">wordpress</span> 3.9 with Apache2, Mysql 5.5 and PHP 5.5 in <a title="How To Install Ubuntu Server 14.04 LTS Trusty Tahr" href="http://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html">Ubuntu Server 14.04 LTS</a>.</span></p>
<h2>Step 1 : Setup LAMP Stack</h2>
<p>Before installing wordpress you need to have a LAMP (Linux, Apache2, MySQL5, and PHP5) stack installed on your Ubuntu Server 14.04. If you don&#8217;t have these components already installed and configured, you can use this tutorial to learn <a title="How to Install LAMP in Ubuntu Server 14.04 LTS" href="http://ubuntuserverguide.com/2014/06/how-to-install-lamp-in-ubuntu-server-14-04-lts.html">how to Install LAMP Stack on Ubuntu Server 14.04</a>.</p>
<h2>Step 2 : Create Database and User for WordPress</h2>
<p>Log in to mysql server as root user by typing the following command</p>
<pre>mysql -u root -p</pre>
<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 <strong>dbwordpress, </strong>You can call this whatever you would like.</p>
<pre>CREATE DATABASE dbwordpress;</pre>
<p>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 <strong>&#8220;wpuser&#8221; </strong>and password for new account &#8220;<strong>wpP@5sw0Rd</strong>&#8220;, you should definitely change the password for your installation and can name the user whatever you&#8217;d like. You can do this by typing the following command:</p>
<pre>CREATE USER wpuser@localhost IDENTIFIED BY 'wpP@5sw0Rd';</pre>
<p>Next, grant all privileges on the database you just created to the new user by running the commands below</p>
<pre>GRANT ALL PRIVILEGES ON dbwordpress.* TO wpuser@localhost;</pre>
<p>We need to flush the privileges so that the current instance of MySQL knows about the recent privilege changes we&#8217;ve made:</p>
<pre>FLUSH PRIVILEGES;</pre>
<p>And finally we exit the MySQL terminal by entering:</p>
<pre>exit;</pre>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1527" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Create-Database-and-User-for-WordPress.png" alt="Create Database and User for WordPress" width="720" height="441" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/Create-Database-and-User-for-WordPress.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/Create-Database-and-User-for-WordPress-200x122.png 200w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<h2>Step 3 : Download WordPress Latest Version</h2>
<p>Enter to directory Document root of Apache :</p>
<pre>cd /var/www/html</pre>
<p>Download wordpress latest version from the project&#8217;s website with the following commad:</p>
<pre>sudo wget http://wordpress.org/latest.tar.gz</pre>
<p>Extract the files &#8220;latest.tar.gz&#8221; to rebuild the WordPress directory with these command:</p>
<pre>sudo tar -zxvf latest.tar.gz</pre>
<p>This will create a directory called <code>wordpress</code> in directory /var/www/html</p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1529" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/create-a-directory-called-wordpress.png" alt="create a directory called wordpress" width="720" height="104" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/create-a-directory-called-wordpress.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/create-a-directory-called-wordpress-200x28.png 200w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<p>Copy all file on wordpress directory in to Apache&#8217;s document root , we recommend to use rsync command for preserves permissions and data integrity:</p>
<pre>sudo rsync -avP wordpress/ /var/www/html</pre>
<p>Or, you can doing it without mentioning Apache&#8217;s document root:</p>
<pre>sudo rsync -avP wordpress/ .</pre>
<p>Once copying all file on wordpress directory is complete. Remove wordpress directory and file latest.tar.gz</p>
<pre>sudo rm -rf wordpress/ latest.tar.gz</pre>
<p>Give permissions to user and group (www-data) over everything under directory /var/www/html</p>
<pre><span style="line-height: 1.5em;">sudo chown -R </span>www-data<span style="line-height: 1.5em;">:www-data /var/www/html</span></pre>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1530" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Give-permissions-to-user-and-group-www-data.png" alt="Give permissions to user and group (www-data)" width="720" height="375" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/Give-permissions-to-user-and-group-www-data.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/Give-permissions-to-user-and-group-www-data-200x104.png 200w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<h2>Step 4 : Install WordPress through the Web Browser</h2>
<p>Complete the wordpress installation through the web browser, In your web browser, navigate to your server&#8217;s domain name or public IP address <strong>[http://ip_public]</strong> or <strong>[http://domain]</strong></p>
<p>You should see this image:</p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1531" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Create-Configuration-File-for-WordPress.png" alt="Create Configuration File for WordPress" width="720" height="349" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/Create-Configuration-File-for-WordPress.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/Create-Configuration-File-for-WordPress-200x97.png 200w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1532" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/we-need-some-information-on-the-database.png" alt="we need some information on the database" width="721" height="529" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/we-need-some-information-on-the-database.png 801w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/we-need-some-information-on-the-database-200x146.png 200w" sizes="(max-width: 721px) 100vw, 721px" /></p>
<p>Click on Create Configuration File, followed by Let’s Go in the next step. In the 3rd step, enter the details as follows:</p>
<p>Database Name: dbwordpress<br />
User Name: wpuser<br />
Password: wpP@5sw0Rd<br />
Database Host: localhost<br />
Table Prefix: wp_</p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1533" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Selection_211.png" alt="Selection_211" width="720" height="540" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/Selection_211.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/Selection_211-200x150.png 200w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<p>After click on Submit. you should get the following page. Click Run Install</p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1534" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/run-install-wordpress.png" alt="run install wordpress" width="720" height="297" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/run-install-wordpress.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/run-install-wordpress-200x82.png 200w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<p>Now you will see the WordPress initial configuration page, Fill out the information for the site such as <strong>Site title, Username, Password and Your Email, Check list on privacy option</strong> if you allow search engine crawling your site. Then and click Install WordPress</p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1535" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/WordPress-Installation.png" alt="WordPress Installation" width="720" height="895" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/WordPress-Installation.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/WordPress-Installation-160x200.png 160w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<p>WordPress will confirm the installation process is success. It also show you login account that have been created on previous step.</p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1536" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Selection_212.png" alt="Selection_212" width="720" height="441" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/Selection_212.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/Selection_212-200x122.png 200w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<p>Hit the log in button if you want login to wordpress dashboard.</p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1537" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Just-another-WordPress-site.png" alt="Just another WordPress site" width="720" height="472" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/Just-another-WordPress-site.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/Just-another-WordPress-site-200x131.png 200w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<h2>Additonal Setting &#8211; WordPress Permalinks</h2>
<p>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.</p>
<pre>sudo nano /etc/apache2/sites-available/000-default.conf</pre>
<p>Add the following line under option (<strong>DocumentRoot /var/www/html)</strong> on section <strong>&lt;VirtualHost *:80&gt;</strong></p>
<pre>ServerName domain_or_IP
&lt;Directory /var/www/html/&gt;
      AllowOverride All
&lt;/Directory&gt;</pre>
<p>Example:</p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1540" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/add-option-on-file-000-default-conf.png" alt="add option on file 000-default-conf" width="720" height="324" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/add-option-on-file-000-default-conf.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/add-option-on-file-000-default-conf-200x90.png 200w" sizes="(max-width: 720px) 100vw, 720px" /></p>
<p>Enable the rewrite module with these command:</p>
<pre>sudo a2enmod rewrite</pre>
<p>Restart apache2 service:</p>
<pre>sudo service apache2 restart</pre>
<p>Create empty file .htaccess in your document root</p>
<pre>sudo touch /var/ww/html/.htaccess</pre>
<p>Give permission file .htaccess with username and group (www-data)</p>
<pre>sudo chown www-data:www-data /var/ww/html/.htaccess</pre>
<p>Set permission file /var/www/html/.htaccess to 644</p>
<pre>sudo chmod 664 /var/www/html/.htaccess</pre>
<p>Now you can setting wordpress permaliks from wordpress dashboard, navigate to <strong>Settings -&gt; Permalinks</strong></p>
<p style="text-align: center;"><img loading="lazy" class="aligncenter  wp-image-1542" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Setting-Wordpress-Permalinks.jpg" alt="Setting WordPress Permalinks" width="719" height="330" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/Setting-Wordpress-Permalinks.jpg 799w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/Setting-Wordpress-Permalinks-200x91.jpg 200w" sizes="(max-width: 719px) 100vw, 719px" /></p>
<p>The following video created by <a href="http://youtube.com/user/linuxscoop" target="_blank" rel="nofollow">LinuxScoop</a> and is describes <strong>How to install WordPress 3.9 with Apache2 + MySQL 5.5 + PHP5.5 in Ubuntu Server 14.04 LTS</strong> . Original video you can found <a href="http://www.youtube.com/watch?v=y1cRaSZHOuE" target="_blank" rel="nofollow">here</a></p>
<div class="video-container" style="margin-top:20px;"><iframe width="100%" height="409" src="http://www.youtube.com/embed/Br1-OwZOOI4" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen></iframe></div>
<p><strong>Note:</strong> This tutorial have been tested on VPS <a href="https://www.digitalocean.com/?refcode=cafe9537d606" target="_blank" rel="nofollow">DigitalOcean</a> 512MB</p>
<p><strong>Link Reference :</strong></p>
<ul>
<li><a href="http://wordpress.org" target="_blank" rel="nofollow">WordPress.org</a></li>
<li><a href="https://help.ubuntu.com/community/WordPress" target="_blank" rel="nofollow">WordPress Ubuntu</a></li>
</ul>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/06/how-to-install-wordpress-3-9-with-apache2-mysql-5-5-php-5-5-in-ubuntu-server-14-04-lts.html">How to Install WordPress 3.9 with Apache2 + MySQL 5.5 + PHP 5.5 in Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2014/06/how-to-install-wordpress-3-9-with-apache2-mysql-5-5-php-5-5-in-ubuntu-server-14-04-lts.html/feed</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to Upgrade Ubuntu Server 12.04 to Ubuntu Server 14.04 LTS</title>
		<link>https://ubuntuserverguide.com/2014/06/how-to-upgrade-ubuntu-server-12-04-to-ubuntu-server-14-04-lts.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-upgrade-ubuntu-server-12-04-to-ubuntu-server-14-04-lts</link>
					<comments>https://ubuntuserverguide.com/2014/06/how-to-upgrade-ubuntu-server-12-04-to-ubuntu-server-14-04-lts.html#comments</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Tue, 17 Jun 2014 06:04:51 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Ubuntu Server 12.04]]></category>
		<category><![CDATA[Ubuntu Server 14.04]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1470</guid>

					<description><![CDATA[<p>This tutorial will describes how to upgrade Ubuntu Server 12.04.x to Ubuntu Server 14.04 LTS. As we know, Ubuntu Server 14.04 is the latest version of ubuntu server edition that released by canonical few month ago. NOTE : Before starting upgrade to latest version of ubuntu server, make sure you have full backups you data and</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/06/how-to-upgrade-ubuntu-server-12-04-to-ubuntu-server-14-04-lts.html">How to Upgrade Ubuntu Server 12.04 to Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This tutorial will describes how to upgrade Ubuntu Server 12.04.x to <strong>Ubuntu Server 14.04</strong> LTS. As we know, <em>Ubuntu Server 14.04</em> is the latest version of ubuntu server edition that released by canonical few month ago.</p>
<p><strong>NOTE :</strong> Before starting upgrade to latest version of ubuntu server, make sure you have full backups you data and everything important on your ubuntu server to other remote system or backup drive. If you are using Ubuntu on VPS make sure take a server snapshot at your provider before upgrading. And we do not grantees the following tutorial will work for you properly.</p>
<h2>Step 1: Updating Ubuntu Repository and Install Update Manager</h2>
<p>Make sure your current ubuntu server  is fully up to date, doing it with the following command:</p>
<pre>sudo apt-get update</pre>
<p>Install update manager core package with these command:</p>
<pre>sudo apt-get install update-manager-core</pre>
<h2>Step 2: Check Current Version of Ubuntu Server and Kernel Version</h2>
<p>Run the following command to check current version of ubuntu server and kernel information that used ubuntu server</p>
<p>lsb_release -a</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/lsb-release-ubuntu-server-12-04.jpg"><img loading="lazy" class="aligncenter wp-image-1483 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/lsb-release-ubuntu-server-12-04.jpg" alt="lsb-release ubuntu server 12-04" width="800" height="250" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/lsb-release-ubuntu-server-12-04.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/lsb-release-ubuntu-server-12-04-200x62.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>uname -a</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/kernel-version-of-ubuntu-server-12.04.jpg"><img loading="lazy" class="aligncenter wp-image-1484 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/kernel-version-of-ubuntu-server-12.04.jpg" alt="kernel version of ubuntu server 12.04" width="800" height="74" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/kernel-version-of-ubuntu-server-12.04.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/kernel-version-of-ubuntu-server-12.04-200x18.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>On this case, we are using Ubuntu Server 12.04.4 and kernel 3.8.0-29-generic</p>
<h2><span style="line-height: 1.5em;">Step 3: Upgrade to Ubuntu Server 14.04 LTS</span></h2>
<p>Type the following command to upgrade the Ubuntu server 12.04.4 to <span style="text-decoration: underline;">Ubuntu Server 14.04</span> LTS :</p>
<pre>sudo do-release-upgrade -d</pre>
<p>After execute command do-release-upgrade, it will showing the upgrade tool like the screenshot on below. Answer &#8221; Y &#8221; to upgrade.</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/checking-package-manager-and-starting-additional-SSH.jpg"><img loading="lazy" class="aligncenter wp-image-1490 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/checking-package-manager-and-starting-additional-SSH.jpg" alt="checking package manager and starting additional SSH" width="800" height="500" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/checking-package-manager-and-starting-additional-SSH.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/checking-package-manager-and-starting-additional-SSH-200x125.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>During the upgrade prosess, you may be asked &#8220;Disable SSH password authentication for root?&#8221; answer &#8220;No&#8221; if you want to disable SSH password authentication after the upgrading finish</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/disable-ssh-password.jpg"><img loading="lazy" class="aligncenter wp-image-1491 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/disable-ssh-password.jpg" alt="disable ssh password" width="800" height="454" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/disable-ssh-password.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/disable-ssh-password-200x113.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>Next, you may be asked &#8220;Restart services during package upgrades without asking?&#8221; answer yes if you won’t be asked on each library update.</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/restarting-service-during-upgrade.jpg"><img loading="lazy" class="aligncenter wp-image-1492 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/restarting-service-during-upgrade.jpg" alt="restarting service during upgrade" width="800" height="455" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/restarting-service-during-upgrade.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/restarting-service-during-upgrade-200x113.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>The end of the installation you will be prompted to remove any obsolete packages, Answer &#8216;y&#8217; to continue and remove. Hit &#8216;d&#8217; to see details of these packages.</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/remove-obsolete-packages.jpg"><img loading="lazy" class="aligncenter wp-image-1493 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/remove-obsolete-packages.jpg" alt="remove obsolete packages" width="800" height="246" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/remove-obsolete-packages.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/remove-obsolete-packages-200x61.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>Once remove obsolete packages is complete, you will get message &#8220;System upgrade is complete&#8221;. Congratulations, your Ubuntu Server 12.04 has now been upgraded to the Ubuntu Server 14.04 LTS. To complete the upgrade, reboot your Ubuntu Server by answering &#8216;Y&#8217;.</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/system-upgrade-is-complete.jpg"><img loading="lazy" class="aligncenter wp-image-1494 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/system-upgrade-is-complete.jpg" alt="system upgrade is complete" width="800" height="156" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/system-upgrade-is-complete.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/system-upgrade-is-complete-200x39.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<h2>Step 4 : Checking Version of Ubuntu Server and Kernel Version After Upgrade</h2>
<p>Once your Ubuntu Server has been rebooted successfully, you need to check the version of ubuntu server and kernel version with the command &#8220;lsb_release -a&#8221; and &#8220;uname -r&#8221;.</p>
<pre>lsb_release -a</pre>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/lsb-release-ubuntu-server-14.04.jpg"><img loading="lazy" class="aligncenter wp-image-1495 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/lsb-release-ubuntu-server-14.04.jpg" alt="lsb-release ubuntu server 14.04" width="800" height="116" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/lsb-release-ubuntu-server-14.04.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/lsb-release-ubuntu-server-14.04-200x29.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<pre>uname -r</pre>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/check-kernel-version-ubuntu-server-14.04.jpg"><img loading="lazy" class="aligncenter wp-image-1496 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/check-kernel-version-ubuntu-server-14.04.jpg" alt="check kernel version ubuntu server 14.04" width="800" height="53" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/check-kernel-version-ubuntu-server-14.04.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/check-kernel-version-ubuntu-server-14.04-200x13.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>The commands will confirm the Ubuntu Server that you are using is Ubuntu Server 14.04 LTS.</p>
<p><strong>Optional: </strong>If you get information &#8220;No LSB modules are available &#8221; after execute the command &#8220;lsb_release -a&#8221; . Fix this problem by installing &#8220;lsb_core&#8221; package:</p>
<pre>sudo apt-get update</pre>
<pre>sudo apt-get install lsb-core</pre>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/install-lsb-core-ubuntu-server-14.04.jpg"><img loading="lazy" class="aligncenter wp-image-1497 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/install-lsb-core-ubuntu-server-14.04.jpg" alt="install lsb core ubuntu server 14.04" width="800" height="376" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/install-lsb-core-ubuntu-server-14.04.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/install-lsb-core-ubuntu-server-14.04-200x94.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>Now run again the command lsb_release -a to check for LSB modules. You should get information of LSB version like the following screenshot.</p>
<pre>lsb_release a</pre>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/checking-lsb-release.jpg"><img loading="lazy" class="aligncenter wp-image-1498 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/checking-lsb-release.jpg" alt="checking lsb release" width="800" height="90" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/checking-lsb-release.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/checking-lsb-release-200x22.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>On this tutorial we also included video step by step upgrading ubuntu server 12.04 to ubuntu server 14.04. The following video created by <a href="http://youtube.com/user/linuxscoop" target="_blank" rel="nofollow">LinuxScoop</a>, original video can found <a title="Video : How to Upgrade Ubuntu Server 12.04 to Ubuntu Server 14.04 LTS" href="http://www.youtube.com/watch?v=2ei9YKxfJBw" target="_blank" rel="nofollow">here</a></p>
<div class="video-container" style="margin-top:20px;"><iframe width="100%" height="409" src="http://www.youtube.com/embed/2ei9YKxfJBw" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen></iframe></div>
<p><strong>Link Reference:</strong></p>
<ul>
<li><a href="https://help.ubuntu.com/14.04/serverguide/installing-upgrading.html" target="_blank" rel="nofollow" class="broken_link">Upgrading Ubuntu Server</a></li>
<li><a href="http://ubuntuforums.org/showthread.php?t=2221089" target="_blank" rel="nofollow">Ubuntu Forum</a></li>
</ul>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/06/how-to-upgrade-ubuntu-server-12-04-to-ubuntu-server-14-04-lts.html">How to Upgrade Ubuntu Server 12.04 to Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2014/06/how-to-upgrade-ubuntu-server-12-04-to-ubuntu-server-14-04-lts.html/feed</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install LAMP in Ubuntu Server 14.04 LTS</title>
		<link>https://ubuntuserverguide.com/2014/06/how-to-install-lamp-in-ubuntu-server-14-04-lts.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-install-lamp-in-ubuntu-server-14-04-lts</link>
					<comments>https://ubuntuserverguide.com/2014/06/how-to-install-lamp-in-ubuntu-server-14-04-lts.html#comments</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Tue, 10 Jun 2014 14:47:31 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Apache2]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu Server 14.04]]></category>
		<category><![CDATA[Web Server]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1442</guid>

					<description><![CDATA[<p>This tutorial will explains basic step how to install LAMP (Linux, Apache, MySQL, PHP or Perl) server in ubuntu server 14.04 LTS. The acronym LAMP is derived from first letters of Linux, Apache HTTP Server, MySQL, and PHP/Perl/Python. Linux is a Unix-like and POSIX-compliant operating system. Ubuntu Server is one of popular Linux distributions dedicated for</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/06/how-to-install-lamp-in-ubuntu-server-14-04-lts.html">How to Install LAMP in Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This tutorial will explains basic step how to install <strong>LAMP</strong> (Linux, Apache, MySQL, PHP or Perl) server in ubuntu server 14.04 LTS. The acronym <em>LAMP</em> is derived from first letters of Linux, Apache HTTP Server, MySQL, and PHP/Perl/Python.</p>
<ul>
<li><strong>Linux</strong> is a Unix-like and POSIX-compliant operating system. Ubuntu Server is one of popular Linux distributions dedicated for server environment.</li>
<li><strong>Apache</strong> is a HTTP web server, the most popular in use. It serves webpages when they’re requested by the web browsers. When you type an URL on your web server and press Enter, the pages you see on screen is most likely served by Apache webserver.</li>
<li><strong>MySQL </strong>is a database management system now owned by Oracle Corporation. It stores and organizes references to the information the webserver needs.</li>
<li><strong>PHP </strong>is a reflective programming language, which makes it possible for all these different parts to work together.</li>
</ul>
<p><span style="line-height: 1.5em;">This tutorial assumes that you have already installed Ubuntu Server 14.04 correctly in you machine, if you need guide basic install ubuntu server 14.04 you can read </span><a style="line-height: 1.5em;" title="How To Install Ubuntu Server 14.04 LTS Trusty Tahr" href="http://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html">here</a><span style="line-height: 1.5em;">. </span></p>
<h2>Install and Configure Apache2</h2>
<p>First, update ubuntu repository with the following command :</p>
<pre>sudo apt-get update</pre>
<p>Install Apache2 and all related dependencies with these command:</p>
<pre>sudo apt-get install apache2 apache2-utils</pre>
<p>Once apache2 installed, modify file /etc/apache2/mods-enabled/dir.conf, with your favorite editor. I&#8217;ll used nano command:</p>
<pre>sudo nano /etc/apache2/mods-enabled/dir.conf</pre>
<p>You should see the following line:</p>
<pre>&lt;IfModule mod_dir.c&gt;
       DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
&lt;/IfModule&gt;</pre>
<p>Change to:</p>
<pre>&lt;IfModule mod_dir.c&gt;
       DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm
&lt;/IfModule&gt;</pre>
<p>Restart apache2 with following command:</p>
<pre>sudo service apache2 restart</pre>
<p>Now you can check out apache2 is working or not by visiting your server&#8217;s public IP address or domain from your web browser ( http://ip_address or http://domain.com). If it work you will see the default Ubuntu 14.04 Apache web page, which is there for informational and testing purposes. It should look something like this:</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/default-web-page-apache2-ubuntu.jpg"><img loading="lazy" class="aligncenter wp-image-1456 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/default-web-page-apache2-ubuntu.jpg" alt="default web page apache2 ubuntu" width="800" height="458" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/default-web-page-apache2-ubuntu.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/default-web-page-apache2-ubuntu-200x114.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<h2>Install and Configure MySQL Server</h2>
<p>To install Mysql Server package and all related package dependencies run the followong command:</p>
<pre>sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql</pre>
<p>During the installation, you’ll be asked to setup the MySQL root user password. This is an administrative account in MySQL that has increased privileges, Enter the password and select [OK].</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/configuring-mysql-server-5.5.jpg"><img loading="lazy" class="aligncenter wp-image-1458 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/configuring-mysql-server-5.5.jpg" alt="configuring mysql-server-5.5" width="800" height="455" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/configuring-mysql-server-5.5.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/configuring-mysql-server-5.5-200x113.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>After the mysql server installation complete, you need to run some command for tell MySQL to create database directory structure where it will store its information. You can do this by typing the following command:</p>
<pre>sudo mysql_install_db</pre>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/create-database-directory-structure.jpg"><img loading="lazy" class="aligncenter wp-image-1459 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/create-database-directory-structure.jpg" alt="create database directory structure" width="800" height="392" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/create-database-directory-structure.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/create-database-directory-structure-200x98.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>Run the following command, It will be ask you to enter the password 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 &#8220;n&#8221; for &#8220;no&#8221;. It also ask you to remove some sample users and databases, disable remote root logins, and load these new rules so that MySQL immediately respects the changes you have made.</p>
<pre>sudo mysql_secure_installation</pre>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/mysql-secure-installation.jpg"><img loading="lazy" class="aligncenter wp-image-1460 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/mysql-secure-installation.jpg" alt="mysql secure installation" width="800" height="426" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/mysql-secure-installation.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/mysql-secure-installation-200x106.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<h2>Install and Configure PHP5</h2>
<p>To install PHP5 package and all related package dependencies run the following command below. by default ubuntu server 14.04 will installed PHP 5.5</p>
<pre>sudo apt-get install php5 php5-mysql php-pear php5-gd  php5-mcrypt php5-curl</pre>
<h2>Testing PHP5 and MySQL</h2>
<p>In order to test PHP script you need to create simple PHP script in directory /var/www/html. in this case I&#8217;ll create phpinfo.php:</p>
<pre>sudo touch /var/www/html/phpinfo.php</pre>
<pre>sudo nano  /var/www/html/phpinfo.php</pre>
<p>Add the following line into file /var/www/html/phpinfo.php</p>
<pre>&lt;?php phpinfo(); ?&gt;</pre>
<p>Save and exit ( Ctrl + O, Ctrl + X)</p>
<p>Test the php script you have made from web browser by typing in address bar http://ip_address/phpinfo.php. It will appear like screenshot on below.</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Test-the-php-script.jpg"><img loading="lazy" class="aligncenter wp-image-1461 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Test-the-php-script.jpg" alt="Test the php script" width="800" height="654" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/Test-the-php-script.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/Test-the-php-script-200x163.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>This page basically gives you information about your server from the perspective of PHP. It is useful for debugging and to ensure that your settings are being applied correctly.</p>
<p>Testing MySQL connection with PHP script. Create the file /var/www/html/phpmysql.php then add the following line on below. Replace the <strong>password</strong> with your mysql root password have made during mysql installation:</p>
<pre>sudo touch /var/www/html/phpmysql.php</pre>
<pre>sudo nano /var/www/html/phpmysql.php</pre>
<pre>&lt;?php
$con = mysql_connect("localhost","root","password");
if (!$con)
{
 die('Could not connect: ' . mysql_error());
}
else
{
 echo "Congrats! connection established successfully";
}
mysql_close($con);
?&gt;</pre>
<p>Now open web browser and navigate to http://ip_address/phpmysql.php, The page should be appear like screenshot on below:</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Test-the-php-mysql-script.jpg"><img loading="lazy" class="aligncenter wp-image-1466 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/06/Test-the-php-mysql-script.jpg" alt="Test the php mysql script" width="800" height="458" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/06/Test-the-php-mysql-script.jpg 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/06/Test-the-php-mysql-script-200x114.jpg 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p style="text-align: left;">The following video created by <a href="http://youtube.com/user/linuxscoop" target="_blank" rel="nofollow">LinuxScoop</a> and is describes basic steps how to installing LAMP in Ubuntu Server 14.04 LTS. Original Video found <a href="http://www.youtube.com/watch?v=wrZQDYa-9NM" target="_blank" rel="nofollow">here</a>.</p>
<p style="text-align: left;"><div class="video-container" style="margin-top:20px;"><iframe width="100%" height="409" src="http://www.youtube.com/embed/wrZQDYa-9NM" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen></iframe></div></p>
<h2>Conclusion</h2>
<p>Now that you have a <span style="text-decoration: underline;">LAMP</span> (Linux, Apache2, Mysql 5, and PHP5)  installed in Ubuntu Server 14.04. Installing LAMP in ubuntu server 14.04 you can also using single command:</p>
<pre>sudo apt-get install lamp-server^</pre>
<p>or</p>
<pre>sudo tasksel</pre>
<p>Then select [ * ] LAMP Server, It will install all package that needed for<strong> LAMP Stack</strong>.</p>
<p>Basically, you have installed a platform that will allow you to install web based apps in your server.</p>
<p><strong>Note :</strong> This tutorial have been tested on VPS <a href="https://www.digitalocean.com/?refcode=cafe9537d606" target="_blank" rel="nofollow">DigitalOcean</a> 512MB</p>
<p><strong>Link Reference:</strong></p>
<ul>
<li><a href="https://help.ubuntu.com/14.04/serverguide/index.html" target="_blank" rel="nofollow" class="broken_link">Ubuntu Server 14.04 Server Guide</a></li>
<li><a href="https://help.ubuntu.com/community/ApacheMySQLPHP" target="_blank" rel="nofollow">Ubuntu PHP Apache MySQL</a></li>
</ul>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/06/how-to-install-lamp-in-ubuntu-server-14-04-lts.html">How to Install LAMP in Ubuntu Server 14.04 LTS</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2014/06/how-to-install-lamp-in-ubuntu-server-14-04-lts.html/feed</wfw:commentRss>
			<slash:comments>20</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install Ubuntu Server 14.04 LTS Trusty Tahr</title>
		<link>https://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-install-ubuntu-server-14-04-trusty-tahr</link>
					<comments>https://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html#comments</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Mon, 28 Apr 2014 05:03:21 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Trusty Tahr]]></category>
		<category><![CDATA[Ubuntu Server 14.04]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1393</guid>

					<description><![CDATA[<p>This guide will describes the basic steps of installing Ubuntu Server 14.04 from beginning to end. As already we know, Ubuntu Server 14.04 LTS with codenamed &#8220;Trusty Tahr&#8221; is the newest version operating system for server released by canonical on April 17 2014. Come with LTS version Ubuntu Server 14.04 will be supported for 5 years</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html">How To Install Ubuntu Server 14.04 LTS Trusty Tahr</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This guide will describes the basic steps of installing <strong>Ubuntu Server 14.04</strong> from beginning to end. As already we know, <em>Ubuntu Server 14.04</em> LTS with codenamed &#8220;Trusty Tahr&#8221; is the newest version operating system for server released by canonical on April 17 2014.</p>
<p>Come with LTS version <span style="text-decoration: underline;">Ubuntu Server 14.04</span> will be supported for 5 years by canonical, it also includes few apps such as ( OpenStack 2014.1, Puppet 3, Xen 4.4, Ceph 0.79, Qemu 2.0.0, Open vSwitch 2.0.1, Libvirt 1.2.2, LXC 1.0, MAAS 1.5, Juju 1.18.1, strongSwan, MySQL, Apache 2.4, PHP 5.5) that easily to deploy and orchestrate services in the cloud.</p>
<p>More detail about Ubuntu Server 14.04 LTS you can found the full release notes at <a href="https://wiki.ubuntu.com/TrustyTahr/ReleaseNotes#Ubuntu_Server" target="_blank" rel="nofollow">here</a></p>
<h2>Step by Step Installing Ubuntu Server 14.04 Trusty Tahr</h2>
<p><strong>Step 1.</strong> First, Download ubuntu server 14.04 lts from ubuntu official site or click the following link to download the Ubuntu Server:</p>
<ul>
<li>Download <a href="http://releases.ubuntu.com/14.04/ubuntu-14.04-server-i386.iso" target="_blank" rel="nofollow" class="broken_link">Ubuntu Server 14.04 32 bit</a></li>
<li>Download <a href="http://releases.ubuntu.com/14.04/ubuntu-14.04-server-amd64.iso" target="_blank" rel="nofollow" class="broken_link">Ubuntu Server 14.04 64 bit</a></li>
</ul>
<p><strong>Step 2.</strong> After downloaded, burn ISO image of ubuntu server 14.04 into cd or usb flash disk. Set your computer booting from usb flash disk or cd/dvd. the system will boot (start) from the cd/dvd or USB flash drive and it appears.</p>
<p>Select what language you would like to install. I am going to use English language</p>
<p><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-language.png"><img loading="lazy" class="aligncenter wp-image-1400 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-language.png" alt="Ubuntu Server 14.04 language" width="640" height="480" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-language.png 640w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-language-200x150.png 200w" sizes="(max-width: 640px) 100vw, 640px" /></a></p>
<p><strong>Step 3.</strong> Select Install Ubuntu Server</p>
<p><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Install-Ubuntu-Server.png"><img loading="lazy" class="aligncenter wp-image-1401 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Install-Ubuntu-Server.png" alt="Ubuntu Server 14.04 Install Ubuntu Server" width="640" height="480" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Install-Ubuntu-Server.png 640w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Install-Ubuntu-Server-200x150.png 200w" sizes="(max-width: 640px) 100vw, 640px" /></a></p>
<p><strong>Step 4.</strong> Select language that used for the installation process, default <strong>English</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Select-language-for-Installation.png"><img loading="lazy" class="aligncenter wp-image-1402 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Select-language-for-Installation.png" alt="Ubuntu Server 14.04 Select language for Installation" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Select-language-for-Installation.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Select-language-for-Installation-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 5.</strong> Select location that will used for time zone and also for example to help select the system locale</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Select-Location.png"><img loading="lazy" class="aligncenter wp-image-1403 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Select-Location.png" alt="Ubuntu Server 14.04 Select Location" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Select-Location.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Select-Location-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 6.</strong> Configure keyboard layout</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Configure-the-keyboard.png"><img loading="lazy" class="aligncenter wp-image-1404 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Configure-the-keyboard.png" alt="Ubuntu Server 14.04 Configure the keyboard" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Configure-the-keyboard.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Configure-the-keyboard-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 8.</strong> Select country of origin for the keyboard. I am going to use <strong>English (US).</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-layout-of-keyboard-varies-per-country.png"><img loading="lazy" class="aligncenter wp-image-1405 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-layout-of-keyboard-varies-per-country.png" alt="Ubuntu Server 14.04 layout of keyboard varies per country" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-layout-of-keyboard-varies-per-country.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-layout-of-keyboard-varies-per-country-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 9. </strong> Select the layout matching the keyboard for your machine. Default <strong>English</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-select-keyboard-for-machine.png"><img loading="lazy" class="aligncenter wp-image-1406 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-select-keyboard-for-machine.png" alt="Ubuntu Server 14.04 select keyboard for machine" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-select-keyboard-for-machine.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-select-keyboard-for-machine-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 10. </strong>Auto configure network</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-loading-addtional-component.png"><img loading="lazy" class="aligncenter wp-image-1407 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-loading-addtional-component.png" alt="Ubuntu Server 14.04 loading addtional component" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-loading-addtional-component.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-loading-addtional-component-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 11. Set Up users and password : </strong>Enter full name or real name for the new user, then select <strong>&lt;Continue&gt;</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-users-and-passwords.png"><img loading="lazy" class="aligncenter wp-image-1408 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-users-and-passwords.png" alt="Ubuntu Server 14.04 setup users and passwords" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-users-and-passwords.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-users-and-passwords-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 12. Set Up users and password : </strong>Enter name for your account, then select <strong>&lt;Continue&gt;</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-users-and-passwords-2.png"><img loading="lazy" class="aligncenter wp-image-1409 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-users-and-passwords-2.png" alt="Ubuntu Server 14.04 setup users and passwords 2" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-users-and-passwords-2.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-users-and-passwords-2-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 13. Set Up users and password :</strong> Enter password for the new user</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-password.png"><img loading="lazy" class="aligncenter wp-image-1410 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-password.png" alt="Ubuntu Server 14.04 setup password" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-password.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-setup-password-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 14. Set Up users and password :</strong> Re-enter password for the new user</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-re-enter-password.png"><img loading="lazy" class="aligncenter wp-image-1411 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-re-enter-password.png" alt="Ubuntu Server 14.04 re-enter password" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-re-enter-password.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-re-enter-password-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 15. Set Up users and password : </strong>Answer <strong>&lt;Yes&gt;</strong> if you want to encrypt home directory. I recommend answer &lt;<strong>No&gt;</strong> because if your hard driver ever gets corrupted and you need to retrieve information it will be much easier to access it.</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Encrypt-Home-Directory.png"><img loading="lazy" class="aligncenter wp-image-1412 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Encrypt-Home-Directory.png" alt="Ubuntu Server 14.04 Encrypt Home Directory" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Encrypt-Home-Directory.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Encrypt-Home-Directory-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 16. </strong>Select your time zone</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-time-zone.png"><img loading="lazy" class="aligncenter wp-image-1413 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-time-zone.png" alt="Ubuntu Server 14.04 time zone" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-time-zone.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-time-zone-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 17. Partitioning Disks: </strong>In this case i will used partitioning methode LVM</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-partition-disk.png"><img loading="lazy" class="aligncenter wp-image-1414 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-partition-disk.png" alt="Ubuntu Server 14.04 partition disk" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-partition-disk.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-partition-disk-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 17. Partitioning Disks: </strong>Select Disk to partition</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Partition-LVM.png"><img loading="lazy" class="aligncenter wp-image-1415 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Partition-LVM.png" alt="Ubuntu Server 14.04 Partition LVM" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Partition-LVM.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Partition-LVM-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 18. Partitioning Disks: </strong>Answer<strong> &lt;Yes&gt; </strong>to write the change to disk and configure LVM</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-configure-LVM.png"><img loading="lazy" class="aligncenter wp-image-1416 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-configure-LVM.png" alt="Ubuntu Server 14.04 configure LVM" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-configure-LVM.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-configure-LVM-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 19. Partitioning Disks: </strong>Assign the size/amount of volume group to use for guided patitioning.</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-lvm-partition-2.png"><img loading="lazy" class="aligncenter wp-image-1417 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-lvm-partition-2.png" alt="Ubuntu Server 14.04 lvm partition 2" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-lvm-partition-2.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-lvm-partition-2-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 20. Partitioning Disks: </strong>Answer<strong> &lt;Yes&gt; </strong>to Write all the change to disk</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-end-of-partition-LVM.png"><img loading="lazy" class="aligncenter wp-image-1418 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-end-of-partition-LVM.png" alt="Ubuntu Server 14.04 end of partition LVM" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-end-of-partition-LVM.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-end-of-partition-LVM-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 21. Installing the System..</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-installing-system-.png"><img loading="lazy" class="aligncenter wp-image-1419 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-installing-system-.png" alt="Ubuntu Server 14.04 installing system" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-installing-system-.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-installing-system--200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 22. Configure HTTP Proxy: Select &lt;Continue&gt; unless you are using a proxy, in this case we are not.</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-set-proxy.png"><img loading="lazy" class="aligncenter wp-image-1420 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-set-proxy.png" alt="Ubuntu Server 14.04 set proxy" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-set-proxy.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-set-proxy-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 23. Configure Taskel: </strong>Select No automatic updates</p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-configuring-taskel.png"><img loading="lazy" class="aligncenter wp-image-1421 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-configuring-taskel.png" alt="Ubuntu Server 14.04 configuring taskel" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-configuring-taskel.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-configuring-taskel-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 24. Software Selection: Select [*] OpenSSH Server by pressing space key on keyboard, then select continue</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-ssh-server.png"><img loading="lazy" class="aligncenter wp-image-1422 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-ssh-server.png" alt="Ubuntu Server 14.04 ssh server" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-ssh-server.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-ssh-server-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 24. Installing all Software.</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-install-software.png"><img loading="lazy" class="aligncenter wp-image-1423 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-install-software.png" alt="Ubuntu Server 14.04 install software" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-install-software.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-install-software-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 25. Answer &lt;YES&gt; to Install the GRUB boot loader on a hardisk</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-install-boot-loader.png"><img loading="lazy" class="aligncenter wp-image-1424 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-install-boot-loader.png" alt="Ubuntu Server 14.04 install boot loader" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-install-boot-loader.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-install-boot-loader-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p><strong>Step 25. Installation is Complete, Select &lt;Continue&gt;</strong></p>
<p style="text-align: center;"><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Finishing-Installation.png"><img loading="lazy" class="aligncenter wp-image-1425 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Finishing-Installation.png" alt="Ubuntu Server 14.04 Finishing Installation" width="800" height="600" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Finishing-Installation.png 800w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-Finishing-Installation-200x150.png 200w" sizes="(max-width: 800px) 100vw, 800px" /></a></p>
<p>Ubuntu Server 14.04 Trusty Tahr ready to use..</p>
<p><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-is-ready.png"><img loading="lazy" class="aligncenter wp-image-1426 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-is-ready.png" alt="Ubuntu Server 14.04 is ready" width="640" height="480" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-is-ready.png 640w, https://ubuntuserverguide.com/wp-content/uploads/2014/04/Ubuntu-Server-14.04-is-ready-200x150.png 200w" sizes="(max-width: 640px) 100vw, 640px" /></a></p>
<p>The following video created by <a href="http://youtube.com/user/linuxscoop" target="_blank" rel="nofollow">LinuxScoop</a> and is describes basic steps how to installing Ubuntu Server 14.04 LTS from begining to end. Original Video found <a href="http://www.youtube.com/watch?v=y1cRaSZHOuE" target="_blank" rel="nofollow">here</a></p>
<div class="ktz-videowrapper"><iframe loading="lazy" width="500" height="281" src="http://www.youtube.com/embed/y1cRaSZHOuE?feature=oembed" frameborder="0" allowfullscreen></iframe></div>
<p><strong>Link Reference:</strong></p>
<ul>
<li><a href="http://www.ubuntu.com/download/server" target="_blank" rel="nofollow">Ubuntu Server</a></li>
</ul>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html">How To Install Ubuntu Server 14.04 LTS Trusty Tahr</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2014/04/how-to-install-ubuntu-server-14-04-trusty-tahr.html/feed</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Initial Server Configuration on Ubuntu Server 14.04</title>
		<link>https://ubuntuserverguide.com/2014/04/initial-server-configuration-on-ubuntu-server-14-04.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=initial-server-configuration-on-ubuntu-server-14-04</link>
					<comments>https://ubuntuserverguide.com/2014/04/initial-server-configuration-on-ubuntu-server-14-04.html#respond</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Sun, 27 Apr 2014 15:50:21 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Ubuntu Server]]></category>
		<category><![CDATA[Ubuntu Server 14.04]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1786</guid>

					<description><![CDATA[<p>In this tutorial, we are going to describes the first things you should do after fresh installation Ubuntu Server 14.04. There are several configuration steps that you should follow as part of the basic setup of Ubuntu Server 14.04. Step 1 &#8211; Login as Root via SSH Before login into your ubuntu server, you already</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/04/initial-server-configuration-on-ubuntu-server-14-04.html">Initial Server Configuration on Ubuntu Server 14.04</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>In this tutorial, we are going to describes the first things you should do after fresh installation <strong>Ubuntu Server 14.04</strong>. There are several configuration steps that you should follow as part of the basic setup of Ubuntu Server 14.04.</p>
<h2>Step 1 &#8211; Login as Root via SSH</h2>
<p>Before login into your ubuntu server, you already know the information about your server&#8217;s public IP address and the password for the &#8220;root&#8221; user&#8217;s account. Now, log in into your server with the following command:</p>
<pre>ssh root@SERVER_IP_ADDRESS</pre>
<p>If you see a message like below, don&#8217;t panic. As it is your first connection to your ubuntu server, your computer is telling you that it doesn&#8217;t recognize the remote server. Just type &#8220;yes&#8221; to confirm the authentication.</p>
<pre>The authenticity of host '123.123.123.123 (123.123.123.123)' can't be established.
ECDSA key fingerpring is
79:95:46:1a:ab:37:11:8e:86:54:36:38:bb:3c:fa:c0.
Are you sure you want to continue connecting (yes/no)?</pre>
<h2>Step 2 &#8211; Updating Ubuntu Server</h2>
<p>After you have logged into your ubuntu server as root, update your ubuntu server repositories by typing the following command.</p>
<pre>apt-get update</pre>
<p>Type the followong command, if you want to upgrade all existing packages to the latest version. You should hit Y after it asks you if you want to update all packages.</p>
<pre>apt-get upgrade</pre>
<h2 id="SL_balloon_obj">Step 3 &#8211; Change Password root user</h2>
<div>You are not likely to remember the password that is currently set for your root account. You can change the password to something you will remember more easily by typing:</div>
<pre>passwd</pre>
<div>It will ask you to enter and confirm your new password. During this process, you will not see anything show up on your screen as you type. This is intentional and is there so that people looking over your shoulder cannot guess your password by the number of characters.</div>
<h2>Step 4 &#8211; Creating a New Account</h2>
<div>In this this tutorial we&#8217;ll creates a new user called &#8220;<strong>ubuntu</strong>&#8220;, but you can replacing &#8220;<strong>ubuntu&#8221;</strong> with whatever username you&#8217;d like to use. Now, create the new user account that we will use to log in from now on, to do this by typing the following command:</div>
<pre>adduser ubuntu</pre>
<div>You will be asked a few questions, starting with the account password.</div>
<h2>Step 5 &#8211; Giving Your New User Account Sudo Access</h2>
<div>Now we need to give your new account acccess to the sudo command, so that you can run commands as root. To do this, run the following command :</div>
<pre>visudo</pre>
<div>This will open up the file <em>/etc/sudoers</em>. Find a section <strong># user privilege specification</strong>, It will look like this:</div>
<pre># User privilege specification
root ALL=(ALL:ALL) ALL</pre>
<div>under section<strong> root ALL=(ALL:ALL)</strong>, add the following line :</div>
<pre>ubuntu ALL=(ALL:ALL) ALL</pre>
<div>Save this file by pressing Ctrl + O and press Enter to confirm you would like to save. Then press Ctrl + X to exit the editor.</div>
<h2>Step 6 &#8211; Configuring the SSH server</h2>
<div>Open the ssh configuration file :</div>
<pre>nano /etc/ssh/sshd_config</pre>
<div>Find the following section :</div>
<pre>Port 22
PermitRootLogin yes</pre>
<div>Then change to :</div>
<pre>Port 22500
PermitRootLogin no</pre>
<div>If you&#8217;re done, Save this file by pressing Ctrl + O and press Enter to confirm you would like to save. Then press Ctrl + X to exit the editor.</div>
<ul>
<li><strong>Port</strong> : Although port 22 is the default. In this tutorial we are using port 22500, you can change this to any number between 1025 and 65536.</li>
<li><strong>PermitRootLogin</strong>: change this from yes to no to stop future root login. You will now only be logging on as the new user.</li>
</ul>
<div>Restart SSH server with the following command:</div>
<pre>service ssh restart</pre>
<div>Log out of the root user by typing command:</div>
<pre>logout</pre>
<div>and log in back as your new user via ssh:</div>
<pre>ssh -p 22500 ubuntu@SERVER_IP_ADDRESS</pre>
<div>Remember, if you need to run a command with root privileges, type &#8220;sudo&#8221;.</div>
<pre>sudo command_to_run</pre>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/04/initial-server-configuration-on-ubuntu-server-14-04.html">Initial Server Configuration on Ubuntu Server 14.04</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2014/04/initial-server-configuration-on-ubuntu-server-14-04.html/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Test Internet Connection Speed using Speedtest-Cli on Ubuntu Server</title>
		<link>https://ubuntuserverguide.com/2014/01/how-to-test-internet-connection-speed-using-speedtest-cli-on-ubuntu-server.html?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-to-test-internet-connection-speed-using-speedtest-cli-on-ubuntu-server</link>
					<comments>https://ubuntuserverguide.com/2014/01/how-to-test-internet-connection-speed-using-speedtest-cli-on-ubuntu-server.html#comments</comments>
		
		<dc:creator><![CDATA[ubuntucontrib]]></dc:creator>
		<pubDate>Wed, 22 Jan 2014 14:06:16 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Speed Test]]></category>
		<category><![CDATA[Speedtest-Cli]]></category>
		<category><![CDATA[Ubuntu Server]]></category>
		<guid isPermaLink="false">http://ubuntuserverguide.com/?p=1366</guid>

					<description><![CDATA[<p>When you&#8217;re doing speed tests your internet connection usually use Speedtest.net. but Speedtest.net requires the Adobe Flash Player plugin to perform the speed test, although most users have flash player on their web browsers, this is very uncomfortable for those who do not have a graphical user interface (GUI), administrators remote server, VPS or just users not</p>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/01/how-to-test-internet-connection-speed-using-speedtest-cli-on-ubuntu-server.html">How to Test Internet Connection Speed using Speedtest-Cli on Ubuntu Server</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When you&#8217;re doing speed tests your internet connection usually use <a title="SpeedTest" href="http://www.speedtest.net/" target="_blank" rel="nofollow"><strong>Speedtest</strong>.net</a>. but <em>Speedtest</em>.net requires the Adobe Flash Player plugin to perform the speed test, although most users have flash player on their web browsers, this is very uncomfortable for those who do not have a graphical user interface (GUI), administrators remote server, VPS or just users not using FlashPlayer for personal reasons.</p>
<p>Well, on this is a simple tutorial I will show you how to test the Internet connection speed on ubuntu server using the command line tool called <span style="text-decoration: underline;">speedtest</span>-cli. Speedtest-cli is a simple client written in Python CLI to measure bidirectional bandwidth Internet using the Speedtest.net infrastructure. It works with Python 2.4 to 3.4.</p>
<h2>Installing speedtest-cli Using pip command:</h2>
<p>First, install pip with the following command:</p>
<pre>sudo apt-get install python-pip</pre>
<p>Once pip installed, now install speedtest-cli by using pip command:</p>
<pre>sudo pip install speedtest-cli</pre>
<h2>Installing speedtest-cli Manually</h2>
<p>To installing speedtest-cli in manually method you need to download the latest speedtest-cli python script from github:</p>
<pre>sudo wget https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py</pre>
<p>make speedtest_cli.py executable</p>
<pre>sudo chmod a+rx speedtest_cli.py</pre>
<p>Move speedtest_cli.py to directory /usr/bin</p>
<pre>sudo mv speedtest_cli.py /usr/bin/speedtest-cli</pre>
<h2>Test Connection Speed using Speedtest-cli</h2>
<p>It is easy to check internet speed with speedtest-cli. Just type command <strong>speedtest-cli</strong> without any arguments.</p>
<pre>speedtest-cli</pre>
<p>After execute this command it will automatically detect locate the closest of Speedtest server (in terms of geographical distance) and show the report download speed an upload speed</p>
<p><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/01/speed-test-using-speedtest-cli.png"><img loading="lazy" class="aligncenter wp-image-1371 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/01/speed-test-using-speedtest-cli.png" alt="speed test using speedtest-cli" width="718" height="406" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/01/speed-test-using-speedtest-cli.png 718w, https://ubuntuserverguide.com/wp-content/uploads/2014/01/speed-test-using-speedtest-cli-200x113.png 200w" sizes="(max-width: 718px) 100vw, 718px" /></a></p>
<p>If you would like to share the results of the speed test, you can use &#8220;&#8211;share&#8221; option after speedtest-cli command, which allows you to share results of the speed test with others in an image format via Speedtest.net .</p>
<pre>speedtest-cli --share</pre>
<p><img loading="lazy" class="aligncenter size-full wp-image-1372" src="http://ubuntuserverguide.com/wp-content/uploads/2014/01/speedtest.png" alt="speedtest" width="300" height="135" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/01/speedtest.png 300w, https://ubuntuserverguide.com/wp-content/uploads/2014/01/speedtest-200x90.png 200w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>For a list of servers Speedtest.net available worldwide, use &#8220;&#8211;list&#8221; option. An ordered list of servers is displayed Speedtest.net (geographically nearest first).</p>
<pre>speedtest-cli --list</pre>
<p><a href="http://ubuntuserverguide.com/wp-content/uploads/2014/01/speed-test-.png"><img loading="lazy" class="aligncenter wp-image-1373 size-full" src="http://ubuntuserverguide.com/wp-content/uploads/2014/01/speed-test-.png" alt="speed test" width="718" height="406" srcset="https://ubuntuserverguide.com/wp-content/uploads/2014/01/speed-test-.png 718w, https://ubuntuserverguide.com/wp-content/uploads/2014/01/speed-test--200x113.png 200w" sizes="(max-width: 718px) 100vw, 718px" /></a></p>
<p>In the server list shown above, each server Speedtest.net shows a server ID associated on the front. You can manually specify the server ID for the test, instead of using the geographically closest server. For example, if I want to use a sever in Valenca &#8211; Brazil, I can specify a corresponding server ID (eg, 3203).</p>
<pre>speedtest-cli --server 3203</pre>
<p>More information about speedtest-cli, type:</p>
<pre>speedtest-cli --help</pre>
<p>The post <a rel="nofollow" href="https://ubuntuserverguide.com/2014/01/how-to-test-internet-connection-speed-using-speedtest-cli-on-ubuntu-server.html">How to Test Internet Connection Speed using Speedtest-Cli on Ubuntu Server</a> appeared first on <a rel="nofollow" href="https://ubuntuserverguide.com">Ubuntu Server Guide</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ubuntuserverguide.com/2014/01/how-to-test-internet-connection-speed-using-speedtest-cli-on-ubuntu-server.html/feed</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
	</channel>
</rss>