Entradas

Mostrando entradas de julio, 2016

Install LAMP Centos 7 Minimal

Imagen
Install Apache, PHP And MySQL On CentOS 7 (LAMP) This tutorial exists for these OS versions CentOS 6.5 CentOS 6.2 CentOS 6.1 CentOS 6.4 CentOS 6.3 On this page 1 Preliminary Note 2 Installing MySQL / MariaDB 3 Installing Apache2 4 Installing PHP5 5 Testing PHP5 / Getting Details About Your PHP5 Installation 6 Getting MySQL Support In PHP5 7 phpMyAdmin installation 8 Links This tutorial shows how you can install an Apache2 webserver on a CentOS 7.0 server with PHP5 support (mod_php) and MySQL support. LAMP is short for L inux,  A pache,  M ySQL,  P HP. 1 Preliminary Note In this tutorial, I use the hostname  server1.example.com  with the IP address 192.168.0.100 . These settings might differ for you, so you have to replace them where appropriate. I will add the EPEL repo here to install latest phpMyAdmin as follows: rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY* yum -y install epel-release 2 Installing MySQL / MariaDB Ma...

Install GlassFish

Imagen
Install GlassFish 4.1 In this tutorial, we will explain how to install GlassFish Server Open Source Edition 4.1 on a Centos 7.1 VPS. GlassFish is an open-source application server project and it’s Oracle’s concrete implementation of Java EE. This guide should work on other Linux VPS systems as well but was tested and written for a Centos 7 VPS. Login to your VPS via SSH ssh root@vps Update the system and install necessary packages [root]$ yum -y update [root]$ yum install unzip wget Create a new system user Create a new user for the Glassfish server: [root]$ adduser \ --comment 'Glassfish User' \ --home-dir /home/glassfish \ glassfish Install Oracle JDK 8 GlassFish 4.1 requires JDK 8 u20 or above. Use the command below to download the Oracle JDK 8 from the command line using wget: [root]$ wget --no-cookies \ --no-check-certificate \ --header "Cookie: oraclelicense=accept-securebackup-cookie" \ "http://download.orac...