找回密码
 注册
搜索
楼主: black

[灌水] 05/03/10 白天灌水

 火.. [复制链接]
发表于 2010-5-3 09:01 AM | 显示全部楼层


if the market holds here. we should see more up ahead.
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:02 AM | 显示全部楼层
VECO反弹啦.
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:02 AM | 显示全部楼层
这么快就泄了,我还以为MM能多撑一回呢
xiaochong 发表于 2010-5-3 09:58



其实我认为今天向下突破的可能不大。
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:03 AM | 显示全部楼层
the sell-off is well controlled, so far..
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:04 AM | 显示全部楼层
大家聊哈,我这里在检查服务器。你们记得我的blog哈,千万别忘了,这次算是个drill,以后有问题就知道怎么办了。记住,除非我出了意外,否则有任何大的变动,我都会提前通知大家的,毕竟大家聚在一起不容易,不能说散了就散了,这个我会负责到底。另外,我正在考虑给HT的服务器买个备份,目前的问题是我还不清楚如何hard copy My SQL的数据,每晚把HT停下来进行备份是个不可思议的事情,所以必须要能做hard copy才行。

评分

18

查看全部评分

回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:07 AM | 显示全部楼层
回复 85# Cobra


   
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:08 AM | 显示全部楼层
"记住,除非我出了意外,否则有任何大的变动,我都会提前通知大家的,毕竟大家聚在一起不容易,不能说散了就散了,这个我会负责到底"。(Cobra)

回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:09 AM | 显示全部楼层
这么快就泄了,我还以为MM能多撑一回呢
xiaochong 发表于 2010-5-3 09:58


market will up slowly...
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:11 AM | 显示全部楼层
VECO真妖呀
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:12 AM | 显示全部楼层
大家聊哈,我这里在检查服务器。你们记得我的blog哈,千万别忘了,这次算是个drill,以后有问题就知道怎么办 ...
Cobra 发表于 2010-5-3 10:04



    thanks!!
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:15 AM | 显示全部楼层
唉,我是真的反指,卖了VECO就大涨
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:18 AM | 显示全部楼层
谢班长!
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:21 AM | 显示全部楼层
大家聊哈,我这里在检查服务器。你们记得我的blog哈,千万别忘了,这次算是个drill,以后有问题就知道怎么办 ...
Cobra 发表于 2010-5-3 10:04


Thanks
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:23 AM | 显示全部楼层
OK,大家小心,如果有意外,去我的blog查信息,。HT的service provider有问题了,无法访问,所以有部份ISP已 ...
Cobra 发表于 2010-5-3 09:35

从国内连不过去你的blog!
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:24 AM | 显示全部楼层
so far, the rebound is not as strong as the beginning.
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:25 AM | 显示全部楼层
market will up slowly...
QuickHand 发表于 2010-5-3 10:09


Slow is good.
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:28 AM | 显示全部楼层
唉,我是真的反指,卖了VECO就大涨
donkeygirl 发表于 2010-5-3 10:15


wondering why cree does not follow.
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:28 AM | 显示全部楼层
回复 85# Cobra


    Hi Cobra:

Just make backup of mysql and ftp to another backupserver in the night.

My SQL backup:
A Simple Database Backup:

You can use mysqldump to create a simple backup of your database using the following syntax.

mysqldump -u [username] -p [password] [databasename] > [backupfile.sql]
[username] - this is your database username
[password] - this is the password for your database
[databasename] - the name of your database
[backupfile.sql] - the file to which the backup should be written.


The resultant dump file will contain all the SQL statements needed to create the table and populate the table in a new database server. To backup your database 'Customers' with the username 'sadmin' and password 'pass21' to a file custback.sql, you would issue the command:

mysqldump -u sadmin -p pass21 Customers > custback.sql

You can also ask mysqldump to add a drop table command before every create command by using the option --add-drop-table. This option is useful if you would like to create a backup file which can rewrite an existing database without having to delete the older database manually first.

mysqldump --add-drop-table -u sadmin -p pass21 Customers > custback.sql

Backing up only specified tables

If you'd like restrict the backup to only certain tables of your database, you can also specify the tables you want to backup. Let's say that you want to backup only customer_master & customer_details from the Customers database, you do that by issuing

mysqldump --add-drop-table -u sadmin -p pass21 Customers customer_master customer_details> custback.sql

So the syntax for the command to issue is:

mysqldump -u [username] -p [password] [databasename] [table1 table2 ....]

**********************
http://www.howtoforge.com/back_up_mysql_dbs_without_interruptions

Doing Automated Backups Of The Replicated Databases On The Slave

After you have set up a working MySQL replication from the master to the slave, I assume that you want to do automatic backups of the slave database to the directory /home/sqlbackup. First, we must create that directory:

mkdir /home/sqlbackup

Next we create the shell script /usr/local/sbin/mysqlbackup.sh that stops the slave, makes an SQL dump of the whole MySQL database in /home/sqlbackup (the file name of the SQL dump will look like this: backup-20070423-18.sql; this is a dump taken on April 23, 2007, at 18.00h), restarts the slave afterwards (the slave will then catch up on everything that has happened on the master in the meantime so that no data is lost), and deletes all SQL dumps in /home/sqlbackup that are older than two days:

vi /usr/local/sbin/mysqlbackup.sh

#!/bin/sh

datum=`/bin/date +%Y%m%d-%H`

/usr/bin/mysqladmin --user=root --password=yourrootsqlpassword stop-slave

/usr/bin/mysqldump --user=root --password=yourrootsqlpassword --lock-all-tables \
      --all-databases > /home/sqlbackup/backup-${datum}.sql

/usr/bin/mysqladmin --user=root --password=yourrootsqlpassword start-slave

for file in "$( /usr/bin/find /home/sqlbackup -type f -mtime +2 )"
do
  /bin/rm -f $file
done

exit 0

评分

3

查看全部评分

回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:30 AM | 显示全部楼层
seems a typical range day, may ends as a doji...
回复 鲜花 鸡蛋

使用道具 举报

发表于 2010-5-3 09:34 AM | 显示全部楼层
wondering why cree does not follow.
Simpletrader 发表于 2010-5-3 10:28


感觉VECO还是挺妖的,CREE好控制一些哈
回复 鲜花 鸡蛋

使用道具 举报

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

本版积分规则

手机版|小黑屋|www.hutong9.net

GMT-5, 2025-6-26 02:18 PM , Processed in 0.099094 second(s), 19 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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