close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": /usr/lib/python2.7/dist-packages/libsvn/_fs.so: failed to map segment from shared object: Cannot allocate memory). Look in the Trac log for more information.
- Timestamp:
-
Sep 3, 2010, 12:12:24 PM (16 years ago)
- Author:
-
waue
- Comment:
-
--
Legend:
- Unmodified
- Added
- Removed
- Modified
-
|
v5
|
v6
|
|
| 29 | 29 | * [http://www.mysql.com/products/connector/ mysql 的 jdbc 驅動程式] |
| 30 | 30 | |
| | 31 | = mysql 遠端登入方法 = |
| 31 | 32 | |
| | 33 | /etc/mysql/my.cnf |
| | 34 | {{{ |
| | 35 | #!text |
| | 36 | # bind-address 127.0.0.1 |
| | 37 | bind-address your_ip_address |
| | 38 | }}} |
| 32 | 39 | |
| 33 | 40 | {{{ |
| | 41 | $ sudo /etc/init.d/mysql restart |
| | 42 | $ mysql -u root -p |
| | 43 | |
| 34 | 44 | mysql> grant all on school.* to waue identified by 'wauenchc' with grant option; |
| | 45 | mysql> exit |
| | 46 | |
| | 47 | $ mysql -h your_ip_address -u waue -p "wauenchc" |
| 35 | 48 | |
| 36 | 49 | }}} |
| | 50 | |
| | 51 | 出現 mysql> 則代表成功 |