CentOS安装Mantis

来自DeerGrove Wiki
Aker讨论 | 贡献2024年12月19日 (四) 20:31的版本 (创建页面,内容为“category:IS CentOS7 安装 Mantis # 安装apache、mariadb: ## 准备工作: ### 安装EPEL repo并用最新的稳定版本更新系统。 #### yum install…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索


CentOS7 安装 Mantis

  1. 安装apache、mariadb:
    1. 准备工作:
      1. 安装EPEL repo并用最新的稳定版本更新系统。
        1. yum install epel-release -y
        2. yum update -y
    2. 安装apache httpd:
      1. yum install httpd -y //安装httpd
      2. systemctl start httpd //启动httpd
      3. systemctl enable httpd //配置自启动
    3. 安装mariadb server:
      1. yum install mariadb mariadb-server mariadb-devel -y
      2. systemctl start mariadb
      3. systemctl enable mariadb
  1. 安装php7.1
    1. Mantis支持PHP大于5.5,这里我们将安装PHP版本7。默认情况下,PHP 7在CentOS存储库中不可用,需要首先安装Webtatic存储库:rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
    2. 安装php7.1:yum install php71w php71w-cli php71w-mysqli php71w-mbstring -y
    3. 安装后验证php:php -v
  2. 配置mariadb
    1. 初始化:mysql_secure_installation
      1. 首先是设置密码,会提示先输入密码
      2. Enter current password for root (enter for none):<–初次运行直接回车
    2. 设置密码
      1. Set root password? [Y/n] <– 是否设置root用户密码,输入y并回车或直接回车
      2. New password: <– 设置root用户的密码
      3. Re-enter new password: <– 再输入一次你设置的密码
    3. 其他配置
      1. Remove anonymous users? [Y/n] <– 是否删除匿名用户,回车
      2. Disallow root login remotely? [Y/n] <–是否禁止root远程登录,回车,
      3. Remove test database and access to it? [Y/n] <– 是否删除test数据库,回车
      4. Reload privilege tables now? [Y/n] <– 是否重新加载权限表,回车
    4. 初始化MariaDB完成,接下来测试登录:mysql -uroot -p
  3. 创建mantis数据库和用户:
    1. CREATE DATABASE mantisdb;
    2. CREATE USER 'mantis'@'localhost' IDENTIFIED BY 'yourpassword';
    3. GRANT ALL PRIVILEGES ON testlink.* TO 'mantis'@'localhost' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION;
    4. FLUSH PRIVILEGES;
    5. EXIT;
  4. 配置mantis
    1. 下载Mantis:*wget https://excellmedia.dl.sourceforge.net/project/mantisbt/mantis-stable/2.4.0/mantisbt-2.4.0.zip
    2. 解压并移动:**unzip mantisbt-2.4.0.zip
    3. mv mantisbt-2.4.0 /var/www/html/mantis
    4. 重启httpd**
    5. 浏览:http://your ip:port/mantis**
    6. 按照实际情况输入hostname,databasename(即第3步里面的mantis),username(即第3步里面的user),password(即第3步里面的password)。其中数据库类型可以选择Mysqli。
    7. 填写好这些内容,点击install/update database即可。
    8. 配置mantis:
      1. #cd /var/www/html/mantis/config
      2. #rm -rf config_inc.php
      3. #cp config_inc.php.sample config_inc.php
      4. #vim config_inc.php
      5. 主要的配置如下:
        1. $g_hostname = ‘localhost’;
        2. $g_db_username = ‘mantis’;
        3. $$g_database_name = ‘mantisdb’;
        4. $g_db_type = ‘mysqli’;
      6. — Security —$g_crypto_master_salt = ‘n3ZjoEXpRhws7Ba/PeX+g+0dDjFJTRvXTWJpIo9EtHo=’;
      7. 如果安装完毕登陆的时候出现如下类似如下错误:$g_crypto_master_salt is not specified correctly in config_inc.php or is shorter than 16 characters long.需要在点击完 ‘install/updrage’ 按钮之后的界面找到类似“n3ZjoEXpRhws7Ba/PeX+g+0dDjFJTRvXTWJpIo9EtHo=”的字码,在config_inc.php文件中将其赋值给g_crypto_master_salt
    9. 安装完毕之后删除admin目录并重启httpd.
    10. 至此,配置Mantis完毕。
  5. 补充说明:Mantis默认账号密码为 administrator/root