Discuz!官方免费开源建站系统

 找回密码
 立即注册
搜索
12
返回列表 发新帖

哪位高手能帮帮看看这个图,能解决捆绕我的问题,谢谢

[复制链接]
寅生 发表于 2006-11-24 17:07:55 | 显示全部楼层
跟我一个命运,唉郁闷!

https://discuz.dismall.com/thread-459736-1-1.html
回复

使用道具 举报

昙雾伊始 发表于 2006-11-24 22:01:40 | 显示全部楼层
呵呵。。
4的好啊
回复

使用道具 举报

 楼主| 呼唤诚信 发表于 2006-11-27 12:16:29 | 显示全部楼层

回复 #12 昙雾伊始 的帖子

:(
回复

使用道具 举报

xpibm 发表于 2006-11-27 17:39:39 | 显示全部楼层
MYSQL数据有点问题吧
回复

使用道具 举报

www.isp158.com 发表于 2007-1-7 17:16:14 | 显示全部楼层
回复

使用道具 举报

千兆科技 发表于 2007-1-10 09:53:07 | 显示全部楼层
不能帮你不好意思
回复

使用道具 举报

chancey 发表于 2007-1-10 10:44:46 | 显示全部楼层
修改为thread_cache=32
系统层面尽量关闭不需要的服务
回复

使用道具 举报

千兆科技 发表于 2007-1-10 14:15:24 | 显示全部楼层
肯定是病毒作怪的
回复

使用道具 举报

kookycy 发表于 2007-4-28 17:29:40 | 显示全部楼层
怎么会有那么多w3wp.exe?
回复

使用道具 举报

ght0124 发表于 2007-4-28 23:07:09 | 显示全部楼层
my.ini 试试

  1. # Example MySQL config file for medium systems.
  2. #
  3. # This is for a system with little memory (32M - 64M) where MySQL plays
  4. # an important part, or systems up to 128M where MySQL is used together with
  5. # other programs (such as a web server)
  6. #
  7. # You can copy this file to
  8. # /etc/my.cnf to set global options,
  9. # mysql-data-dir/my.cnf to set server-specific options (in this
  10. # installation this directory is /usr/local/var) or
  11. # ~/.my.cnf to set user-specific options.
  12. #
  13. # In this file, you can use all long options that a program supports.
  14. # If you want to know which options a program supports, run the program
  15. # with the "--help" option.

  16. # The following options will be passed to all MySQL clients
  17. [client]
  18. #password        = your_password
  19. port                = 3306
  20. socket                = /tmp/mysql.sock

  21. # Here follows entries for some specific programs

  22. # The MySQL server
  23. [mysqld]
  24. port                = 3306
  25. socket                = /tmp/mysql.sock
  26. skip-locking
  27. key_buffer = 16M
  28. max_allowed_packet = 1M
  29. table_cache = 64
  30. sort_buffer_size = 512K
  31. net_buffer_length = 8K
  32. read_buffer_size = 256K
  33. read_rnd_buffer_size = 512K
  34. myisam_sort_buffer_size = 8M

  35. # Don't listen on a TCP/IP port at all. This can be a security enhancement,
  36. # if all processes that need to connect to mysqld run on the same host.
  37. # All interaction with mysqld must be made via Unix sockets or named pipes.
  38. # Note that using this option without enabling named pipes on Windows
  39. # (via the "enable-named-pipe" option) will render mysqld useless!
  40. #
  41. #skip-networking

  42. # Replication Master Server (default)
  43. # binary logging is required for replication
  44. log-bin=mysql-bin

  45. # required unique id between 1 and 2^32 - 1
  46. # defaults to 1 if master-host is not set
  47. # but will not function as a master if omitted
  48. server-id        = 1

  49. # Replication Slave (comment out master section to use this)
  50. #
  51. # To configure this host as a replication slave, you can choose between
  52. # two methods :
  53. #
  54. # 1) Use the CHANGE MASTER TO command (fully described in our manual) -
  55. #    the syntax is:
  56. #
  57. #    CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
  58. #    MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
  59. #
  60. #    where you replace <host>, <user>, <password> by quoted strings and
  61. #    <port> by the master's port number (3306 by default).
  62. #
  63. #    Example:
  64. #
  65. #    CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
  66. #    MASTER_USER='joe', MASTER_PASSWORD='secret';
  67. #
  68. # OR
  69. #
  70. # 2) Set the variables below. However, in case you choose this method, then
  71. #    start replication for the first time (even unsuccessfully, for example
  72. #    if you mistyped the password in master-password and the slave fails to
  73. #    connect), the slave will create a master.info file, and any later
  74. #    change in this file to the variables' values below will be ignored and
  75. #    overridden by the content of the master.info file, unless you shutdown
  76. #    the slave server, delete master.info and restart the slaver server.
  77. #    For that reason, you may want to leave the lines below untouched
  78. #    (commented) and instead use CHANGE MASTER TO (see above)
  79. #
  80. # required unique id between 2 and 2^32 - 1
  81. # (and different from the master)
  82. # defaults to 2 if master-host is set
  83. # but will not function as a slave if omitted
  84. #server-id       = 2
  85. #
  86. # The replication master for this slave - required
  87. #master-host     =   <hostname>
  88. #
  89. # The username the slave will use for authentication when connecting
  90. # to the master - required
  91. #master-user     =   <username>
  92. #
  93. # The password the slave will authenticate with when connecting to
  94. # the master - required
  95. #master-password =   <password>
  96. #
  97. # The port the master is listening on.
  98. # optional - defaults to 3306
  99. #master-port     =  <port>
  100. #
  101. # binary logging - not required for slaves, but recommended
  102. #log-bin=mysql-bin

  103. # Point the following paths to different dedicated disks
  104. #tmpdir                = /tmp/               
  105. #log-update         = /path-to-dedicated-directory/hostname

  106. # Uncomment the following if you are using BDB tables
  107. #bdb_cache_size = 4M
  108. #bdb_max_lock = 10000

  109. # Uncomment the following if you are using InnoDB tables
  110. #innodb_data_home_dir = /usr/local/var/
  111. #innodb_data_file_path = ibdata1:10M:autoextend
  112. #innodb_log_group_home_dir = /usr/local/var/
  113. #innodb_log_arch_dir = /usr/local/var/
  114. # You can set .._buffer_pool_size up to 50 - 80 %
  115. # of RAM but beware of setting memory usage too high
  116. #innodb_buffer_pool_size = 16M
  117. #innodb_additional_mem_pool_size = 2M
  118. # Set .._log_file_size to 25 % of buffer pool size
  119. #innodb_log_file_size = 5M
  120. #innodb_log_buffer_size = 8M
  121. #innodb_flush_log_at_trx_commit = 1
  122. #innodb_lock_wait_timeout = 50

  123. [mysqldump]
  124. quick
  125. max_allowed_packet = 16M

  126. [mysql]
  127. no-auto-rehash
  128. # Remove the next comment character if you are not familiar with SQL
  129. #safe-updates

  130. [isamchk]
  131. key_buffer = 20M
  132. sort_buffer_size = 20M
  133. read_buffer = 2M
  134. write_buffer = 2M

  135. [myisamchk]
  136. key_buffer = 20M
  137. sort_buffer_size = 20M
  138. read_buffer = 2M
  139. write_buffer = 2M

  140. [mysqlhotcopy]
  141. interactive-timeout
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2025-11-21 11:06 , Processed in 0.084447 second(s), 13 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表