koha-create Koha is the first free software library automation package. The Koha Community http://koha-community.org/ koha-create 8 koha-create Create a new Koha instance. UNIX/Linux koha-create ||| marc21|normarc|unimarc el|en|es|fr|nb|ru|uk server:port namespace_prefix server:port /path/to/some.sql /path/to/config /path/to/passwd host database n port directory time/zone directory directory | instancename Options Create a new database on localhost. If the database you want to use does not reside on localhost, you can use and , see below. If the database already exists, you can use , see below. This option will create a file called instancename-db-request.txt in your current directory that contains information about how the database needs to be set up. When you have run koha-create with the option, and a database has been set up, you can finish your installation by running koha-create with this option. When the database you want to use has already been populated, you can run koha-create with this option to take care of all the other set-up configuration. Path to an alternative config file. This file can hold the same variables as the default config file, see below for details. MySQL database to use. Database server hostname/IP to use. Path to an SQL-file other than the one pointed to in the default or alternative config file. Corresponds to the DEFAULTSQL config file variable. Specify the borrowernumber of the user that should have a new, random password set as part of setting up the new instance. The password will be reported as part of the output of the current script. If --adminuser is not specified, the user with borrowernumber = 1 will be updated. If an SQL file is not used to populate the database of the newly created instance, no admin user will be created. Specifies format of MARC records to be indexed by Zebra. Corresponds to the ZEBRA_MARC_FORMAT config file variable. Path to an alternative passwd file. This file is in the same format as the default (Koha) passwd file, see below for details. Primary language for Zebra indexing. Corresponds to the ZEBRA_LANGUAGE config file variable. Specify a comma-separated list of host:port memcached servers for using with the created Koha instance. Defaults to , the needed configuration for a locally installed memcached server. Specifiy a for memcached. You usually leave this option alone to avoid namespace collisions. It defaults to . Specifiy a Elasticsearch server configuration. It defaults to . Enable the Z39.50/SRU server for the created instance. Specifiy a for the Z39.50/SRU server to listen on. Specify a for storing the template cache files of the instance. It defaults to /var/cache/koha/instance/templates. Specify a for the created instance. e.g. America/Argentina Specify a for storing the permanently uploaded files of the instance. It defaults to /var/lib/koha/instance/uploads. Specify a for storing the temporary files. For example temporarily uploaded files of the instance. It defaults to /var/lib/koha/instance/tmp. Set up a https-only website with letsencrypt certificates , Print usage information. Description koha-create creates a new Koha instance. It is meant for a site that provides Koha hosting, and serves several sites from the same host. The name of the instance is used as the domain name for Apache, Unix user and group names, and MySQL username and database names are derived from it. Unix user and group are named instance-koha. MySQL username is koha_instance, and database is koha_instance. The Unix user has logins disabled. The password for MySQL is generated randomly, and printed to the terminal. The instance name is used as the domain name (ServerName) for Apache. The public catalogue (OPAC), for library customers, is on port 80. The staff client interface is configured similarly, depending on the settings in /etc/koha/koha-sites.conf or alternate config file. After the Koha instance is created, it is ready to be used, but the librarian needs to log in via the intranet and configure things. Several configuration variables are available for adjusting this behavior. The variables are put into /etc/koha/koha-sites.conf. The following variables are obeyed: The domain to append to the instance name, for Apache ServerName. Default is empty. The value must begin with a period. The port for the OPAC. This is inserted before the instance name when forming Apache ServerName. For subdomains, make sure it ends with a period. This is inserted after the instance name, but before the domain name, when forming Apache ServerName. The port for the intranet. If you set this to empty or 80, then you must also define INTRAPREFIX or INTRASUFFIX. This is inserted before the instance name when forming Apache ServerName. For subdomains, make sure it ends with a period. This is inserted after the instance name, but before the domain name, when forming Apache ServerName. An SQL file (compressed with gzip) that can be fed to mysql(1) to initialize the database after it has been created. Might be created using koha-dump-defaults(8). If the SQL file contains users, the user with borrowernumber = 1 will have a new, random password set. This password will be reported in the output of the script. If another user than borrowernumber 1 should have its password set, the borrowernumber of this user can be set with the --adminuser command line option. A comma-separated list of valid memcached servers. Usually in the form of . If not present koha-create will default to . Also, this will be overriden by the arguments of the switch. A prefix for all new Koha instances to use in memcached. If not present koha-create will default to . Also, this will be overriden by the arguments of the switch. Specifies format of MARC records to be indexed by Zebra. Possible values are 'marc21', 'normarc' and 'unimarc'. Primary language for Zebra indexing. Possible values are 'en', 'es', 'fr', 'nb', 'ru' and 'uk'. Order of precedence for config options, from lowest to highest: The defaults set in the code of koha-create /etc/koha/koha-sites.conf Config file specified with Individual command line options Files Configuration variables are read from this file, if it exists. Pre-selected database credentials are read from this file, if it exists. The format for this file is instancename:username:passwd:database:dbhost. Database is optional, but the other three are required if you want to use pre-determined database user credentials. Bugs The program is a bit fragile. If something goes wrong, it does not clean up after itself. Bugs can be reported here: http://bugs.koha-community.org/bugzilla3/ Example To create a new Koha instance: koha-create --create-db hslibrary The public catalog is now at http://hslibrary/ and the librarian interface at http://hslibrary:8080/. To use full domain names, and have the intranet interface on port 80, but on a different domain name, add the following variables to the configuration file: DOMAIN=".example.com" INTRAPORT="" INTRASUFFIX="-intra" This will result in the addresses for the public and intranet interfaces becoming these: http://hslibrary.example.com/ http://hslibrary-intra.example.com/ Configuration changes only apply to instances created afterwards. See also koha-remove(8)