Linux修改时间的方法 不指定

jed , 2009-4-3 13:31 , 服务器技术 , 评论(0) , 阅读(2613) , Via 本站原创
修改linux的时间可以使用date指令

在命令行输入:

date
显示当前时间 Fri Aug  3 14:15:16 CST 2007

date -s
按字符串方式修改时间
可以只修改日期,不修改时间,输入: date -s 2007-08-03
只修改时间,输入:date -s 14:15:00
同时修改日期时间,注意要加双引号,日期与时间之间有一空格,输入:date -s "2007-08-03 14:15:00"

修改完后,记得输入:clock -w
把系统时间写入CMOS



讲一下Linux 或Unix下怎样修改系统时间

我们一般使用“date -s”命令来修改系统时间。比如将系统时间设定成1996年6月10日的命令如下。
#date -s 06/10/96
将系统时间设定成下午1点12分0秒的命令如下。
#date -s 13:12:00

---- 注意,这里说的是系统时间,是linux由操作系统维护的。
---- 在系统启动时,Linux操作系统将时间从CMOS中读到系统时间变量中,以后修改时间通过修改系统时间实现。为了保持系统时间与CMOS时间的一致性,Linux每隔一段时间会将系统时间写入CMOS。由于该同步是每隔一段时间(大约是11分钟)进行的,在我们执行date -s后,如果马上重起机器,修改时间就有可能没有被写入CMOS,这就是问题的原因。如果要确保修改生效可以执行如下命令。

---- #clock -w

---- 这个命令强制把系统时间写入CMOS。

讲一下Linux 或Unix下怎样修改系统时间


我们一般使用“date -s”命令来修改系统时间。比如将系统时间设定成1996年6月10日的命令如下。
#date -s 06/10/96
将系统时间设定成下午1点12分0秒的命令如下。
#date -s 13:12:00

---- 注意,这里说的是系统时间,是linux由操作系统维护的。
---- 在系统启动时,Linux操作系统将时间从CMOS中读到系统时间变量中,以后修改时间通过修改系统时间实现。为了保持系统时间与CMOS时间的一致性,Linux每隔一段时间会将系统时间写入CMOS。由于该同步是每隔一段时间(大约是11分钟)进行的,在我们执行date -s后,如果马上重起机器,修改时间就有可能没有被写入CMOS,这就是问题的原因。如果要确保修改生效可以执行如下命令。

---- #clock -w

---- 这个命令强制把系统时间写入CMOS。
有三种不同方法:

1、用lsmod命令查看

2、ps aux | grep iptables

3、/sbin/iptables -L

Tags:
因为项目的需要,将ecshop2.6,discuz7,以及外部的自制页面应用全部整合到一个站内,要求以上所有位置登录一处,全站通行;一处退出,各处都退出;一处注册,全站有效。

实现这个目的,非Ucenter莫属了,于是下载Ucenter的最新版本1.5进行安装,然后在应用管理中逐个的添加ecshop2.6和discuz7.

以上通信全部成功,可实现ecshop和discuz中,同步登陆和同步退出。

注意到Ucenter1.5的文档里,自带一个examples(范例程序),和我所需要的外部登录页面功能恰好吻合,于是先拿这个范例程序开刀。

调试中发现按照文档里的说明进行设置,无论如何,在ucenter的应用管理里也不能通信成功;
于是进度卡在这里,其实我想告诉同样遇到这个问题的朋友,不必拘泥于非要看到“通信成功”这四个字,其实这里并不是问题的关键。

在example的config.inc.php中,缺少了一个变量:$database = ‘mysql’,这个变量在ucenter的客户端一会要用到,所以需要把这个变量填写进去;
然后,在应用管理->你自己的应用->应用的物理路径填进去,注意这里只要填相对于uc的相对路径就可以,ucenter一会会自动转换为绝对路径;
做完上面的两个步骤,你就可以看到通讯成功了。

Apache服务器性能评测 不指定

jed , 2009-3-24 14:13 , 服务器技术 , 评论(0) , 阅读(5050) , Via 本站原创
为了客观的了解Apache的服务器性能,在此选取Apache自带的性能测试软件ApacheBench, Version 2.0.40-dev and  Version 2.3 分别作为性能测试工具。

1.比较现有T2000 Apache2.2.8经过优化前后的效果
Webserver IP:10.56.234.31
优化前httpd.conf:
----------------------------------------------------------------------
           StartServers        10
           MinSpareServers     50
           MaxSpareServers    100
           ServerLimit     10000
           MaxClients        10000
           MaxRequestsPerChild  0
----------------------------------------------------------------------
优化后httpd.conf:
----------------------------------------------------------------------
           StartServers        150
           MinSpareServers     10
           MaxSpareServers    20
           ServerLimit     20000
           MaxClients        20000
           MaxRequestsPerChild 10000
----------------------------------------------------------------------
测试命令: /opt/apache2.2.8/bin/ab -n 10000 -c 1000
http://127.0.0.1/pete/20kb/automot.jpg
测试方法: 访问20kb的jpg图片来获取tps数据,为了排除网络因素,选取127.0.0.1本地环路地址。
测试结果:
    ----------------------------------------------
    使用ApacheBench v2.0进行测试
    apache2.2.8(20k) 优化前 1657tps
    apache2.2.8(20k) 优化后 1666tps
    ---------------------------------------------
    使用 ApacheBench v2.3进行测试
    apache2.2.8(20k) 优化前 1765tps
    apache2.2.8(20k) 优化后 1822tps
    -----------------------------------------------
测试结论:由于这个Apache2.2.8版本没有编入worker.c模块,无法进行worker优化。但是,单独就对prefork的优化,发现性能提升很小。基本保持以后的水平。同时我们发现,测试结果受到T2000机器状态影响很大。所以,本测试基本在没有其他压力的情况下进行。


2.比较现有T2000上Apache2.2.8和Apache2.2.11优化后的性能
Webserver IP:10.56.234.31
配置:
a. Apache2.2.8优化后配置请见step1
b.Apache2.2.11中对于httpd-mpm.conf优化:
----------------------------------------------------------------------

# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# MaxSpareServers: maximum number of server processes which are kept spare
# ServerLimit: maximum value for MaxClients for the lifetime of the server
# MaxClients: maximum number of server processes allowed to start
# MaxRequestsPerChild: maximum number of requests a server process serves
StartServers       150
MinSpareServers    10
MaxSpareServers    20
ServerLimit        20000
MaxClients         20000
MaxRequestsPerChild 10000
# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# MinSpareThreads: minimum number of worker threads which are kept spare
# MaxSpareThreads: maximum number of worker threads which are kept spare
# ThreadsPerChild: constant number of worker threads in each server process
# MaxRequestsPerChild: maximum number of requests a server process serves
StartServers         2
MaxClients         1500
MinSpareThreads     25
MaxSpareThreads     75
ThreadsPerChild     25
MaxRequestsPerChild  0

这段时间服务器崩溃2次,一直没有找到原因,今天看到论坛发出的错误信息邮件,想起可能是mysql的默认连接数引起的问题,一查果然,老天,默认 连接数才100, 怎么够呀,在网上找了半天资料,有说修改my.cnf的,有说修改safe_mysqld,试了,前者无用,


后者文件找不到:)原来是以前的版本跟现在的版本有所不同。

言归正传,我以centos 4.4 下面的mysql 5.0.33 手工编译版本为例说明:

vi /usr/local/mysql/bin/mysqld_safe

找到safe_mysqld编辑它,找到mysqld启动的那两行,在后面加上参数:

-O max_connections=1500

具体一点就是下面的位置:

用红字特别说明:

then $NOHUP_NICENESS $ledir/$MYSQLD

$defaults --basedir=$MY_BASEDIR_VERSION

--datadir=$DATADIR $USER_OPTION

--pid-file=$pid_file

--skip-external-locking

-O max_connections=1500

>> $err_log 2>&1 else

eval "$NOHUP_NICENESS $ledir/$MYSQLD

$defaults --basedir=$MY_BASEDIR_VERSION

--datadir=$DATADIR $USER_OPTION

--pid-file=$pid_file

--skip-external-locking $args

-O max_connections=1500 >>

$err_log 2>&1"

保存。

# service mysqld restart

# /usr/local/mysql/bin/mysqladmin -uroot -p variables

输入root数据库账号的密码后可看到

max_connections 1500 即新改动已经生效。

还有一种方法:

修改原代码:

解开MySQL的原代码,进入里面的sql目录修改mysqld.cc找到下面一行:

{"max_connections", OPT_MAX_CONNECTIONS,

"The number of simultaneous clients allowed.", (gptr*) &max_connections,

(gptr*) &max_connections, 0, GET_ULONG, REQUIRED_ARG, 100, 1, 16384, 0, 1,

0},

把它改为:

{"max_connections", OPT_MAX_CONNECTIONS,

"The number of simultaneous clients allowed.", (gptr*) &max_connections,

(gptr*) &max_connections, 0, GET_ULONG, REQUIRED_ARG, 1500, 1, 16384, 0, 1,

0},

存盘退出,然后./configure ;make;make install可以获得同样的效果。

Linux系统高负载 MySQL优化 不指定

jed , 2009-3-23 15:24 , 数据库技术 , 评论(0) , 阅读(3426) , Via 本站原创
  同时在线访问量继续增大对于1G内存的服务器明显感觉到吃力严重时甚至每天都会死机或者时不时的服务器卡一下这个问题曾经困扰了我半个多月MySQL使用是很具伸缩性的算法,因此你通常能用很少的内存运行或给MySQL更多的被存以得到更好的性能。  
  
  安装好mysql后,配制文件应该在/usr/local/mysql/share/mysql目录中,配制文件有几个,有my-huge.cnf my-medium.cnf my-large.cnf my-small.cnf,不同的流量的网站和不同配制的服务器环境,当然需要有不同的配制文件了。  
  
  一般的情况下,my- medium.cnf这个配制文件就能满足我们的大多需要;一般我们会把配置文件拷贝到/etc/my.cnf 只需要修改这个配置文件就可以了,使用mysqladmin variables extended-status -uroot -p可以看到目前的参数,有3个配置参数是最重要的,即key_buffer_size,query_cache_size,table_cache。  
  
  key_buffer_size只对MyISAM表起作用,key_buffer_size指定索引缓冲区的大小,它决定索引处理的速度,尤其是索引读的速度。一般我们设为16M,实际上稍微大一点的站点 这个数字是远远不够的,通过检查状态值Key_read_requests和 Key_reads,可以知道key_buffer_size设置是否合理。比例key_reads / key_read_requests应该尽可能的低,至少是1:100,1:1000更好(上述状态值可以使用SHOW STATUS LIKE ‘key_read%’获得)。 或者如果你装了phpmyadmin 可以通过服务器运行状态看到,笔者推荐用phpmyadmin管理mysql,以下的状态值都是本人通过phpmyadmin获得的实例分析:  
  
  这个服务器已经运行了20天  
  
  key_buffer_size – 128M  
  
  key_read_requests – 650759289  
  
  key_reads - 79112  
  
  比例接近1:8000 健康状况非常好  
  
  另外一个估计key_buffer_size的办法 把你网站数据库的每个表的索引所占空间大小加起来看看以此服务器为例:比较大的几个表索引加起来大概125M 这个数字会随着表变大而变大。  
  
  从4.0.1开始,MySQL提供了查询缓冲机制。使用查询缓冲,MySQL将SELECT语句和查询结果存放在缓冲区中,今后对于同样的SELECT 语句(区分大小写),将直接从缓冲区中读取结果。根据MySQL用户手册,使用查询缓冲最多可以达到238%的效率。  
  
  通过调节以下几个参数可以知道query_cache_size设置得是否合理  
  
  Qcache inserts  
  
  Qcache hits  
  
  Qcache lowmem prunes  
  
  Qcache free blocks  
  
  Qcache total blocks  
  
  Qcache_lowmem_prunes的值非常大,则表明经常出现缓冲不够的情况,同时Qcache_hits的值非常大,则表明查询缓冲使用非常频繁,此时需要增加缓冲大小Qcache_hits的值不大,则表明你的查询重复率很低,这种情况下使用查询缓冲反而会影响效率,那么可以考虑不用查询缓冲。此外,在SELECT语句中加入SQL_NO_CACHE可以明确表示不使用查询缓冲。  
  
  Qcache_free_blocks,如果该值非常大,则表明缓冲区中碎片很多query_cache_type指定是否使用查询缓冲  
  
  我设置:  
  
  QUOTE:  
  
  query_cache_size = 32M  
  
  query_cache_type= 1  
  
  得到如下状态值:  
  
  Qcache queries in cache 12737 表明目前缓存的条数  
  
  Qcache inserts 20649006  
  
  Qcache hits 79060095  看来重复查询率还挺高的  
  
  Qcache lowmem prunes 617913 有这么多次出现缓存过低的情况  
  
  Qcache not cached 189896     
  
  Qcache free memory 18573912  目前剩余缓存空间  
  
  Qcache free blocks 5328 这个数字似乎有点大 碎片不少  
  
  Qcache total blocks 30953  
  
  如果内存允许32M应该要往上加点  

 table_cache指定表高速缓存的大小。每当MySQL访问一个表时,如果在表缓冲区中还有空间,该表就被打开并放入其中,这样可以更快地访问表内容。通过检查峰值时间的状态值Open_tables和Opened_tables,可以决定是否需要增加table_cache的值。如果你发现 open_tables等于table_cache,并且opened_tables在不断增长,那么你就需要增加table_cache的值了(上述状态值可以使用SHOW STATUS LIKE ‘Open%tables’获得)。注意,不能盲目地把table_cache设置成很大的值。如果设置得太高,可能会造成文件描述符不足,从而造成性能不稳定或者连接失败。  
  
  对于有1G内存的机器,推荐值是128-256。  
  
  笔者设置  
  
  QUOTE:  
  
  table_cache = 256  
  
  得到以下状态:  
  
  Open tables 256  
  
  Opened tables 9046  
  
  虽然open_tables已经等于table_cache,但是相对于服务器运行时间来说,已经运行了20天,opened_tables的值也非常低。因此,增加table_cache的值应该用处不大。如果运行了6个小时就出现上述值那就要考虑增大table_cache。  
  
  如果你不需要记录2进制log 就把这个功能关掉,注意关掉以后就不能恢复出问题前的数据了,需要您手动备份,二进制日志包含所有更新数据的语句,其目的是在恢复数据库时用它来把数据尽可能恢复到最后的状态。另外,如果做同步复制( Replication )的话,也需要使用二进制日志传送修改情况。  
  
   log_bin指定日志文件,如果不提供文件名,MySQL将自己产生缺省文件名。MySQL会在文件名后面自动添加数字引,每次启动服务时,都会重新生成一个新的二进制文件。此外,使用log-bin-index可以指定索引文件;使用binlog-do-db可以指定记录的数据库;使用binlog- ignore-db可以指定不记录的数据库。注意的是:binlog-do-db和binlog-ignore-db一次只指定一个数据库,指定多个数据库需要多个语句。而且,MySQL会将所有的数据库名称改成小写,在指定数据库时必须全部使用小写名字,否则不会起作用。  
  
  关掉这个功能只需要在他前面加上#号  
  
  QUOTE:  
  
  #log-bin  
  
  开启慢查询日志( slow query log )  
  
  慢查询日志对于跟踪有问题的查询非常有用。它记录所有查过long_query_time的查询,如果需要,还可以记录不使用索引的记录。下面是一个慢查询日志的例子:  
  
  开启慢查询日志,需要设置参数log_slow_queries、long_query_times、log-queries-not-using-indexes。  
  
  log_slow_queries指定日志文件,如果不提供文件名,MySQL将自己产生缺省文件名。long_query_times指定慢查询的阈值,缺省是10秒。log-queries-not-using-indexes是4.1.0以后引入的参数,它指示记录不使用索引的查询。笔者设置 long_query_time=10  
  
  笔者设置:  
  
  QUOTE:  
  
  sort_buffer_size = 1M  
  
  max_connections=120  
  
  wait_timeout =120  
  
  back_log=100  
  
  read_buffer_size = 1M  
  
  thread_cache=32  
  
  interactive_timeout=120  
  
  thread_concurrency = 4  
  
  参数说明:  
  
  back_log  
  
  要求MySQL能有的连接数量。当主要MySQL线程在一个很短时间内得到非常多的连接请求,这就起作用,然后主线程花些时间(尽管很短)检查连接并且启动一个新线程。back_log值指出在MySQL暂时停止回答新请求之前的短时间内多少个请求可以被存在堆栈中。只有如果期望在一个短时间内有很多连接,你需要增加它,换句话说,这值对到来的TCP/IP连接的侦听队列的大小。你的操作系统在这个队列大小上有它自己的限制。 Unix listen(2)系统调用的手册页应该有更多的细节。检查你的OS文档找出这个变量的最大值。试图设定back_log高于你的操作系统的限制将是无效的。  
  
  max_connections  
  
  并发连接数目最大,120 超过这个值就会自动恢复,出了问题能自动解决  
  
  thread_cache  
  
  没找到具体说明,不过设置为32后 20天才创建了400多个线程而以前一天就创建了上千个线程 所以还是有用的  
  
  thread_concurrency  
  
  #设置为你的cpu数目x2,例如,只有一个cpu,那么thread_concurrency=2  
  
  #有2个cpu,那么thread_concurrency=4  
  
  skip-innodb  
  
  #去掉innodb支持  

  
  Example MySQL config file for medium systems.  
  # Example MySQL config file for medium systems.  
  #  
  # This is for a system with little memory (32M - 64M) where MySQL plays  
  # an important part, or systems up to 128M where MySQL is used together with  
  # other programs (such as a web server)  
  #  
  # You can copy this file to  
  # /etc/my.cnf to set global options,  
  # mysql-data-dir/my.cnf to set server-specific options (in this  
  # installation this directory is /var/lib/mysql) or  
  # ~/.my.cnf to set user-specific options.  
  #  
  # In this file, you can use all long options that a program supports.  
  # If you want to know which options a program supports, run the program  
  # with the "--help" option.  
  
  # The following options will be passed to all MySQL clients  
  [client]  
  #password = your_password  
  port = 3306  
  socket = /tmp/mysql.sock  
  #socket = /var/lib/mysql/mysql.sock  
  # Here follows entries for some specific programs  
  
  # The MySQL server  
  [mysqld]  
  port = 3306  
  socket = /tmp/mysql.sock  
  #socket = /var/lib/mysql/mysql.sock  
  skip-locking  
  key_buffer = 128M  
  max_allowed_packet = 1M  
  table_cache = 256  
  sort_buffer_size = 1M  
  net_buffer_length = 16K  
  myisam_sort_buffer_size = 1M  
  max_connections=120  
  #addnew config  
  wait_timeout =120  
  back_log=100  
  read_buffer_size = 1M  
  thread_cache=32  
  skip-innodb  
  skip-bdb  
  skip-name-resolve  
  join_buffer_size=512k  
  query_cache_size = 32M  
  interactive_timeout=120  
  long_query_time=10  
  log_slow_queries= /usr/local/mysql4/logs/slow_query.log  
  query_cache_type= 1  
  # Try number of CPU's*2 for thread_concurrency  
  thread_concurrency = 4  
  
  #end new config  
  # Don't listen on a TCP/IP port at all. This can be a security enhancement,  
  # if all processes that need to connect to mysqld run on the same host.  
  # All interaction with mysqld must be made via Unix sockets or named pipes.  
  # Note that using this option without enabling named pipes on Windows  
  # (via the "enable-named-pipe" option) will render mysqld useless!  
  #  
  #skip-networking  
  
  # Replication Master Server (default)  
  # binary logging is required for replication  
  #log-bin  
  
  # required unique id between 1 and 2^32 - 1  
  # defaults to 1 if master-host is not set  
  # but will not function as a master if omitted  
  server-id = 1  
  
  # Replication Slave (comment out master section to use this)  
  #  
  # To configure this host as a replication slave, you can choose between  
  # two methods :  
  #  
  # 1) Use the CHANGE MASTER TO command (fully described in our manual) -  
  # the syntax is:  
  #  
  # CHANGE MASTER TO MASTER_HOST=, MASTER_PORT=,  
  # MASTER_USER=, MASTER_PASSWORD= ;  
  #  
  # where you replace , , by quoted strings and  
  # by the master's port number (3306 by default).  
  #  
  # Example:  
  #  
  # CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,  
  # MASTER_USER='joe', MASTER_PASSWORD='secret';  
  #  
  # OR  
# 2) Set the variables below. However, in case you choose this method, then  
  # start replication for the first time (even unsuccessfully, for example  
  # if you mistyped the password in master-password and the slave fails to  
  # connect), the slave will create a master.info file, and any later  
  # change in this file to the variables' values below will be ignored and  
  # overridden by the content of the master.info file, unless you shutdown  
  # the slave server, delete master.info and restart the slaver server.  
  # For that reason, you may want to leave the lines below untouched  
  # (commented) and instead use CHANGE MASTER TO (see above)  
  #  
  # required unique id between 2 and 2^32 - 1  
  # (and different from the master)  
  # defaults to 2 if master-host is set  
  # but will not function as a slave if omitted  
  #server-id = 2  
  #  
  # The replication master for this slave - required  
  #master-host =  
  #  
  # The username the slave will use for authentication when connecting  
  # to the master - required  
  #master-user =  
  #  
  # The password the slave will authenticate with when connecting to  
  # the master - required  
  #master-password =  
  #  
  # The port the master is listening on.  
  # optional - defaults to 3306  
  #master-port =  
  #  
  # binary logging - not required for slaves, but recommended  
  #log-bin  
  
  # Point the following paths to different dedicated disks  
  #tmpdir = /tmp/  
  #log-update = /path-to-dedicated-directory/hostname  
  
  # Uncomment the following if you are using BDB tables  
  #bdb_cache_size = 4M  
  #bdb_max_lock = 10000  
  
  # Uncomment the following if you are using InnoDB tables  
  #innodb_data_home_dir = /var/lib/mysql/  
  #innodb_data_file_path = ibdata1:10M:autoextend  
  #innodb_log_group_home_dir = /var/lib/mysql/  
  #innodb_log_arch_dir = /var/lib/mysql/  
  # You can set .._buffer_pool_size up to 50 - 80 %  
  # of RAM but beware of setting memory usage too high  
  #innodb_buffer_pool_size = 16M  
  #innodb_additional_mem_pool_size = 2M  
  # Set .._log_file_size to 25 % of buffer pool size  
  #innodb_log_file_size = 5M  
  #innodb_log_buffer_size = 8M  
  #innodb_flush_log_at_trx_commit = 1  
  #innodb_lock_wait_timeout = 50  
  
  [mysqldump]  
  quick  
  max_allowed_packet = 16M  
  
  [mysql]  
  no-auto-rehash  
  # Remove the next comment character if you are not familiar with SQL  
  #safe-updates  
  
  [isamchk]  
  key_buffer = 20M  
  sort_buffer_size = 20M  
  read_buffer = 2M  
  write_buffer = 2M  
  
  [myisamchk]  
  key_buffer = 20M  
  sort_buffer_size = 20M  
  read_buffer = 2M  
  write_buffer = 2M  
  
  [mysqlhotcopy]  
  interactive-timeout  


    您在使用Linux独享服务器时,可能会遇到由于服务器MySQL负载高或调试、误操作而导致的数据库无法登陆问题,那么我们现在简单介绍下MySQL数据库无法登陆的处理方法。

    首先使用CRT远程登陆服务器,使用以下两行命令:

例如MySQL进程查询返回信息:

Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.3/FAQ
root     10165  0.0  0.1  4804 1144 ?        S    17:08   0:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --user=mysql
mysql    10196  0.0  1.0 50948 11308 ?       S    17:08   0:00 /usr/local/mysql/libexec/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/var --user=mysql --pid-file=/usr/local/mysql/var/ud.pid --skip-external-locking --port=3306 --socket=/tmp/mysql.sock
root     10197  0.0  1.0 50948 11308 ?       S    17:08   0:00 /usr/local/mysql/libexec/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/var --user=mysql --pid-file=/usr/local/mysql/var/ud.pid --skip-external-locking --port=3306 --socket=/tmp/mysql.sock

1、[root@ud~]# kill -9 `ps ax|grep mysqld |awk '{print $1}'`(杀掉MySQL进程)

2、[root@ud~]# /usr/local/mysql/bin/mysqld_safe --user=mysql &(重新启动MySQL服务)



维护linux服务器时,要经常查看服务器的网络连接状态,netstat是一个非常优秀的工具,通过netstat可以显示网络连接、路由表和网络接口信息,可以让用户得知目前都有哪些网络连接正在运作。

命令中各选项的含义如下:

-a 显示所有socket,包括正在监听的。

-c 每隔1秒就重新显示一遍,直到用户中断它。

-i 显示所有网络接口的信息,格式同“ifconfig -e”。

-n 以网络IP地址代替名称,显示出网络连接情形。

-r 显示核心路由表,格式同“route -e”。

-t 显示TCP协议的连接情况。

-u 显示UDP协议的连接情况。

-v 显示正在进行的工作。

下面这个语句是一个非常好的查看TCP连接状态的语句:


netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}’

返回结果示例:


LAST_ACK 5
SYN_RECV 30
ESTABLISHED 1597
FIN_WAIT1 51
FIN_WAIT2 504
TIME_WAIT 1057



以下是各种状态的描述


CLOSED:无连接是活动的或正在进行
LISTEN:服务器在等待进入呼叫
SYN_RECV:一个连接请求已经到达,等待确认
SYN_SENT:应用已经开始,打开一个连接
ESTABLISHED:正常数据传输状态
FIN_WAIT1:应用说它已经完成
FIN_WAIT2:另一边已同意释放
ITMED_WAIT:等待所有分组死掉
CLOSING:两边同时尝试关闭
TIME_WAIT:另一边已初始化一个释放
LAST_ACK:等待所有分组死掉


查看http进程数

[root@localhost conf]# ps -ef|grep httpd|wc -l
333

统计连接数状态:

[root@localhost conf]# netstat -n|awk '/^tcp/{++S[$NF]} END {for(a in S) print a,S[a]}'
LAST_ACK 173
SYN_RECV 35
CLOSE_WAIT 159
ESTABLISHED 152
FIN_WAIT1 29
FIN_WAIT2 10
CLOSING 39
TIME_WAIT 103

linux用ps查看进程命令用法 不指定

jed , 2009-3-23 09:26 , 服务器技术 , 评论(0) , 阅读(5804) , Via 本站原创
  ps命令

  前面介绍的两个命令都是用于查看当前系统用户的情况,下面就来看看进程的情况,这也是本章的主题.要对进程进行监测和控制,首先必须要了解当前进程的情况,也就是需要查看当前进程,而ps命令就是最基本同时也是非常强大的进程查看命令.使用该命令可以确定有哪些进程正在运行和运行的状态、进程是否结束、进程有没有僵尸、哪些进程占用了过多的资源等等.总之大部分信息都是可以通过执行该命令得到的.

  ps命令最常用的还是用于监控后台进程的工作情况,因为后台进程是不和屏幕键盘这些标准输入/输出设备进行通信的,所以如果需要检测其情况,便可以使用ps命令了.

  ps [选项]

  下面对命令选项进行说明∶

  -e显示所有进程.

  -f全格式.

  -h不显示标题.

  -l长格式.

  -w宽输出.

  a显示终端上的所有进程,包括其他用户的进程.

  r只显示正在运行的进程.

  x显示没有控制终端的进程.

  O[+|-] k1 [,[+|-] k2 [,…]] 根据SHORT KEYS?1、k2中快捷键指定的多 级排序顺序显示进程列表.对于ps的不同格式都存在着默认的顺序指定.这些默 认顺序可以被用户的指定所覆盖.其中“+”字符是可选的,“-”字符是倒转指 定键的方向.

  最常用的三个参数是u、a、x.



netstat –tln //查看服务监听端口
netstat //查看进程号
ps –aux //查看进程号
ps –aux | more //全部查看
ps –ef | grep mysql //查看mysql的进程
kill -9 3306 //强制杀掉进程号3306
Tags: ,
分页: 42/81 第一页 上页 37 38 39 40 41 42 43 44 45 46 下页 最后页 [ 显示模式: 摘要 | 列表 ]