Linux记录-批量安装LNMP(转载)】的更多相关文章

#!/bin/bash # Describe: This is a one - button installation service script # 提示:使用此脚本时,尽量先选择第一项配置Yum源! red_col="\e[1;31m" reset_col="\e[0m" LOG_DIR=/usr/local/src . /etc/init.d/functions MMM=`rpm -qa | grep mariadb` #node 1. function c…
首先,需要检查expect是否安装:rpm -qa|grep expect 然后,在操作机上创建公钥:ssh-keygen 一路回车即可 创建好之后到/root/.ssh/下就可以看到id开头的2个文件,其中id_rsa.pub就是公钥文件,需要做的就是将这个文件传送给其他机器:ssh-copy-id -i /root/.ssh/id_rsa.pub root@ip 最后ssh root@ip就实现无密码登录了. #!/bin/bash #2013-04-08 #author myhoop #b…
#!/bin/bash # 安装函数 install(){    for soft in $*    do         echo "$soft"安装中...         yum -y install $soft &>/dev/null         if [ $? -ne 0 ];then #                echo "$soft"安装失败                 echo "$soft"安装失败…
同一文件夹下建立pwd.txt,格式如下: ip username password ip username password #!/bin/bash cat pwd.txt | while read line do hostip=`echo $line | cut -d" " -f1` uname=`echo $line | cut -d" " -f2` pwd=`echo $line | cut -d" " -f3` /usr/bin/exp…
Redis进阶实践之一VMWare Pro虚拟机安装和Linux系统的安装 一.引言 设计模式写完了,相当于重新学了一遍,每次学习都会有不同的感受,对设计模式的理解又加深了,理解的更加透彻了.还差一篇关于设计模式的总结的文章了,写完这篇总结性的文章,设计模式的文章就暂时要告一段了,这篇总结性的文章我会尽快补上的.从今天开始,我就把我学习Redis的过程记录下载,以备以后查询观看.很久以前就接触过Redis,但是还没形成体系,最近有时间,就重新来学习一下,争取系统性的掌握Redis的各个方面.好了…
1.安装nginx 下载链接http://nginx.org/en/download.html (1)下载,解压 wget http://nginx.org/download/nginx-1.15.8.tar.gz .tar.gz cd nginx- (2)在编译安装之前先安装需要的依赖库和编译软件安装 yum install gcc gcc-c++ glibc -y yum install pcre-devel -y yum install zlib-devel -y yum install…
一.百度 https://lnmp.org/install.html 二.点击 <安装> 三.登录 linux cd /usr/local/ wget -c http://soft.vpser.net/lnmp/lnmp1.3-full.tar.gz && tar zxf lnmp1.3-full.tar.gz && cd lnmp1.3-full && ./install.sh lnmp        #回车运行 这段代码! ok!!!…
前台:nignx 后台:apache[linux命令]用户文件目录启动定时任务:[开启RZ命令]yum -y install lrzsz [防火墙]防火墙配置文件: /etc/sysconfig/iptables服务操作命令 : /etc/init.d/iptables service iptables {start|stop...}临时改变命令 : iptables iptables-save iptables-restore等service iptables status可以查看到iptab…
python -m SimpleHTTPServer 8888#!/bin/bash sed -i 's/^#//g' /etc/yum.repos.d/centos7.4.repo sed -i 's/enabled=0/enabled=1/g' /etc/yum.repos.d/centos7.4.repo rm -rf /etc/salt/pki/minion/minion_master.pub systemctl stop firewalld.service systemctl disa…
1.原理 awk,一个行文本处理工具,逐行处理文件中的数据 语法:awk 'pattern + {action}' 说明:(1)单引号''是为了和shell命令区分开:(2)大括号{}表示一个命令分组:(3)pattern是一个过滤器,表示命中pattern的行才进行action处理:(4)action是处理动作:(5)使用#作为注释: pattern参数可以是egrep正则中的一个,正则使用/pattern/ 例子:显示hello.txt中的第3行至第5行:cat hello.txt | aw…