On Linux systems installed Bugfree

1. The overall process

First, install Apache server, start the installation process and verify proper operation;

Second, install MySQL server, installed by default, you can verify whether it is normal;

Third, the PHP server installation, installed by default, you can verify whether it is normal;

Fourth, the installation Bugfree server, download Bugfree Unzip the package, configure the installation, the installation is complete test the machine / other client is normal access;

Fifth, configure the mail server, note ... \ modify MailService.php file bugfree \ protected \ service under this folder

2. The detailed process

2.1 Installing Apache server

You can enter the SSH

#yum install httpd

Tip updated:

  httpd.x86_64 0:2.2.15-59.el6.centos

Be upgraded as a dependency:

  httpd-tools.x86_64 0:2.2.15-59.el6.centos

After completion of the above start the installation process,

#service httpd start

New verification index.html file in the root directory, the browser normally open on OK.

#find / -name httpd.conf

Look for the root directory, do find a new operation in WinScp in.

2.2 Installing MySQL server

Check mysqld is installed:

#service mysqld status

If not, proceed as follows to install:

#yum install mysql++.i686

#yum install mysql-libs.i686

#yum install mysql-server.i686 

#yum install php-mysql.i686

My installation program does not find two behind, and the system has been built, the reader can choose to install the system in accordance with the actual situation.

After the installation is complete, start the process:

#service mysqld start

Then check whether the service port call:

# netstat –ntl

From a security point of view, you need to configure MySQL server root password before I have configured the system, the reader is to find information on their own.

PHP 2.3 server installation

The default is already installed, you can verify whether under normal operation.

Path is typically mounted in the / etc directory, the process can refer to find.

After setting the above three, httpd and mysqld process can be set to boot:

#chkconfig httpd on

#chkconfig mysqld on

After the entry into force shutdown -r now to reboot the system.

2.4 server installation Bugfree

After downloading the installation package Bugfree extracting the extract from the entire folder html copied to the folder, the path is typically / var / www / html /.

Bugfree initial user name: admin default password: 123456

Configuring Mail Server 2.5

In the .. \ bugfree \ protected \ service under this folder, modify MailService.php, there are many online such information will not repeat them here.

Guess you like

Origin www.cnblogs.com/fengye151/p/11519203.html