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

root@jumpserver:~#  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

root@jumpserver:~#  service mysqld start  

 

  Make sure that web server and SQL server startup on boot

root@jumpserver:~#  chkconfig   mysqld on

root@jumpserver:~#  chkconfig   httpd   on

 

  Set the root password with following command

root@jumpserver:~#  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

root@jumpserver:~#  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

root@jumpserver:~# php5enmod mcrypt