Skip to Content

Install Ezeelogin on older version of operating system

How to install  SSH Jump server   in Centos 6.x ?

 We do not recommend using Centos 6 as it is no longer supported by the Linux community with security patches, vulnerabilities, or bug fixes. Therefore, continuing to use CentOS 6 could pose a significant security risk.

 
  Enter the following command on your terminal to install ezeelogin dependency package on centos 6

[email protected]:~#  yum -y install epel-release httpd openssl php php-mysql php-process php-common php-cli php-mcrypt bzip2 mod_ssl mysql mysql-server php-ldap git ; yum install php-mcrypt

[email protected]:~#  service mysqld start  

 

  Make sure that web server and SQL server startup on boot

[email protected]:~#  chkconfig   mysqld on

[email protected]:~#  chkconfig   httpd   on

 

  Set the root password with following command

[email protected]:~#  mysql_secure_installation

 

How to install SSH Jump server  in Ubuntu 14.x ?

  Enter the following command on your terminal to install ezeelogin dependency package on Ubuntu 14

[email protected]:~#  apt-get update; apt-get install php5 apache2 mysql-server libapache2-mod-php5 php5-curl php5-mysql php5-mcrypt php5-ldap nodejs git

 

  Enable php-mcrypt extension by following command

[email protected]:~# php5enmod mcrypt