Difference between revisions of "Issues with Installing EPrints on Ubuntu 24.04"

From EPrints Documentation
Jump to: navigation, search
m
(Moved MySQL root user cannot be used to previous issues as this is now commonplace.)
Line 2: Line 2:
  
 
==== libncurses5 no longer available ====
 
==== libncurses5 no longer available ====
<code>libncurses5</code> APT package dependency no longer exists in Ubuntu 24.04 LTS, install <code>libncurses6</code> instead.
+
<code>libncurses5</code> APT package dependency no longer exists in Ubuntu 24.04 LTS, install <code>libncurses6</code> instead.=
  
==== MySQL root user cannot be used ====
+
==== Previous Issues ====
On Ubuntu 24.04 LTS rather than prompting you to set a password for MySQL server when installing this as a dependency, it just installs it without.  However, this means on the root user can login to MySQL to add a database.  As "epadmin create" runs at the eprints user, this will not be able to create a database for EPrints. The get round this as the root user connect to MySQL (just type "mysql" at the command line) and type the following two commands.  You will want to set your own password (i.e. not 'changeme') , you may also want to restrict which databases the eprints user has control over. If you know the "Archive ID" you are going to use.
+
; MySQL root user cannot be used : This is now explained under EPrints' [[Getting Started]] instructions. as it is typically for most modern Linux operating systems.
CREATE USER 'eprints'@'localhost' IDENTIFIED by 'changeme';
 
GRANT ALL PRIVILEGES ON *.* TO 'eprints'@'localhost' WITH GRANT OPTION;
 

Revision as of 10:27, 23 August 2024

N.B. It is assumed that you are installing the latest version of 3.4. Earlier versions may have issues not listed here.

libncurses5 no longer available

libncurses5 APT package dependency no longer exists in Ubuntu 24.04 LTS, install libncurses6 instead.=

Previous Issues

MySQL root user cannot be used 
This is now explained under EPrints' Getting Started instructions. as it is typically for most modern Linux operating systems.