Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-mysqlbackend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-mysqlbackend
Commits
d16d64d7
Unverified
Commit
d16d64d7
authored
6 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
BUG: make comments in config.defaults posix compliant
parent
e7bbc8d0
Branches
Branches containing commit
Tags
Tags containing commit
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
config.defaults
+26
-16
26 additions, 16 deletions
config.defaults
with
26 additions
and
16 deletions
config.defaults
+
26
−
16
View file @
d16d64d7
...
@@ -21,24 +21,34 @@
...
@@ -21,24 +21,34 @@
# ** end header
# ** end header
#
#
# Commands
# # Commands
MYSQL_CMD=$(command -v mysql) # The MySQL client program.
# The MySQL client program.
MYSQLADMIN_CMD=$(command -v mysqladmin) # The mysqladmin program which comes with the MySQL client.
MYSQL_CMD=$(command -v mysql)
MYSQLDUMP_CMD=$(command -v mysqldump) # The mysqldump program which comes with the MySQL client.
# The mysqladmin program which comes with the MySQL client.
MYSQL_CONFIG_EDITOR_CMD=$(command -v mysql_config_editor) # The mysql_config_editor program which is used to store the credentials.
MYSQLADMIN_CMD=$(command -v mysqladmin)
# The mysqldump program which comes with the MySQL client.
MYSQLDUMP_CMD=$(command -v mysqldump)
# The mysql_config_editor program which is used to store the credentials.
MYSQL_CONFIG_EDITOR_CMD=$(command -v mysql_config_editor)
# MySQL Connection
# # MySQL Connection
MYSQL_HOST=localhost # The host of the MySQL server.
# The host of the MySQL server.
MYSQL_PORT=3306 # The port number of the MySQL server.
MYSQL_HOST=localhost
MYSQL_USER=root # The user for the installation. Note: This is not the user
# The port number of the MySQL server.
# which will then be used by the CaosDB Server.
MYSQL_PORT=3306
# The user for the installation. Note: This is not the user
# which will then be used by the CaosDB Server.
MYSQL_USER=root
# DATABASE
# # DATABASE
DATABASE_NAME=caosdb # The name of the SQL database.
# The name of the SQL database.
DATABASE_USER=caosdb # The user which is used by the CaosDB Server for accessing
DATABASE_NAME=caosdb
# the database.
# The user which is used by the CaosDB Server for accessing
DATABASE_USER_PW=random1234 # The password for the database user. Leave empty
# the database.
# if you want to be prompted at make time.
DATABASE_USER=caosdb
# The password for the database user. Leave empty
# if you want to be prompted at make time.
DATABASE_USER_PW=random1234
# A comma-separated list of hosts from which MySQL will accept logins. This
# A comma-separated list of hosts from which MySQL will accept logins. This
# option follows the MySQL-style for host-names and ip addresses. E.g. `%` is a
# option follows the MySQL-style for host-names and ip addresses. E.g. `%` is a
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment