GED-VIZ部署解决方案

打印 上一主题 下一主题

主题 975|帖子 975|积分 2925

项目
https://github.com/bertelsmannstift/GED-VIZ
终极结果如图:

依赖要求:
Dependencies
一、Ruby 1.9.3 (MRI) with RubyGems. Also works with Ruby 2.1.(测试ruby2.4兼容性更好)
二、MySQL 5.1 or newer(测试过MYSQL5.7在迁移过程会有兼容性问题,发起MYSQL5.5)
三、PhantomJS for generating static images for slide previews, exporting and older browsers(下载JSON可装可不装,现在测试没有影响,下载JSON(可装可不装,现在测试没有影响 下载地点 https://rpmfind.net/linux/dag/redhat/el5/en/x86_64/dag/RPMS/perl-JSON-2.16-1.el5.rf.noarch.rpm安装 rpm -Uvh perl-*.rpm --nodeps --force)
安装REDHAT6.0系统,具体操作网上很多教程。
安装完操作系统,发起
1先实行防火墙开放权限。
sudo iptables -I INPUT -p tcp --dport 3000 -j ACCEPT
生存规则
service iptables save
确保 iptables 服务开机自启
chkconfig iptables on

或者直接关闭redhat防火墙,等调试完成再开启,关闭防火墙命令为
chkconfig iptables off


下载项目
https://codeload.github.com/bertelsmannstift/GED-VIZ/zip/refs/heads/master
下载完成 解压后放到linux目次中,我是放在/home下


MYSQL5.5安装

测试过MYSQL5.7在迁移过程会有兼容性问题,发起MYSQL5.5,其他版本未知。
先把旧的 MySQL/MariaDB 清理掉
yum remove mysql mysql-server mysql-libs mariadb-libs -y
rm -rf /var/lib/mysql
下载 MySQL 5.5 RPM 包
cd /home
wget https://downloads.mysql.com/archives/get/p/23/file/MySQL-5.5.62-1.el6.x86_64.rpm-bundle.tar
解压文件
tar -xvf MySQL-5.5.62-1.el6.x86_64.rpm-bundle.tar
先安装 common 库
rpm -ivh MySQL-shared-5.5.62-1.el6.x86_64.rpm
安装 Client
rpm -ivh MySQL-client-5.5.62-1.el6.x86_64.rpm
安装 Server
rpm -ivh MySQL-server-5.5.62-1.el6.x86_64.rpm
安装MySQL-devel
wget https://cdn.mysql.com/archives/mysql-5.5/MySQL-devel-5.5.31-2.el6.x86_64.rpm
rpm -ivh MySQL-devel-5.5.31-2.el6.x86_64.rpm

进入mysql修改密码
mysql -u root
修改MYSQL root 密码:
复制代码
USE mysql;
UPDATE user SET password=PASSWORD(‘new_password’) WHERE user=‘root’;#我设置的密码是new_password
FLUSH PRIVILEGES;
EXIT;
安装ruby2.4.10
wget https://cache.ruby-lang.org/pub/ruby/2.4/ruby-2.4.10.tar.gz
安装ruby2.4.10
tar -xzf ruby-2.4.10.tar.gz
cd ruby-2.4.10
./configure --prefix=/usr/local/ruby-2.4
make -j ( n p r o c ) m a k e i n s t a l l e c h o ′ e x p o r t P A T H = / u s r / l o c a l / r u b y − 2.4 / b i n : (nproc) make install echo 'export PATH=/usr/local/ruby-2.4/bin: (nproc)makeinstallecho′exportPATH=/usr/local/ruby−2.4/binATH’ >> /etc/profile
source /etc/profile
验证安装:
ruby -v
安装bundler
bundler-1.16.3
wget https://rubygems.org/downloads/bundler-1.16.3.gem
gem install --local bundler-1.16.3.gem
cd /home/GED-VIZ-master
vim Gemfile
注:把第一行 source 改成 http://rubygems.org
gem sources --remove https://rubygems.org/
gem sources -a http://rubygems.org/
cd GED-VIZ-master
检查一下当前源:
gem sources list
确认只有 http://rubygems.org/
在GED-VIZ-master目次下实行
bundle install

更换GED-VIZ-master_ok/app/models的typ_with_unit.rb
代码如下,也可以更换整个我重新编辑的项目,地点放下代码段下面:
  1. class TypeWithUnit
  2.   attr_accessor :type, :unit
  3.   # Don’t initialize type and unit in the constructor
  4.   # to allow for serialization
  5.   # initialize accepts objects or keys for data_type, indicator_type and unit
  6.   def initialize(options = nil)
  7.     if options
  8.       data_type = options[:data_type]
  9.       indicator_type = options[:indicator_type]
  10.       unit = options[:unit]
  11.       if data_type.is_a? DataType
  12.         @type = data_type
  13.       elsif data_type
  14.         @type = DataType.where(key: data_type).first
  15.       elsif indicator_type.is_a? IndicatorType
  16.         @type = indicator_type
  17.       elsif indicator_type
  18.         @type = IndicatorType.where(key: indicator_type).first
  19.       end
  20.       #raise "TypeWithUnit: no type given #{options}" unless @type
  21.       if unit.is_a? Unit
  22.         @unit = unit
  23.       elsif unit
  24.         @unit = Unit.where(key: unit).first
  25.       end
  26.       #raise "TypeWithUnit: no unit given #{options}" unless @unit
  27.     end
  28.   end
  29.         def as_json(*args)
  30.           [@type&.key, @unit&.key]
  31.         end
  32.        
  33.         def to_s
  34.           "#{
  35.      @type&.key}(#{
  36.      @unit&.key})"
  37.         end
  38.   
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

熊熊出没

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表