linux日常命令

日常积累的一些命令,过于简单的我就不提了。。。。。

-------------------------------------------下载--------------------------------------------------------------------------------------------------------

https下载跳过检查

wget --no-check-certificate

-------------------------------------------------------------------------------安装mysql(centos)--------------------------------------------------------------------------------

查看是否安装

rpm -qa|grep -i mysql

查看可安装列表

yum list installed|grep mysql

 

mysql下载地址:

http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.23.tar.gz

mysql编译

cmake -DCMAKE_INSTALL_PREFIX=/opt/mysql \

-DMYSQL_UNIX_ADDR=/tmp/mysql.sock \

-DDEFAULT_CHARSET=utf8 \

-DDEFAULT_COLLATION=utf8_general_ci \

-DWITH_EXTRA_CHARSETS=all \

-DWITH_MYISAM_STORAGE_ENGINE=1 \

-DWITH_INNOBASE_STORAGE_ENGINE=1 \

-DWITH_MEMORY_STORAGE_ENGINE=1 \

-DWITH_READLINE=1 \

-DENABLED_LOCAL_INFILE=1 \

-DMYSQL_DATADIR=/var/mysql/data \

-DMYSQL_USER=mysql

导出sql

mysqldump -uroot -pyantai@isoft csop > /opt/csop.sql

导入sql

mysql -uroot -proot csop < /data/csop.sql

 

--------------------------------------------------卸载mysql(centos)--------------------------------------------------------------------------------------------

yum remove mysql mysql-server mysql-libs compat-mysql51
rm -rf /var/lib/mysql
rm /etc/my.cnf
查看是否还有mysql软件:
rpm -qa|grep mysql
有的话继续删除

--------------------------------------------------memcached---------------------------------------------------------------------------------------------

开启memcached

./memcached -u root -d 

----------------------------------------------------------进程---------------------------------------------------------------------------------------------

查看文件夹占用

lsof /opt

 

查看进程

ps -ef | grep nginx

 

查看端口网络连接情况

netstat -ntupl | grep memcached

 

查看进程的端口号

netstat -lnp | grep tomcat 或 netstat -anp |grep tomat

 

看看占用端口号的服务

netstat -anp|grep 80


Kill - 9 进程id
杀死进程

 --------------------------------------------------scp ---------------------------------------------------------------------------------------------

把远程服务器的文件下载到本地

scp -p 22 root@10.166.80.14:/media/media/csop/webapps.zip /usr/local/csop/

 

 --------------------------------------------------压缩---------------------------------------------------------------------------------------------

压缩

zip -r a.zip webapps

tar -cvf a.tar webapps

 解压

unzip a.zip

tar -xvf a.tar

 --------------------------------------------------权限---------------------------------------------------------------------------------------------

添加执行权限

chmod a+x 

--------------------------------------------------linux防火墙(centos)---------------------------------------------------------------------------------------------

vim /etc/sysconfig/iptables   编辑防火墙

service  iptables  status        查看防火墙状态
service  iptables  start           开启防火墙
service  iptables  stop           关闭防火墙
service  iptables  restart        重启防火墙
 
--------------------------------------------------文件操作---------------------------------------------------------------------------------------------
rm -rf  文件名       删除
mv * ../              把当前目录的所有文件移动到上一级目录
 
 
 
 

 

posted @ 2015-04-02 20:19  sflik  阅读(222)  评论(0编辑  收藏  举报