Skip to main content

Posts

Showing posts from March, 2018

HOW TO INSTALL WEBUZO ON CENTOS SERVER

Softaculous Webuzo is a solitary client APPS Panel which you can use to introduce 100s of utilizations. Introducing Webuzo is exceptionally basic. This guide demonstrates to you best practices to introduce Webuzo on a recently introduced Operating System. Requirements Newly installed CentOS 6.x / 7.x or Red Hat Enterprise Linux 6.x / 7.x or Scientific Linux 6.x / 7.x (x86_64) / Ubuntu LTS YUM / apt-get / tar / wget packages installed RAM - Minimum 1 GB (Recommended 2 GB for best performance) Disk Space - Minimum 5 GB (Recommended 10 GB for best performance) Open Ports - 2002, 2003, 2004, 2005, 21, 22, 25, 53, 80, 143, 443 and 3306 (It is recommended to keep these ports open on your server) Note  : There should be no PHP, Apache, MySQL installed on the server Installation Open a Shell Terminal (e.g. PuTTY) and SSH to your server. Run the following commands: wget -N http://files.webuzo.com/install.sh chmod 0755 install.sh ./install.sh // This will install th...

HOT TO INSTALL EHCP ON UBUNTU 14.04 VPS

First Download the installation file using this command  wget http://www.ehcp.net/ehcp_latest.tgz Next, extract the package with this command tar -zxvf ehcp_latest.tgz Now lets install EHCP with its simple this command cd ehcp/ . /install .sh When you issued above order, it will then shows you EHCP establishment page with a group of data and guideline about what will occur straightaway. You should simply to peruse it precisely and continue by hitting Enter catch. Kindly do recollect that the introduce procedure will happen in approx 1 hour and it will solicit you arrangement from questions you need to reply (like characterizing your passwords for a few administrations). So hold tight and ensure you have continuous Web association. MYSQL SETUP Step 6 – Enter the password for the MySQL root user and hit OK then re-enter the password again. Step 7 – Next, EHCP will ask your name and your email. Enter it correctly Step 8 – Enter the password for My...

MATE desktop environment via XRDP centos 7

1 Install MATE The following command will install MATE. sudo yum install -y epel-release sudo yum groupinstall -y "MATE Desktop" sudo reboot 2 Install XRDP sudo yum install -y epel-release sudo yum install -y xrdp sudo systemctl enable xrdp sudo systemctl start xrdp 3 Open XRDP port. sudo firewall-cmd --add-port=3389/tcp --permanent sudo firewall-cmd --reload 4 Create ~/.Xclients Create .Xclients in home directory of user to be connected. echo "mate-session" > ~/.Xclients chmod a+x ~/.Xclients ******************************************************************* Uninstall MATE The following command will uninstall MATE. ******************************************************************* $ sudo yum groupremove -y "MATE Desktop" $ sudo yum autoremove -y