centos7 installation bugfree3

 

1 installed Apache. 
Yum the install the httpd 

2 installed MySQL. 
Wget -i -C HTTP: // dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm 
yum the install mysql57 -Y-Community-Release -el7- 10 .noarch.rpm 
yum -y install MySQL-community- Server 

# turn MySQL service 
systemctl Start mysqld.service 
# View MySQL status 
systemctl status mysqld.service 

# obtain a password 
grep " password " / var / log / mysqld.log 

# use password 
MySQL -uroot-- the p- 

# modify password length rule 
MySQL > the SET , Ltd. Free Join validate_password_policy = 0 ; 
MySQL > the SET  , Ltd. Free Join validate_password_length = 1 ; 

# change the root password for 
the ALTER the USER ' root ' @ ' localhost ' IDENTIFIED BY ' 111111 ' ; 


create new users: 
the CREATE the USER ' BugFree ' @ ' localhost ' IDENTIFIED BY ' 123456 ' ; 
new user authorization: 
Grant All privileges ON * * to BugFree @ localhost IDENTIFIED by. ' 123456' ; 


3 . Install PHP 
yum the install PHP PHP -MySQL Gd PHP-PHP-PHP-IMAP LDAP ODBC PHP-PHP-PHP-PEAR XML PHP- the xmlrpc 

. 4 mounted plug PHP encryption algorithm. 
Yum the install libmcrypt 
yum the install PHP - the mcrypt 
NOTE: libmcrypt encryption algorithm extensions, PHP - mcrypt is mcrypt an extension to PHP's www.linuxidc.com 


downloading codecs

  Link: https: //pan.baidu.com/s/1rSiW76ayBQ-QBIshjzgpng
  extraction code: ky80


Unzip the file after rename: mv bugfree3 bugfree 
the bugfree into the apache DocumentRoot: bugfree mv / var / the WWW / HTML / 

create attachments upload directory: 
cd / var / the WWW / HTML / 
mkdir BugFile 

read and write permissions to change the bugfree: chmod -R 777 BugFree 
change BugFile read and write permissions: chmod -R 777 BugFile 


vi / etc / httpd / conf / the httpd.conf 
modify the default port number for 
the Listen 80 -> the Listen 7999 

start httpd service: 
service httpd start 



your browser to http: // <ServerName>: Port / BugFree / the install 
example: HTTP: // 192.168.31.20:7999/bugfree/install
Follow the prompts to configure bugfree associated database 
Note: To operate at root privileges, namely landing with root or sudo to operate the 


installation is complete, enter BugFree 
initial user name: admin default password: 123456 




Reference: 
HTTPS: // www.cnblogs.com/ nicknailo / Articles / 8563737.html 
HTTPS: // www.linuxidc.com/Linux/2012-06/62171.htm

 

Guess you like

Origin www.cnblogs.com/sea-stream/p/11605682.html