vi 操作笔记 (PPT)Linux服务器基础 Linux常用系统管理命令(top、free、kill、df) 、查看 Mac/Linux 某端口占用情况
关闭 php-fpm:
ps -ef | grep php-fpm 或 ps aux | grep php-fpm
kill -USR2 32253 (对应的进程PID)
kill -9 进程ID
killall php-fpm
举例:测试MySQL是否启动
#查看是否有mysql进程
ps -ef | grep mysql
#查看是否有 mysql 端口
netstat -ntlp | grep 3306
小片段:
#!/bin/bash
#!/usr/bin/python
执行 make clean 后,重新编译安装 make && make install
压缩:cd /opt/software/ tar -czvf ./lnmp.tar.gz lnmp
查找:which php
chkconfig --del nginx
chkconfig --add nginx
chkconfig --level 2345 nginx on
chkconfig --list nginxservice nginx status
vim /etc/rc.local
建立软链接:ln -s a b 中的 a 就是源文件,b是链接文件名,其作用是当进入b目录,实际上是链接进入了a目录
链接文件:ln -s /home/php-note/123.txt /123.txt
链接文件夹:ln -s /home/php-note /php-note
【重点】Shell入门教程:流程控制(3)条件判断式的真假值
Shell入门教程:流程控制(7)break和continue
Shell标准输出、标准错误 >/dev/null 2>&1
关机:poweroff 或 shutdown -h now 或 init 0
重启:reboot 或 shutdown -r now 或 init 6
关闭x-window:init 3
启动x-window:init 5 或 start x
查看IP地址:ifconfig
Linux内核版本:uname -r 或 uname -a
查看系统类型:cat /etc/redhat-release
[root@localhost local]# cat /etc/redhat-release CentOS release 5.5 (Final) [root@localhost local]#如何查看Linux是32位还是64位? -->执行命令 file /sbin/init 查看即可,即是32位的 Linux, 如是64位的, 显示的是 64-bit 。
基础命令
1、查看某端口号,命令:netstat -pan|grep 80 或 netstat -ntlp | grep 8080
2、查看linux版本是centos还是redhat,命令:cat /etc/redhat-release
3、zip进行文件夹压缩命令:zip -r 压缩最终文件名.zip 要压缩的文件夹名
4、查看历史执行命令:history
防火墙
配置防火墙,开启80端口、3306端口
vim /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT #允许80端口通过防火墙
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT #允许3306端口通过防火墙
备注:很多网友把这两条规则添加到防火墙配置的最后一行,导致防火墙启动失败,
正确的应该是添加到默认的22端口这条规则的下面
1、启动防火墙,命令:service iptables start 或者 /etc/init.d/iptables start
2、关闭防火墙,命令:service iptables stop 或者 /etc/init.d/iptables stop
3、重启防火墙,命令:service iptables restart 或者 /etc/init.d/iptables restart
tomcat
1、启动tomcat,进入tomcat安装目录下的bin目录执行 ./startup.sh
2、停止tomcat,进入tomcat安装目录下的bin目录执行 ./shutdown.sh
3、删除日志命令,进入tomcat安装目录下的logs目录执行 rm -rf *.*
1.终止命令:ctrl+c
2.结束输入:ctrl+d
3.查看文件系统:df -h Linux如何查看文件系统(磁盘使用情况)
4.LAMP系列:
重启MySQL:/etc/init.d/mysqld restart
重启Apache: /etc/init.d/httpd restart 或 service httpd restart 或 apachectl -k restart
Apache的配置文件路径:/etc/httpd/conf/httpd.conf
PHP配置文件路径:/etc/php.ini
重启网络服务:service network restart
修改网站目录权限:
chmod -R 777 ./ecshop
chown -R apache:apache ./ecshop
Linux tar (打包.压缩.解压缩)命令说明 | tar如何解压文件到指定的目录? (tar -czvf ./xxx.tar.gz ./xxx/*)
如何查看、修改Linux的系统时间 Linux date命令详解
Linux文件查找命令 find 详解 Linux 执行文件查找命令 which 详解
Linux cp (复制)命令简介(cp -rf xxx)
Linux mkdir 创建文件夹命令(mkdir -pv /xxx/yyy/zzz)
Linux网络下载命令 wget 简介( wget -c http://www.xxx )
Linux如何下解压windows下的.zip和.rar文件 (unzip ./xxx.zip)
Linux 新建用户、用户组,给用户分配权限(chown、useradd、groupadd、userdel、usermod、passwd、groupdel)