Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the ot-apollo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home3/achieve/public_html/knowledgebase/wp-includes/functions.php on line 6131

Warning: Cannot modify header information - headers already sent by (output started at /home3/achieve/public_html/knowledgebase/wp-includes/functions.php:6131) in /home3/achieve/public_html/knowledgebase/wp-includes/feed-rss2.php on line 8
Installation – Knowledge https://knowledge.achieveee.com Fri, 03 May 2019 06:46:21 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 https://knowledge.achieveee.com/wp-content/uploads/2016/05/cropped-favicon-32x32.png Installation – Knowledge https://knowledge.achieveee.com 32 32 Kick start your LAMP Stack server https://knowledge.achieveee.com/knowledge_base/kick-start-your-lamp-stack-server/?utm_source=rss&utm_medium=rss&utm_campaign=kick-start-your-lamp-stack-server https://knowledge.achieveee.com/knowledge_base/kick-start-your-lamp-stack-server/#respond Fri, 06 May 2016 11:57:32 +0000 http://achieveee.com/knowledgebase/?post_type=knowledge_base&p=2432 LAMP is a group of open source softwares and an acronym for Linux, Apache, MySQL, and PHP

Below are some software’s which would help you run your web applications on the server

First Step: Switch to Super User from your terminal

sudo su
  1. Apache

    apt-get update
    apt-get install apache2
  2. PHP 7.2

    add-apt-repository ppa:ondrej/php
    apt-get update
    apt-get install python-software-properties
    apt-get update
    apt-get install php7.2 libapache2-mod-php7.2 php7.2-curl php7.2-mbstring php7.2-xml php7.2-opcache php7.2-mysql
    
  3. MySQL

    apt-get install mysql-server
  4. Curl

    apt-get install curl
  5. Git

    apt-get install git
  6. Composer (To run globally)

    curl -sS https://getcomposer.org/installer | php
    mv composer.phar /usr/local/bin/composer
  7. Vim (Text Editor)

    apt-get install vim
  8. Node, Node.js & NPM

    apt-get remove --purge node
    apt-get remove --purge nodejs
    
    curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
    apt-get install -y nodejs
    
    sudo ln -s /usr/bin/nodejs /usr/bin/node
]]>
https://knowledge.achieveee.com/knowledge_base/kick-start-your-lamp-stack-server/feed/ 0