1. # 安装需要的包
$ sudo yum install -y jpeg libpng freetype zlib gd curl libxml2 libxslt
2. # 修改apache配置文件
$ vim /etc/httpd/conf/httpd.conf
ServerName 服务器IP:80
$ 访问:http://ip
3. # 查看当前php版本
$ php -v
$ sudo yum remove -y php*
4. # 升级php版本
请参考这篇博文:https://blog.csdn.net/qq_34889607/article/details/81698293
5. # 修改php配置文件
$ sudo vim /etc/php.ini
date.timezone = "Asia/Shanghai"
6. # 启动apache服务
7. # 修改apache配置文件
$ vim /etc/httpd/conf/httpd.conf
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .php
DirectoryIndex index.html default.php index.php
8. # 重启apache服务
9. # 测试php
$ sudo vim /var/www/html/info.php
<?php
phpinfo();
?>
访问:http://ip/info.php
10. # 编译安装mysql ---> 高于5.5.35版本
请参考这篇博文:https://blog.csdn.net/qq_34889607/article/details/79975205
11. # 创建数据库
> create database mantis default character set utf8 collate utf8_general_ci;
> grant all privileges on mantis.* to 'mantis'@'%' identified by 'mantis';
> grant all privileges on mantis.* to 'root'@'%' identified by 'root' with grant option;
12. # 下载mantisBT安装包,解压
$ sudo tar xf mantisbt-2.16.0-dev-master-1e14941.tar.gz
$ sudo mv mantisbt-2.16.0-dev-master-1e14941 /var/www/html/mantisbt
13. # 配置mantisBT
访问:http://ip/mantisbt/admin/install.php
详细解决方案
rhel6.5:搭建mantisBT
热度:39 发布时间:2023-10-18 12:17:17.0
相关解决方案
- RHEL6.3 ping 不通开发板,该如何解决
- rhel6.4 装配 mysql-5.6
- rhel6.9安装ansible自动化运维工具
- rhel6.9搭建cobbler自动化系统安装服务器
- rhel6.5搭建SVN服务器
- rhel6.5搭建mantis时报错
- rhel6.5:升级python3.6.1
- rhel6.5:ldap-serverclient
- rhel6.5:安装部署zabbix-3.4.12
- rhel6.5:编译安装perl5.28
- rhel6.5:搭建mantisBT
- rhel6.5:编译 安装cmake
- rhel6.5:搭建openlava环境
- rhel6.5下安装NIS服务器
- rhel6.5:nis-ldap-jira-confluence参考文档
- rhel6.5:配置centos源
- rhel6.5:编译安装perl5.28,以及YAML模块
- rhel6.5:安装部署jira7.11.0
- rhel6.5下搭建SVN+Apache
- rhel6.5:搭建ntp时间服务器
- RHEL6.5,制作本地 YUM 源
- RHEL6.1使用rpmbuild方式升级内核
- RHEL6.4评估版无法使用yum解决方案
- RHEL6.4安装ftp
- Install Openstack with Openvswitch Plugin of Quantum on rhel6.3 by RPM Way ( by quqi99 )
- RHEL6 克隆eth0网卡变成eth1的问题怎么解决
- rhel6-redhat6-centos6 网络yum 源地址配置
- Rhel6.5企业版虚拟机的封装
- rhel6.5 环境nginx安装
- RHEL6.4安装出现“sda must have a GPT disk label ”解决方法