2012年10月30日星期二

Linux cmd memo


如何查看自己的机器是否启动了APACH

ps -ef |grep apache
ps -ef |grep httpd
pgrep -l apache

#service servicename status
#service httpd status
#service --status-all

restart apache

/usr/local/apache-2.2.22/bin/apachectl graceful
or
/usr/local/apache-2.2.22/bin/apachectl restart


set apache dir

/usr/local/apache-2.2.22/conf/extra/httpd-vhosts.conf


How to check which apache modules are enabled/installed?

You're on Ubuntu so try: apache2 -M or apache2ctl -M



linux 启动ftp服务,sftp服务


启动ftp服务:
在/etc/rc.d/init.d/目录下:命令  service vsftp start
启动ssh服务,sftp服务
在/etc/init.d/目录下:  命令  /etc/init.d/sshd start  注意这里需要在绝对路径下执行sshd start

开启root可以通过ftp软件连接的功能:
默认有一些用户是不能通过ftp连接服务器的,比如root。如果需要开启这些用户,就需要做一些修改才可以。
(1)编辑/etc/vsftp/ftpusers文件,去掉里面root一行
  这个文件里存放的是被禁止的登录名
(2)编辑/etc/vsftp/user_list文件,去掉里面root一行
 
说明:当文件/etc/vsftpd/vsftpd.conf中userlist_deny=YES时
      文件user_list和ftpusers中的登录名列表被禁止
      具体查看ftpusers,user_list文件的注释



LINUX启动/重启/停上MYSQL的命令 


一、启动方式

1、使用 service 启动:service mysqld start
2、使用 mysqld 脚本启动:/etc/inint.d/mysqld start
3、使用 safe_mysqld 启动:safe_mysqld&

二、停止
1、使用 service 启动:service mysqld stop
2、使用 mysqld 脚本启动:/etc/inint.d/mysqld stop
3、mysqladmin shutdown

三、重启
1、使用 service 启动:service mysqld restart
2、使用 mysqld 脚本启动:/etc/inint.d/mysqld restart


查看mysql是否在监听端口命令
netstat -tl | grep mysql
会看到如下类似内容
tcp 0 0 *:mysql *:* LISTEN

没有评论:

发表评论