mysql支持Innodb

系统环境:
OS:FreeBSD 7.1-RELEASE-p3
mysql:mysql Ver 14.14 Distrib 5.1.30
查看my.cnf文件
[mysqld]
skip-innodb
skip-csv
skip-name-resolve 
max_connections=250
key_buffer=256M
sort_buffer=2M
record_buffer=1M
max_connect_errors=100
max_allowed_packet=4M
query_cache_size=256M
query_cache_limit=4M
connect_timeout=30 
max_user_connections=50
thread_cache_size=100
back_log=15
table_cache=19200
interactive_timeout=300
tmp_table_size=128M

character-set-server = utf8
collation-server = utf8_general_ci
init-connect = SET NAMES utf8

登录mysql数据库。
mysql> show variables like "have_%" ;
+-------------------------+-------+
| Variable_name           | Value |
+-------------------------+-------+
| have_community_features | YES | 
| have_compress           | YES | 
| have_crypt              | YES | 
| have_csv                | NO  | 
| have_dynamic_loading    | NO  | 
| have_geometry           | YES | 
| have_innodb             | NO  | 
| have_ndbcluster         | NO  | 
| have_openssl            | NO  | 
| have_partitioning       | YES | 
| have_query_cache        | YES | 
| have_rtree_keys         | YES | 
| have_ssl                | NO  | 
| have_symlink            | YES | 
+-------------------------+-------+
14 rows in set (0.01 sec)
mysql> quit
Bye

stop mysql数据库。修改my.cnf文件。删除 skip-innodb,后保存!
启动mysql数据库。登录数据库。
mysql> show variables like "have_%" ;
+-------------------------+-------+
| Variable_name           | Value |
+-------------------------+-------+
| have_community_features | YES | 
| have_compress           | YES | 
| have_crypt              | YES | 
| have_csv                | NO  | 
| have_dynamic_loading    | NO  | 
| have_geometry           | YES | 
| have_innodb             | YES | 
| have_ndbcluster         | NO  | 
| have_openssl            | NO  | 
| have_partitioning       | YES | 
| have_query_cache        | YES | 
| have_rtree_keys         | YES | 
| have_ssl                | NO  | 
| have_symlink            | YES | 
+-------------------------+-------+
14 rows in set (0.01 sec)
mysql> quit
Bye

你可能感兴趣的:(数据库,mysql,职场,休闲)