Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't install OpenOndemand #3898

Open
maliang26 opened this issue Oct 24, 2024 · 3 comments
Open

Can't install OpenOndemand #3898

maliang26 opened this issue Oct 24, 2024 · 3 comments
Labels
Milestone

Comments

@maliang26
Copy link

Hi,
I was trying to install Open Ondemand on my server as root. However, when I input
wget -O /tmp/ondemand-release-web_3.1.1-jammy_all.deb https://apt.osc.edu/ondemand/3.1/ondemand-release-web_3.1.1-jammy_all.deb

It returns
Connecting apt.osc.edu (apt.osc.edu)|192.148.247.165|:443...

Then I manually download "ondemand-release-web_3.1.1-jammy_all.deb" and run
apt install /path-to-the-file/ondemand-release-web_3.1.1-jammy_all.deb

It returns
ondemand-release-web is already the latest version (3.1.1-jammy)

Then I input
sudo apt update
sudo apt install ondemand

Does anybody know how can I install? If I can install manually? Your help would be most appreciated!

Best,

Liang

@osc-bot osc-bot added this to the Backlog milestone Oct 24, 2024
@johrstrom
Copy link
Contributor

That should be it. What happens when you issue apt install ondemand?

@maliang26
Copy link
Author

It returns "cannot find the package ondemand"

@treydock
Copy link
Contributor

I think we need to update our docs. The release RPM was bumped to 3.1.2 so we could add support for Ubuntu 24.04.

$ docker run --rm -it ubuntu:22.04 /bin/bash
<SNIP>
root@95c33080450d:/# apt update
root@95c33080450d:/# apt install wget -y
root@95c33080450d:/# wget -O /tmp/ondemand-release-web_3.1.2-jammy_all.deb https://apt.osc.edu/ondemand/3.1/ondemand-release-web_3.1.2-jammy_all.deb
root@95c33080450d:/# apt install /tmp/ondemand-release-web_3.1.2-jammy_all.deb
root@95c33080450d:/# apt update

root@95c33080450d:/# apt install ondemand
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  apache2 apache2-bin apache2-data apache2-utils bzip2 file fontconfig-config fonts-dejavu-core fonts-lato javascript-common libapr1 libaprutil1
  libaprutil1-dbd-sqlite3 libaprutil1-ldap libbrotli1 libbsd0 libcurl4 libdeflate0 libedit2 libexpat1 libfontconfig1 libfreetype6 libgd3
  libgdbm-compat4 libgdbm6 libicu70 libjansson4 libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libldap-2.5-0 libldap-common liblua5.3-0 libmagic-mgc
  libmagic1 libmd0 libmpdec3 libnghttp2-14 libperl5.34 libpng16-16 libpython3-stdlib libpython3.10-minimal libpython3.10-stdlib libreadline8
  librtmp1 libruby3.0 libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssh-4 libtiff5 libwebp7 libx11-6 libx11-data libxau6 libxcb1
  libxdmcp6 libxml2 libxpm4 libxslt1.1 libyaml-0-2 lsof lua-bit32 lua-posix mailcap media-types mime-support netbase nodejs ondemand-nginx
  ondemand-passenger perl perl-modules-5.34 python3 python3-minimal python3.10 python3.10-minimal rake rclone readline-common ruby ruby-net-telnet
  ruby-rubygems ruby-webrick ruby-xmlrpc ruby3.0 rubygems-integration ssl-cert sudo tzdata ucf unzip xz-utils zip
Suggested packages:
  apache2-doc apache2-suexec-pristine | apache2-suexec-custom www-browser ufw bzip2-doc libgd-tools gdbm-l10n libsasl2-modules-gssapi-mit
  | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql perl-doc libterm-readline-gnu-perl
  | libterm-readline-perl-perl make libtap-harness-archive-perl python3-doc python3-tk python3-venv python3.10-venv python3.10-doc binutils
  binfmt-support readline-doc ri ruby-dev bundler
The following NEW packages will be installed:
  apache2 apache2-bin apache2-data apache2-utils bzip2 file fontconfig-config fonts-dejavu-core fonts-lato javascript-common libapr1 libaprutil1
  libaprutil1-dbd-sqlite3 libaprutil1-ldap libbrotli1 libbsd0 libcurl4 libdeflate0 libedit2 libexpat1 libfontconfig1 libfreetype6 libgd3
  libgdbm-compat4 libgdbm6 libicu70 libjansson4 libjbig0 libjpeg-turbo8 libjpeg8 libjs-jquery libldap-2.5-0 libldap-common liblua5.3-0 libmagic-mgc
  libmagic1 libmd0 libmpdec3 libnghttp2-14 libperl5.34 libpng16-16 libpython3-stdlib libpython3.10-minimal libpython3.10-stdlib libreadline8
  librtmp1 libruby3.0 libsasl2-2 libsasl2-modules libsasl2-modules-db libsqlite3-0 libssh-4 libtiff5 libwebp7 libx11-6 libx11-data libxau6 libxcb1
  libxdmcp6 libxml2 libxpm4 libxslt1.1 libyaml-0-2 lsof lua-bit32 lua-posix mailcap media-types mime-support netbase nodejs ondemand ondemand-nginx
  ondemand-passenger perl perl-modules-5.34 python3 python3-minimal python3.10 python3.10-minimal rake rclone readline-common ruby ruby-net-telnet
  ruby-rubygems ruby-webrick ruby-xmlrpc ruby3.0 rubygems-integration ssl-cert sudo tzdata ucf unzip xz-utils zip
0 upgraded, 97 newly installed, 0 to remove and 0 not upgraded.
Need to get 193 MB of archives.
After this operation, 811 MB of additional disk space will be used.
Do you want to continue? [Y/n]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants