How to install Webuzo on CentOS 7

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, 465, 993 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 the LAMP Stack, DNS Server and FTP server along with Webuzo

OR

./install.sh --install=lamp,bind // This will install the LAMP Stack(softname -> lamp) and DNS Server
(softname -> bind) along with Webuzo.
Note : softname for Apps should be comma separated.
Get list of softnames for the Apps here : http://api.webuzo.com/apps.php

OR

./install.sh --install=none // This will install only Webuzo without any LAMP Stack.You can later install apps from the Apps Category in the Enduser Panel.

The installation will begin immediately. It may seem that the installation has stopped, if your network speed is slow, but please let it continue. You will see something like this :

This will setup the required Web Server and other important configurations. Note : A log file of the installation process will be created – /root/webuzo-install.log

Initial Setup

After the installation is completed you will have to do the Initial Setup.

Account Information

You will need to enter the Username, Email Address and Password, etc for initially configuring Webuzo.

Domain and Nameservers

Please enter a valid Domain Name say example.com.
You will need to point your nameserver to the servers IP where you are installing Webuzo. Webuzo will ask you for the Primary Nameserver (e.g. ns1.example.com) and the Secondary Nameserver (e.g. ns2.example.com).

Use IP as Domain

If you don’t have a valid domain then you can use your servers IP as the hostname. Webuzo will also suggest to you what your server IP is. In such a case you can enter any dummy NameServer and your primary and secondary name server.

Submit the details

After you have filled in all details please submit the form.
Webuzo will start configuring the server immediately. This may take 3-4 minutes depending on your servers speed.

Setup Completed

You will see a screen as follows when the initial setup is finished.

Login

Webuzo has two sections :

Admin Panel

To login to the Softaculous Webuzo Admin Panel, visit the following URL :
https://Your-IP:2005/
OR
http://Your-IP:2004/

Enduser Panel

To login to the Softaculous Webuzo Enduser Panel, visit the following URL :
https://Your-IP:2003/
OR
http://Your-IP:2002/

The username and password will be the same that you entered during the Initial Setup

Just a Screenshot !

  • webuzo, centos, linux-server
  • 0 Корисниците го најдоа ова како корисно
Дали Ви помогна овој одговор?

Related Articles

Change HostName in CentOS 7 / RHEL 7

Method 1 : nmcli To view the current hostname : # nmcli general hostname...

How to delete terminal history in Linux

You can clear your bash history like this: cat /dev/null > ~/.bash_history && history...

How to change SSH Port in Linux

# vi /etc/ssh/sshd_configYou have to change port 22 to whatever you want#Port 22 #ta delete kore...

How to install wget on CentOS 7/8

The procedure to install wget command is as follows on CentOS Linux 7/8: Open a terminal...

How to block IP address on a Linux Server

To block an IP on your Linux server you need to use iptables tools  and netfilter firewall. First...