welcome: please sign in

Diff for "MemberManual/Databases"

Differences between revisions 7 and 10 (spanning 3 versions)
Revision 7 as of 2007-10-27 05:35:47
Size: 3196
Comment: uniformity correction
Revision 10 as of 2007-10-27 18:15:10
Size: 3241
Editor: MichaelOlson
Comment: Put example commands on their own line for readability
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
== MySQL == = MySQL =
Line 10: Line 10:
Run the following command: {{{dbtool mysql adduser}}}. You will be asked for a password. The user created will be the same as your log-in username. Run the following command:
Line 12: Line 12:
=== Creating and Deleting Databases ===
{{{dbtool}}} is also used to create new MySQL databases. Replace DATABASE with your desired database name: {{{dbtool mysql createdb DATABASE}}}. The database created will be USER_DATABASE (where USER is your username and DATABASE is the name you provided {{{dbtool}}}).
{{{
dbtool mysql adduser
}}}

You will be asked for a password. The user created will be the same as your log-in username.

== Creating and Deleting Databases ==
{{{dbtool}}} is also used to create new MySQL databases. Replace DATABASE with your desired database name:

{{{
dbtool mysql createdb DATABASE
}}}

The database created will be USER_DATABASE (where USER is your username and DATABASE is the name you provided {{{dbtool}}}).
Line 17: Line 29:
=== Changing Your Password ===
If you need to change your MySQL password for security purposes or you have forgotten it, you may do so with this command: {{{dbtool mysql passwd}}}. You will be prompted to input a new password.
== Changing Your Password ==
If you need to change your MySQL password for security purposes or you have forgotten it, you may do so with this command:
Line 20: Line 32:
=== Accessing Databases === {{{
dbtool mysql passwd
}}}

You will be prompted to input a new password.

== Accessing Databases ==
Line 23: Line 41:
In addition, you can easily use the {{{mysql}}} shell to manipulate or analyze your databases: {{{ mysql -p -h mysql USER_DATABASE }}}.  For security reasons, you cannot drop a database using the {{{mysql}}} shell. In addition, you can easily use the {{{mysql}}} shell to manipulate or analyze your databases:

{{{
mysql -p -h mysql USER_DATABASE
}}}

For security reasons, you cannot drop a database using the {{{mysql}}} shell
.
Line 27: Line 51:
== PostgreSQL ==
To create a PostgreSQL user account, enter the following command on mire.hcoop.net: {{{dbtool postgres adduser}}}. You will not be prompted for a password since PostgreSQL utilizes a security model that is quite different from MySQL. The user created will be the same as your log-in username.
Line 30: Line 52:
= PostgreSQL =
To create a PostgreSQL user account, enter the following command on mire.hcoop.net:
Line 31: Line 55:
=== Creating and Deleting Databases ===
Additionally, {{{dbtool}}} is used to create new MySQL databases. Replace DATABASE with your desired database name: {{{dbtool postgres createdb DATABASE}}}. The database created will be called USER_DATABASE (where USER is your username and DATABASE is the name you provided {{{dbtool}}}.
{{{dbtool postgres adduser}}}
Line 34: Line 57:
Delete a database with the following command: {{{dbtool postgres dropdb DATABASE}}}. For security reasons, you cannot drop a database using the {{{psql}}} shell. You will not be prompted for a password since PostgreSQL utilizes a security model that is quite different from MySQL. The user created will be the same as your log-in username.
Line 36: Line 59:
=== Accessing Databases === == Creating and Deleting Databases ==
Additionally, {{{dbtool}}} is used to create new Postgres databases. Replace DATABASE with your desired database name:

{{{
dbtool postgres createdb DATABASE
}}}

The database created will be called USER_DATABASE (where USER is your username and DATABASE is the name you provided {{{dbtool}}}).

Delete a database with the following command:

{{{
dbtool postgres dropdb DATABASE
}}}

For security reasons, you cannot drop a database using the {{{psql}}} shell.

== Accessing Databases ==
Line 39: Line 79:
It is very easy to access your database using a PostgreSQL shell:  {{{psql -h postgres USER_DATABASE}}}. It is very easy to access your database using a PostgreSQL shell:

{{{
psql -h postgres USER_DATABASE
}}}

This is the chapter of the MemberManual that describes how to use PostgreSQL and MySQL databases on HCoop servers.

TableOfContents

MySQL

Creating a MySQL user account is an easy task with dbtool. It is available for use when you login to mire.hcoop.net.

Run the following command:

dbtool mysql adduser

You will be asked for a password. The user created will be the same as your log-in username.

Creating and Deleting Databases

dbtool is also used to create new MySQL databases. Replace DATABASE with your desired database name:

dbtool mysql createdb DATABASE

The database created will be USER_DATABASE (where USER is your username and DATABASE is the name you provided dbtool).

Delete a database with the following: dbtool mysql dropdb DATABASE.

Changing Your Password

If you need to change your MySQL password for security purposes or you have forgotten it, you may do so with this command:

dbtool mysql passwd

You will be prompted to input a new password.

Accessing Databases

For web applications, set the MySQL host/server to mysql. Default ports apply. Use your HCoop username. Your password will be required. Please safeguard it. Remember that your database is really named USER_DATABASE, where DATABASE is the name you originally gave dbtool. Follow your software package's instructions.

In addition, you can easily use the mysql shell to manipulate or analyze your databases:

mysql -p -h mysql USER_DATABASE

For security reasons, you cannot drop a database using the mysql shell.

To learn more about the MySQL shell, review the [http://dev.mysql.com/doc/refman/5.0/en/ MySQL manual].

PostgreSQL

To create a PostgreSQL user account, enter the following command on mire.hcoop.net:

dbtool postgres adduser

You will not be prompted for a password since PostgreSQL utilizes a security model that is quite different from MySQL. The user created will be the same as your log-in username.

Creating and Deleting Databases

Additionally, dbtool is used to create new Postgres databases. Replace DATABASE with your desired database name:

dbtool postgres createdb DATABASE

The database created will be called USER_DATABASE (where USER is your username and DATABASE is the name you provided dbtool).

Delete a database with the following command:

dbtool postgres dropdb DATABASE

For security reasons, you cannot drop a database using the psql shell.

Accessing Databases

For web applications, set the PostgreSQL host/server to postgres. Default ports apply. Use your HCoop username. A password is not required. Remember that your database is really named USER_DATABASE, where DATABASE is the name you originally gave dbtool. Follow your software package's instructions.

It is very easy to access your database using a PostgreSQL shell:

psql -h postgres USER_DATABASE

To learn more about the psql shell, take a look at the [http://www.postgresql.org/docs/8.1/interactive/index.html PostgreSQL manual].

MemberManual/Databases (last edited 2021-11-06 19:46:06 by ClintonEbadi)