https://drive.google.com/open?id=1z8PD2iN2zE5RVbAd8R9giuF7Rjkpmolj
https://drive.google.com/open?id=1Io4psn2ST5rOtNGcGSfOL346HgoN88mM
https://drive.google.com/open?id=1Q-CvmE23s61gtSW4JUAQOm1Ux9qWkbGo
最後欲安裝的時候,出現如圖中的狀態
以下是我的步驟
dnf -y install mariadb mariadb-server
安裝 Apache Web Server
dnf -y install httpd mod_dav_svn
安裝php7.3
dnf -y install http://rpms.remirepo.net/enterprise/remi-release-8.rpm
dnf install dnf-utils -y
dnf config-manager --set-enabled remi
dnf -y install php73 php73-php-bcmath.x86_64 php73-php-cli.x86_64 php73-php-common.x86_64 php73-php-enchant.x86_64 php73-php-gd.x86_64 php73-php-intl.x86_64 php73-php-ldap.x86_64 php73-php-mbstring.x86_64 php73-php-pdo-dblib.x86_64 php73-php-pear.noarch php73-php-process.x86_64 php73-php-recode.x86_64 php73-php-soap.x86_64 php73-php-xml.x86_64 php73-php-xmlrpc.x86_64 php73-php-pecl-rrd.x86_64 php73-php-pecl-uuid.x86_64 php73-php-devel.x86_64 php73-php-mysqlnd.x86_64 php73-php-pecl-mysql-xdevapi.x86_64 php73-php-pspell.x86_64 php73-php-pecl-memcached.x86_64
mkdir /usr/share/fonts/truetype
wget http://www.study-area.org/apt/firefly-font/fireflysung-1.3.0.tar.gz
tar xvzf fireflysung-1.3.0.tar.gz
cp fireflysung-1.3.0/fireflysung.ttf /usr/share/fonts/truetype/arial.ttf
systemctl start mariadb
systemctl enable mariadb
mysqladmin -u root password '<root的密碼>'
mysql -u root -p
create database mantis;
create user 'mantisdbuser'@'localhost' identified by '1qaz@WSX';
grant all privileges on mantis.* to 'mantisdbuser'@'localhost';
flush privileges;
exit;
systemctl start httpd
systemctl enable httpd
systemctl restart httpd
wget http://sourceforge.net/projects/mantisbt/files/mantis-stable/2.23.0/mantisbt-2.23.0.tar.gz
cd /var/www/html/
tar -xvzf ~/mantisbt-2.23.0.tar.gz
mv mantisbt-2.23.0 mantis
mkdir /var/www/html/mantis/log # 放置郵件寄送的紀錄
mkdir /var/www/html/mantis/attachment # 放置 Issus 的附件. 若想把附件直接放 Database (這樣建立專案比較簡單), 則此步驟可以省略
chown -R apache.apache mantis
會是mantis尚不支援Centos 8嗎? 還請各位先進指教