该楼层疑似违规已被系统折叠 隐藏此楼查看此楼

Ulteo Open Virtual Desktop v4.0.0Ubuntu 12.04 (Precise Pangolin) support

Prerequisites: Ubuntu 12.04 (Precise Pangolin)RepositoryOnline MethodOffline MethodSession Manager Installation and ConfigurationInstalling MySQLPackage InstallationConfigurationInstalling the Application Server and File Server (using Subsystem)Important noteInstallationInstalling a Web Portal (eg web.test.demo)

The purpose of this document is to describe how the different server roles of Ulteo OVD can be installed on Ubuntu 12.04 (Precise Pangolin) system.

Prerequisites: Ubuntu 12.04 (Precise Pangolin)

Important

The new LTS version is Ubuntu 12.04 (Precise Pangolin).

System Requirements

For a Session Manager:

Evaluations/POCs: Minimum prerequisites are 1 CPU core and 512MB RAM

Production environments: Ulteo recommends a minimum of 2GB RAM and 2 CPU cores

For an Application Server (Subsystem):

Evaluations/POCs: Minimum prerequisites are 1 CPU core and 1GB RAM

Production environments: Ulteo recommends a minimum of 4GB RAM and 2 CPU cores

For a Web Portal:

Evaluations/POCs: Minimum prerequisites are 1 CPU core and 512MB RAM

Production envrionments: Ulteo recommends 1GB RAM whenever possible or more

For using the same physical machine to host the Session Manager, the Web Portal and the Linux Application Server:

Evaluations/POCs: Minimum prerequisites are 1 CPU core and 1GB RAM

Production environments: Please note, Ulteo does not recommend using this installation method for production environments

sudo

On Ubuntu systems, we are not using the super user (root) to log in and install packages. It is recomended to use sudo.

So there are two alternatives: either you think about adding sudo before each command you launch or you log in as root

To log in as root:

$ sudo -s

Important

In this document, we are using sm.test.demo for the Session Manager address, aps.test.demo for the Application Server and web.test.demofor the Web Portal.You need to use the names that are configured for your own environment.

Repository

Ubuntu 12.04 (Precise Pangolin) is a Debian-based system which uses the same packaging system and tools: apt-get. So you need to have an internet connection on your Ubuntu 12.04 (Precise Pangolin) system and add an Ulteo Debian repository to your system.

Online Method

The following method describes the repository process when your servers have access to the Internet. If no access is available, please read the information presented in the section "Offline Method".

Edit the /etc/apt/sources.list.d/ulteo_ovd.list file and add these lines:

deb http://archive.ulteo.com/ovd/4.0/ubuntu precise main

Offline Method

Important

The Ulteo OVD offline installation requires that the Ubuntu 12.04 (Precise Pangolin) DVD is registered on the system as a packages repository in order to match package dependencies.If the system is not set to get packages from the DVD, Ulteo dependencies like Apache, for instance, won't be installed and the Ulteo solution will not work.

Get this ovd-4.0.0-precise.tar.gz archive from the Ulteo website or from the Ulteo OVD DVD and copy it in the /root of your machine.

Uncompress the archive:

# tar xzf ovd-4.0.0-precise.tar.gz

Edit the /etc/apt/sources.list.d/ulteo-ovd-offline.list file and add these lines:

deb file:///root/ovd-4.0.0-precise precise main

Completing the Installation Process

Update the package database:

# apt-get update

Note

GPG errors given by the previous command will be fixed in the next installation steps. They won't prevent the installation from succeeding.

Install the keyring package to validate the repository using gpg:

# apt-get install ulteo-keyring # apt-get update

Session Manager Installation and Configuration

The Session Manager is a LAMP (Linux Apache MySQL PHP) system and can be used on an exising LAMP server.

Installing MySQL

The Session Manager needs access to a MySQL database. We advise you to setup the MySQL server on the same machine as the Session Manager to minimize access time.

Install the mysql-server package:

# apt-get install mysql-server

A password for root will be asked.

Now login to mysql and create a database:

# mysql -u root -p -e 'create database ovd'

Package Installation

Install the ulteo-ovd-session-manager packages:

# apt-get install ulteo-ovd-session-manager ulteo-ovd-administration-console

The installer requires the location of the Session Manager

The installer requires an admin login

And a password:

which has to be confirmed:

As described in the Archictecture documentation, a Susbsystem archive can be installed on the SM to simplify Application Server deployments.

Note

If you don't have access to the Internet, please read this to manually get the subsystem archive.

The server is now installed but not configured yet. To configure the SM, open http://sm.test.demo/ovd/admin in a web browser. It should display this page:

Configuration

The first step is to go to http://sm.test.demo/ovd/admin and authenticate yourself with the login and password you provided during installation.

The first time you log in, the system detects that it is not configured so you are redirected to a basic setup page which will save a default configuration.

You have to set the MySQL configuration. For example, if you install MySQL on the same host as described previously, you would use the follwing configuration:

Then, modifications are validated.

The Session Manager is now installed. Please read the appropriate documentations to install other servers or start sessions.

Setting Up the Subsystem Archive

If you didn't specify a URL when initailly prompted, you have to manually copy a subsystem archive into/var/cache/ulteo/sessionmanager/base.tar.gz.

Retrieve the base.tar.gz archive from the Ulteo website or from the Ulteo OVD DVD and copy it into the /var/cache/ulteo/sessionmanager/ folder of your machine.

Installing the Application Server and File Server (using Subsystem)Important note

Important

Due to issues with the latest kernel, it's necessary to downgrade it. You have to use a Linux kernel version 3.2.0 in your host server

Install the previous kernel

# sudo apt-get update # sudo apt-get install linux-image-3.2.0-60-virtual

List all kernels installed

# dpkg -l | grep linux-image

Remove all kernels higher than linux-image-3.2.0.60

# sudo apt-get remove --purge linux-image-XXX

You must reboot the server now

Installation

Install the package ulteo-ovd-subsystem:

# apt-get install ulteo-ovd-subsystem

The only information required is the host/IP address where the session manager can be accessed (we use sm.test.demo here for the example, but of course, you have to set your own domain name).

Important

If you are going to install an Application Server on the same machine as your Session Manager, it is recommended to use 127.0.0.1as the host.

The configuration is now done. The system is going to download and uncompress the application system archive from the Session Manager you registered.

Once done, you just have to restart the service:

# /etc/init.d/ulteo-ovd-subsystem restart

Your server should appear in the Unregistered server page.

Setting a Redirection Name

The server redirection name is optional. If all your machines are in the same network, you don't have to change it.

Important

If you have installed your Application Server on the same machine as your Session Manager and you have followed our advice, you have set 127.0.0.1 as the server name so you must define a redirection name.

The redirection name is used when launching sessions. When you launch a session, you are redirected to an Application Server using the redirection name as target host. In some cases the default redirection name is not valid. For instance, if you set up a private IP address and you want to connect to your Application Server from the internet.

Installing a Web Portal (eg web.test.demo)

The Ulteo OVD Web Portal is no longer installed with the Session Manager as it was on previous versions (version number < 3.0). So you have to install it manually on any server you want. It is, of course, possible to install it on the same machine as the Session Manager.

In this example, we are using web.test.demo as the Web Portal address

Install the package ulteo-ovd-web-client:

# apt-get install ulteo-ovd-web-client

The installer asks if you want to connect the Web Portal with an existing Session Manager. The answer depends on whether you want to use this Web Portal in a specific Ulteo OVD farm or if you want a generic Web Portal.

If you answered yes for the previous question, you now have to provide the host/IP address of the Session Manager. In our example: sm.test.demo.

Using you web browser, go to http://web.test.demo/ovd/, you should see a login page:

For further information, please check our website www.ulteo.com.

vdi linux桌面,ubuntu VDI ( Ulteo Open Virtual Desktop相关推荐

  1. 用于工作的 Linux 桌面——Ubuntu 22.04

    导读 Ubuntu长期以来一直是企业的严肃桌面,对于想要工作Linux桌面的人来说,这个新的长期支持版本比以往任何时候都更好. 2004年10月,Ubuntu Linux的创始人Mark Shuttl ...

  2. 第一个linux桌面,Ubuntu 4.10 “Warty Warthog”:回顾第一个Ubuntu Linux桌面

    你可曾安装使用最受欢迎的Linux发行版的第一个版本吗?这正是在最新的Ubuntu 20.04到来之前我将要为本文所做的事情.本文不讨论Ubuntu及其变体的演变,而是直接回到第一个发行版-Ubunt ...

  3. web linux 桌面,Ubuntu无桌面进行Web浏览器测试

    主要原理是利用xvfb提供的显卡帧缓冲区,让浏览器以为有桌面 Install xvfb in ubuntu: sudo apt install xvfb cat > /etc/init.d/xv ...

  4. 重置linux桌面,Ubuntu 18.04小贴士:重置Gnome桌面与使用隐藏的屏幕录像工具

    原标题:Ubuntu 18.04小贴士:重置Gnome桌面与使用隐藏的屏幕录像工具 1.如何在Ubuntu 18.04中重置Gnome桌面 本快速教程将向您展示如何在Ubuntu 18.04 LTS中 ...

  5. win8换成linux桌面,Ubuntu/Linux Mint分分钟变Win8风

    熟悉Linux开源系统的用户,非常欣赏系统高度自定义功能,因此,Ubuntu/Linux Mint等系统借助第三方主题,用上Win7/Win8的界面风格,对于桌面端新老用户来说,都是不错的使用体验.下 ...

  6. 极简主义linux桌面,Ubuntu 16.04/17.10/18.04安装Zafiro极简图标主题

    zafiro图标是桌面xfce4,gnome或lxde的图标包,具有干净简单的设计线条,灵感来源于平面设计. 它是根据L.I.M.A许可证分发的,优先级是极简主义,不会用任何图标来饱和元素,每个图标都 ...

  7. VDI 虚拟桌面基础架构(VDI,Virtual Desktop Infrastructure)

    VDI 虚拟桌面基础架构(VDI,Virtual Desktop Infrastructure)是许多机构目前正在评估的全新模式.VDI旨在为智能分布式计算带来出色的响应能力和定制化的用户体验,并通过 ...

  8. 云桌面VOI计算存储在服务器端,介绍三种云桌面:VDI、IDV、VOI

    介绍三种云桌面:VDI.IDV.VOI 云桌面应场景而变,没有一种云桌面可以适用所有场景.市场上的云桌面一般分为VDI.IDV和VOI三种架构.下面我们就来看下,它们各有哪些优劣,又分别适用哪些场景. ...

  9. VDI虚拟桌面基础架构

    http://www.searchvirtual.com.cn/guide/virtualvdi.htm#log VDI虚拟桌面基础架构 虚拟桌面基础架构VDI VDI,英文全称Virtual Des ...

  10. IDV和VDI,桌面虚拟化对比

    将计算机的终端系统(也称桌面)进行虚拟化,通过任何设备.在任何地点.任何时间通过网络访问属于桌面系统,以达到桌面使用的安全性和灵活性,这便是桌面虚拟化. 如今,越来越多的企业.政府.学校等机构开始应用 ...

最新文章

  1. think in java interview-高级开发人员面试宝典(二)
  2. 一步步实现:JPA的基本增删改查CRUD(jpa基于hibernate)
  3. python多进程优化_如何利用多进程优化Python视频应用
  4. 母版页 中 html 乱码,Thymeleaf使用技巧:使用片段(fragment)实现母版页(Layout)功能...
  5. 腾讯视频怎么退出青少年守护模式
  6. AngularJS 计时器
  7. java format 补足空格_11 个简单的 Java 性能调优技巧
  8. C#.NET验证码智能识别学习笔记---01C#.NET验证码识别介绍
  9. Mac项目流程管理工具:OmniPlan Pro 4.4
  10. 最简单的正交试验教程
  11. 如何改变B站视频播放速度
  12. 期望收益率、方差、协方差、相关系数的计算公式
  13. 恋爱话术表白头像漫画制作微信小程序
  14. ServiceNow 系统上线准备
  15. 小程序CMS商业正版V3.1 一键生成小程序+安装说明
  16. Error querying database. Cause: java.lang.IndexOutOfBoundsException: Index 5 out of bounds for leng
  17. 九头牛的故事—你就是那个美丽的期待(刘俊平咨询师)
  18. scipy.signal.peak_prominences解析
  19. 【计算机网络】计算机网络的主要功能
  20. win10系统怎么开启sql服务器,win10如何启动sql数据库服务器

热门文章

  1. luoguP2123 皇后游戏(贪心)
  2. 永恒骑士 小程序服务器列表空,微信小程序一键登录应用服务器通过AES解密返回purePhoneNumber为空?...
  3. 店宝宝:拼多多上线新业务 对标微信小商店
  4. 06.输入系统:第10课第20节_输入系统_多点触摸_电容屏驱动程序
  5. driver nvidia web_NVIDIA WebDriver
  6. 性能和稳定性测试报告模板
  7. hashcat跑包小秘诀
  8. c语言日期计算器程序代码,用C语言写一个日期计算器
  9. 利器 | Terminal Shell 改造记录 Windows Terminal + ZSH + Tmux
  10. 华为小实例|VRRP协议