close
Warning:
Can't synchronize with repository "(default)" (/usr/svn/silverfile does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Jun 13, 2009, 10:48:03 PM (14 years ago)
- Author:
-
hank
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v17
|
v18
|
|
100 | 100 | |
101 | 101 | {{{ |
102 | | sudo apt-get install mysql-server mysql-python |
| 102 | > sudo apt-get install mysql-server mysql-python |
| 103 | > mysql -uroot -p |
| 104 | |
| 105 | Enter password: |
| 106 | Welcome to the MySQL monitor. Commands end with ; or \g. |
| 107 | Your MySQL connection id is 2 |
| 108 | Server version: 5.0.67-0ubuntu6 (Ubuntu) |
| 109 | |
| 110 | Type 'help;' or '\h' for help. Type '\c' to clear the buffer. |
| 111 | |
| 112 | mysql> create database silverfile; |
| 113 | Query OK, 1 row affected (0.00 sec) |
| 114 | |
| 115 | mysql> grant all on silverfile.* to sf@localhost identified by '<<databasepwd>>'; |
| 116 | Query OK, 0 rows affected (0.00 sec) |
103 | 117 | }}} |
104 | 118 | |