Beside the installation guide on the main page, here is a guide to install GenieACS off a freshly installed Ubuntu 16.04 LTS.

Prequisites and basic components

First you should update all components and install the following perquisites

  1. sudo apt-get update
  2. sudo apt-get upgrade
  3. sudo apt-get install redis-server mongodb npm build-essential ruby-bundler ruby-dev libsqlite3-dev
  4. cd ~
  5. curl -sL https://deb.nodesource.com/setup_7.x -o nodesource_setup.sh
  6. chmod +x nodesource_setup.sh
  7. sudo ./nodesource_setup.sh
  8. sudo apt-get install nodejs
  9. sudo npm install libxmljs

Install GenieACS itself

I installed GenieACS into my home directory.

  1. sudo npm install -g genieacs

Next GenieACS-GUI

  1. sudo apt-get update
  2. sudo apt-get upgrade
  3. sudo apt-get install redis-server mongodb npm build-essential ruby-bundler ruby-dev libsqlite3-dev
  4. cd ~
  5. curl -sL https://deb.nodesource.com/setup_7.x -o nodesource_setup.sh
  6. chmod +x nodesource_setup.sh
  7. sudo ./nodesource_setup.sh
  8. sudo apt-get install nodejs
  9. sudo npm install libxmljs
  10. git clone https://github.com/zaidka/genieacs-gui
  11. cd genieacs-gui/
  12. bundle

Create the config files

  1. cp config/summary_parameters-sample.yml config/summary_parameters.yml
  2. cp config/index_parameters-sample.yml config/index_parameters.yml
  3. cp config/parameter_renderers-sample.yml config/parameter_renderers.yml
  4. cp config/parameters_edit-sample.yml config/parameters_edit.yml
  5. cp config/roles-sample.yml config/roles.yml
  6. cp config/users-sample.yml config/users.yml
  7. cp config/graphs-sample.json.erb config/graphs.json.erb
  8. rake db:migrate
  9. cd ..

And now make some files to start and stop all files in a TMUX Session

  1. cat << EOF > ./genieacs-start.sh
  2. #!/bin/sh
  3. if tmux has-session -t 'genieacs'; then
  4. echo "GenieACS is already running."
  5. echo "To stop it use: ./genieacs-stop.sh"
  6. echo "To attach to it use: tmux attach -t genieacs"
  7. else
  8. tmux new-session -s 'genieacs' -d
  9. tmux send-keys 'genieacs-cwmp' 'C-m'
  10. tmux split-window
  11. tmux send-keys 'genieacs-nbi' 'C-m'
  12. tmux split-window
  13. tmux send-keys 'genieacs-fs' 'C-m'
  14. tmux split-window
  15. tmux send-keys 'cd genieacs-gui' 'C-m'
  16. tmux send-keys 'rails server -b 0.0.0.0' 'C-m'
  17. tmux select-layout tiled 2>/dev/null
  18. tmux rename-window 'GenieACS'
  19.  
  20. echo "GenieACS has been started in tmux session 'geneiacs'"
  21. echo "To attach to session, use: tmux attach -t genieacs"
  22. echo "To switch between panes use Ctrl+B-ArrowKey"
  23. echo "To deattach, press Ctrl+B-D"
  24. echo "To stop GenieACS, use: ./genieacs-stop.sh"
  25. fi
  26. EOF
  27.  
  28. cat << EOF > ./genieacs-stop.sh
  29. #!/bin/sh
  30. if tmux has-session -t 'genieacs' 2>/dev/null; then
  31. tmux kill-session -t genieacs 2>/dev/null
  32. echo "GenieACS has been stopped."
  33. else
  34. echo "GenieACS is not running!"
  35. fi
  36. EOF
  37.  
  38. chmod +x genieacs-start.sh genieacs-stop.sh

After all those steps GenieACS and it's GUI should be installed properly and is ready for the first start.

  1. ./genieacs-start.sh
  2. tmux attach -t genieacs

Installation Guide Ubuntu 16.04的更多相关文章

  1. Ruby and gnuplot installation on Ubuntu 16.04

    sudo apt install ruby gnuplot

  2. How To Install Nginx on Ubuntu 16.04 zz

    Introduction Nginx is one of the most popular web servers in the world and is responsible for hostin ...

  3. [GUIDE] How to Setup Ubuntu 16.04 LTS Xenial Xerus for Compiling Android ROMs

    With a new version of Ubuntu comes an update to my guide for setting up a build environment to compi ...

  4. Ubuntu 16.04上源码编译Poco并编写cmake文件 | guide to compile and install poco cpp library on ubuntu 16.04

    本文首发于个人博客https://kezunlin.me/post/281dd8cd/,欢迎阅读! guide to compile and install poco cpp library on u ...

  5. ubuntu 16.04 和 windows 10系统安装mysql 允许远程访问 | mysql user guide on ubuntu 16.04 and windows 10

    本文首发于个人博客https://kezunlin.me/post/36e618e7/,欢迎阅读! mysql user guide on ubuntu 16.04 and windows 10 Pa ...

  6. Change default network name (ens33) to old “eth0” on Ubuntu 18.04 / Ubuntu 16.04

    Change default network name (ens33) to old “eth0” on Ubuntu 18.04 / Ubuntu 16.04 By Raj Last updated ...

  7. Ubuntu 16.04 服务器上配置使用 Docker

    Docker基础概念 在使用Docker之前,我们先了解下几个Docker的核心概念 Docker Daemon Docker引擎,就是运行在后台的一个守护进程,在我们启动它之后,我们就可以通过Doc ...

  8. How To Install Java with Apt-Get on Ubuntu 16.04

    Introduction Java and the JVM (Java's virtual machine) are widely used and required for many kinds o ...

  9. vsftpd for Anonymous Downloads on Ubuntu 16.04

    Introduction FTP, short for File Transfer Protocol, is a network protocol that was once widely used ...

随机推荐

  1. PL/SQL中复制中文再粘贴出现乱码问题的解决【转】

    前不久!我对我的windowsxp做了一番大规模的设置:包括区域.系统.网络等方面的,结果当我设置完成以后,发现如果我从一些软件上复制内容到记事本里面会出现乱码,而且如果复制到word里面也不能够正常 ...

  2. WHY数学表达式的3D可视化

    WHY数学表达式的3D可视化 很早之前我就有这种想法,将数学表达式的图形显示出来.最近终于实现了这套较为完善的版本,将其代码公布,也为开源做点贡献.首先系统中定义一套脚本语言格式,用于描述数学表达式. ...

  3. Bootstrap 标签页(Tab)插件

    摘自: http://www.runoob.com/bootstrap/bootstrap-tab-plugin.html Bootstrap 标签页(Tab)插件 标签页(Tab)在 Bootstr ...

  4. C# System.Collections.Stack

    using System; using System.Collections; public class SamplesStack { public static void Main() { // C ...

  5. linux实现共享内存同步的四种方法

    https://blog.csdn.net/sunxiaopengsun/article/details/79869115 本文主要对实现共享内存同步的四种方法进行了介绍. 共享内存是一种最为高效的进 ...

  6. Excel如何固定表头,任意一行

    在日常Excel操作中,有时候内容比较多,需要将表头固定才能方便查看.那么,该如何固定表头呢?或者说如何固定任意一行我们制定的呢?下面以Excel2013进行详细的步骤讲解. 首先打开需要操作的Exc ...

  7. Long polling failed, will retry in 16 seconds. appId: zeus-guard, cluster: default, namespaces: application, long polling url: null, reason: Get config services failed from···

    当dubbo应用启动之前, 如果apollo 未启动好,那么我们dubbo应用会一直等待,直到apollo准备就绪,注意其中轮询时间是从1,2,3,4,8,14,32, 方式一直增长,单位是s.

  8. iOS中自动登录的设计

    1.//这是登录控制器页面 - (void)viewDidLoad { [super viewDidLoad]; //lt.iSNextAutoLogin是单利中的一个属性,用来保存下次是否自动登录 ...

  9. OpenCV 学习笔记 06 图像检索以及基于图像描述符的搜索

    OpenCV 可以检测图像的主要特征,然后提取这些特征,使其成为图像描述符,这些图像特征可作为图像搜索的数据库:此外可以利用关键点将图像拼接 stitch 起来,组成一个更大的图像.如将各照片组成一个 ...

  10. [AaronYang原创] 大话ASP.NET MVC3+ (C#与DOM与JS页面上的很炫的技巧)

    案例一:比如我要传递一个新闻标题和新闻内容 存储到数据库去 1.最简单的通用Url公式就是 function getUrl() { var d = $("#表单ID").seria ...