-- :: cd /etc/yum.repos.d/
      -- :: wget http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo
      -- :: yum update -y
      -- :: rpm -qa kernel |sort -V |tail -n
      -- :: uname -r
      -- :: rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
      -- :: yum install binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel dkms
      -- :: yum -y install VirtualBox-6.0
     -- :: ps -nf|grep yum
     -- :: ps -ef | grep yum
     -- :: yum -y localinstall /root/download/VirtualBox-.x86_64.rpm
     -- :: /usr/lib/virtualbox/vboxdrv.sh setup
     -- :: VirtualBox
     -- :: systemctl start vboxdrv.service
     -- :: systemctl status vboxdrv.service
     -- :: systemctl enable vboxdrv.service
     -- :: yum -y localinstall /root/download/vagrant_2..5_x86_64.rpm
     -- :: lsof
     -- :: iptables -F
     -- :: setenforce
     -- :: systemctl disable firewalld
     -- :: nginx -v
     -- :: cd /etc/yum.repos.d/
     -- :: vim nginx.repo
     -- :: vim nginx.repo
     -- :: yum list | grep nginx
     -- :: yum list | grep nginx
     -- :: yum -y install nginx
     -- :: mkdir /www
     -- :: mkdir /www/wwwroot
     -- :: mkdir /www/wwwroot/default
     -- :: cd /www/wwwroot/default
     -- :: vim index.html
     -- :: cd /etc/nginx/conf.d
     -- :: vim default.conf
     -- :: systemctl start nginx
     -- :: systemctl status nginx
     -- :: systemctl restart nginx
     -- :: yum -y install epel-release
     -- :: yum list | grep php72
     -- :: rpm -ivh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
     -- :: yum list | grep php72
     -- :: yum -y install mod_php72w php72w-cli php72w-fpm php72w-common php72w-devel
     -- :: halt
     -- :: cd /www/wwwroot
     -- :: mkdir learn
     -- :: cd learn/
     -- :: vi index.php
     -- :: cd ~
     -- :: cd /etc/nginx/conf.d
     -- :: vi learn.conf
     -- :: systemctl restart nginx
     -- :: systemctl start php-fpm
     -- :: systemctl restart php-fpm
     -- :: rpm -ivh https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm
     -- :: cd ~
     -- :: yum list | grep mysql
     -- :: yum list | grep mysql
     -- :: yum-config-manager --disable mysql80-community
     -- :: yum-config-manager --enable mysql57-community
     -- :: yum list | grep mysql
     -- :: yum -y install mysql-community-server mysql-community-client
     -- :: systemctl start mysqld
     -- :: grep 'temporary password' /var/log/mysqld.log
     -- :: mysql -uroot -p
     -- :: ;
     -- :: ;
     -- :: ;
     -- :: ;
     -- :: ;
     -- :: set password for root@localhost = password('你的密码');
     -- :: set password for root@localhost = password('root');
     -- :: mysql -uroot -p
     -- :: mysql -uroot -p
     -- :: grep 'temporary password' /var/log/mysqld.log
     -- :: mysql -uroot -p
     -- :: mysql -uroot -p
     -- :: systemctl state mysqld
     -- :: systemctl status mysqld
     -- :: mysql -uroot -p
     -- :: systemctl enable mysqld
     -- :: composer
     -- :: yum -y update
     -- :: cd /tmp
     -- :: curl -sS https://getcomposer.org/installer | php
     -- :: mv composer.phar /usr/local/bin/composer
     -- :: composer -v
     -- :: composer config -g repo.packagist composer https://packagist.phpcomposer.com
     -- :: cd ~
     -- :: php -v
     -- :: composer global require "laravel/installer"
     -- :: vim /etc/profile
     -- :: source /etc/profile
     -- :: echo $PATH
     -- :: cat  /etc/profile
     -- :: cd /www/wwwroot/
     -- :: laravel new blog
     -- :: cd blog/
    -- :: cp .env.example .env
    -- :: php artisan serve
    -- :: vim /etc/nginx/conf.d/
    -- :: cd /etc/nginx/conf.d/
    -- :: ls
    -- :: cp learn.conf blog.conf
    -- :: vim blog.conf
    -- :: systemctl start nginx
    -- :: systemctl restart nginx
    -- :: systemctl restart php-fpm
    -- :: systemctl restart mysqld
    -- :: cd /www/wwwroot/
    -- :: chmod  blog -R
    -- :: chmod -R  blog
    -- :: ll
    -- :: cd blog/
    -- :: ll
    -- :: cd /
    -- :: find -name autoload.php
    -- :: find -name composer
    -- :: find -name .composer
    -- :: find -name vendor
    -- :: cd /www/wwwroot/
    -- :: curl -sS https://getcomposer.org/installer | php
    -- :: where composer
    -- :: whereis composer
    -- :: composer -v
    -- :: mv composer.phar /usr/local/bin/composer
    -- :: composer -v
    -- :: composer -v
    -- :: composer config -g repo.packagist composer https://packagist.phpcomposer.com
    -- :: find -name composer
    -- :: cd /
    -- :: find -name composer
    2  2019-07-23 11:40:46 cd /etc/yum.repos.d/
    3  2019-07-23 11:40:53 wget http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo
    4  2019-07-23 11:41:07 yum update -y
    5  2019-07-23 11:46:10 rpm -qa kernel |sort -V |tail -n 1
    6  2019-07-23 11:46:17 uname -r
    7  2019-07-23 11:46:32 rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
    8  2019-07-23 11:47:43 yum install binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel dkms
    9  2019-07-23 11:48:52 yum -y install VirtualBox-6.0
   10  2019-07-23 11:51:09 ps -nf|grep yum
   11  2019-07-23 11:51:36 ps -ef | grep yum
   12  2019-07-23 11:52:41 yum -y localinstall /root/download/VirtualBox-6.0-6.0.10_132072_el7-1.x86_64.rpm
   13  2019-07-23 11:54:22 /usr/lib/virtualbox/vboxdrv.sh setup
   14  2019-07-23 11:55:42 VirtualBox
   15  2019-07-23 11:55:53 systemctl start vboxdrv.service
   16  2019-07-23 11:55:57 systemctl status vboxdrv.service
   17  2019-07-23 11:56:04 systemctl enable vboxdrv.service
   18  2019-07-23 11:56:28 yum -y localinstall /root/download/vagrant_2.2.5_x86_64.rpm
   19  2019-07-23 11:56:38 lsof
   20  2019-07-27 19:22:10 iptables -F
   21  2019-07-27 19:22:19 setenforce 0
   22  2019-07-27 19:23:05 systemctl disable firewalld
   23  2019-07-27 19:24:03 nginx -v
   24  2019-07-27 19:30:26 cd /etc/yum.repos.d/
   25  2019-07-27 19:30:31 vim nginx.repo
   26  2019-07-27 19:33:30 vim nginx.repo
   27  2019-07-27 19:34:41 yum list | grep nginx
   28  2019-07-27 19:35:18 yum list | grep nginx
   29  2019-07-27 19:35:30 yum -y install nginx
   30  2019-07-27 19:35:52 mkdir /www
   31  2019-07-27 19:35:56 mkdir /www/wwwroot
   32  2019-07-27 19:36:02 mkdir /www/wwwroot/default
   33  2019-07-27 19:36:05 cd /www/wwwroot/default
   34  2019-07-27 19:36:09 vim index.html
   35  2019-07-27 19:36:36 cd /etc/nginx/conf.d
   36  2019-07-27 19:36:39 vim default.conf
   37  2019-07-27 19:37:51 systemctl start nginx
   38  2019-07-27 19:37:56 systemctl status nginx
   39  2019-07-27 19:38:03 systemctl restart nginx
   40  2019-07-27 19:40:10 yum -y install epel-release
   41  2019-07-27 19:40:19 yum list | grep php72
   42  2019-07-27 19:40:35 rpm -ivh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
   43  2019-07-27 19:40:48 yum list | grep php72
   44  2019-07-27 19:41:13 yum -y install mod_php72w php72w-cli php72w-fpm php72w-common php72w-devel
   45  2019-07-27 19:51:18 halt
   46  2019-07-27 19:58:34 cd /www/wwwroot
   47  2019-07-27 19:58:44 mkdir learn
   48  2019-07-27 19:58:49 cd learn/
   49  2019-07-27 19:58:57 vi index.php
   50  2019-07-27 19:59:57 cd ~
   51  2019-07-27 20:00:15 cd /etc/nginx/conf.d
   52  2019-07-27 20:00:25 vi learn.conf
   53  2019-07-27 20:01:54 systemctl restart nginx
   54  2019-07-27 20:02:01 systemctl start php-fpm
   55  2019-07-27 20:02:09 systemctl restart php-fpm
   56  2019-07-27 20:02:52 rpm -ivh https://dev.mysql.com/get/mysql80-community-release-el7-1.noarch.rpm
   57  2019-07-27 20:03:21 cd ~
   58  2019-07-27 20:03:26 yum list | grep mysql
   59  2019-07-27 20:03:45 yum list | grep mysql
   60  2019-07-27 20:03:49 yum-config-manager --disable mysql80-community
   61  2019-07-27 20:03:55 yum-config-manager --enable mysql57-community
   62  2019-07-27 20:03:59 yum list | grep mysql
   63  2019-07-27 20:04:10 yum -y install mysql-community-server mysql-community-client
   64  2019-07-27 22:29:23 systemctl start mysqld
   65  2019-07-27 22:29:57 grep 'temporary password' /var/log/mysqld.log
   66  2019-07-27 22:30:06 mysql -uroot -p
   67  2019-07-27 22:30:57 set global validate_password_policy=0;
   68  2019-07-27 22:31:02 set global validate_password_mixed_case_count=0;
   69  2019-07-27 22:31:05 set global validate_password_number_count=3;
   70  2019-07-27 22:31:11 set global validate_password_special_char_count=0;
   71  2019-07-27 22:31:15 set global validate_password_length=3;
   72  2019-07-27 22:31:28 set password for root@localhost = password('你的密码');
   73  2019-07-27 22:31:52 set password for root@localhost = password('root');
   74  2019-07-27 22:32:10 mysql -uroot -p
   75  2019-07-27 22:33:47 mysql -uroot -p
   76  2019-07-27 22:34:13 grep 'temporary password' /var/log/mysqld.log
   77  2019-07-27 22:34:16 mysql -uroot -p
   78  2019-07-27 22:35:22 mysql -uroot -p
   79  2019-07-27 22:36:28 systemctl state mysqld
   80  2019-07-27 22:36:59 systemctl status mysqld
   81  2019-07-27 22:37:47 mysql -uroot -p
   82  2019-07-27 22:39:31 systemctl enable mysqld
   83  2019-07-28 10:23:38 cd /www/wwwroot/
   84  2019-07-28 10:23:39 ll
   85  2019-07-28 10:24:00 curl -sS https://getcomposer.org/installer | php
   86  2019-07-28 10:24:17 ll
   87  2019-07-28 10:24:28 mv composer.phar /usr/local/bin/composer
   88  2019-07-28 10:24:35 composer -v
   89  2019-07-28 10:26:35 ll
   90  2019-07-28 10:26:51 curl -sS https://getcomposer.org/installer | php
   91  2019-07-28 10:27:10 ll
   92  2019-07-28 10:27:25 mv composer.phar composer
   93  2019-07-28 10:27:37 ll
   94  2019-07-28 10:27:42 composer -v
   95  2019-07-28 10:28:00 ll
   96  2019-07-28 10:28:40 find -name / composer
   97  2019-07-28 10:28:52 find / -name composer
   98  2019-07-28 10:30:28 composer -v
   99  2019-07-28 10:32:40 php composer.phar -v
  100  2019-07-28 10:33:01 mv composer composer.phar
  101  2019-07-28 10:33:02 php composer.phar -v
  102  2019-07-28 10:37:54 ll
  103  2019-07-28 10:38:12 composer -v
  104  2019-07-28 10:38:46 composer global require laravel/installer
  105  2019-07-28 10:40:44 composer config -g repo.packagist composer https://packagist.phpcomposer.com
  106  2019-07-28 10:40:52 composer global require laravel/installer
  107  2019-07-28 10:42:55 vim /etc/profile
  108  2019-07-28 10:43:20 source /etc/profile
  109  2019-07-28 10:43:25 echo $PATH
  110  2019-07-28 10:43:36 laravel new blog
  111  2019-07-28 10:44:33 cd blog/
  112  2019-07-28 10:44:34 php artisan serve
  113  2019-07-28 10:46:14 cp .env.example .env
  114  2019-07-28 10:46:16 ll
  115  2019-07-28 10:48:40 ll -a
  116  2019-07-28 10:49:39 php artisan key:generate
  117  2019-07-28 10:50:02 cat config/app.php
  118  2019-07-28 10:58:22 hiatory
  119  2019-07-28 10:58:27 history
  120  2019-07-28 11:14:24 systemctl status
  121  2019-07-28 11:16:33 service --status-all | more
  122  2019-07-28 11:16:38 service --status-all | less
  123  2019-07-28 11:17:52 service --status-all
  124  2019-07-28 11:19:01 systemctl list-unit-files
  125  2019-07-28 11:21:00 systemctl restart nginx
  126  2019-07-28 11:21:31 systemctl enable nginx
  127  2019-07-28 11:21:55 systemctl enable nginx.service
  128  2019-07-28 11:22:30 systemctl restart php-fpm.service
  129  2019-07-28 11:22:38 systemctl enable php-fpm.service
  130  2019-07-28 11:23:11 systemctl enable php-fpm.service
  131  2019-07-28 11:36:30 cd /www/wwwroot/learn2
  132  2019-07-28 11:36:34 rm *
  133  2019-07-28 11:39:29 ls
  134  2019-07-28 11:39:40 cd /www/wwwroot/learn2
  135  2019-07-28 11:39:41 ll
  136  2019-07-28 11:39:48 unzip laravel58.zip
  137  2019-07-28 11:41:55 php artisan key:generate
  138  2019-07-28 11:42:04 php artisan -v
  139  2019-07-28 11:42:46 vim /etc/nginx/conf.d/learn.conf
  140  2019-07-28 11:43:43 cp /etc/nginx/conf.d/learn.conf /etc/nginx/conf.d/learn2.conf
  141  2019-07-28 11:45:27 systemctl restart nigix
  142  2019-07-28 11:45:43 systemctl restart ngix
  143  2019-07-28 11:45:47 systemctl restart nginx
  144  2019-07-28 11:45:59 systemctl restart php-fpm.service
  145  2019-07-28 11:46:22 systemctl restart mysqld
  146  2019-07-28 11:47:34 systemctl restart nginx
  147  2019-07-28 11:47:36 systemctl restart php-fpm.service
  148  2019-07-28 11:47:38 systemctl restart mysqld
  149  2019-07-28 11:49:22 systemctl restart nginx
  150  2019-07-28 11:49:24 systemctl restart php-fpm.service
  151  2019-07-28 11:49:27 systemctl restart mysqld
  152  2019-07-28 11:50:12 cd /www/wwwroot/learn2/
  153  2019-07-28 11:50:16 php artisan key:generate
  154  2019-07-28 11:51:05 chmod ./ -R *
  155  2019-07-28 11:51:07 chmod ./ -R
  156  2019-07-28 11:51:11 chmod ./ 777 -R
  157  2019-07-28 11:51:21 chmod ./ -R 777
  158  2019-07-28 11:51:30 chmod -R 777
  159  2019-07-28 11:51:50 chmod -R 777 *
  160  2019-07-28 11:51:57 ll
  161  2019-07-28 12:54:36 yum list | grep php72
  162  2019-07-28 12:55:23 yum -y install php72w-pdo
  163  2019-07-28 12:55:51 php -m
  164  2019-07-28 12:56:04 systemctl restart php-fpm
  165  2019-07-28 13:02:34 yum -y install php72w-mysql php72w-mysqlnd
  166  2019-07-28 13:05:08 yum -y install php72w-mysql
  167  2019-07-28 13:05:28 yum -y install php72w-mysqlnd
  168  2019-07-28 13:06:23 systemctl restart php-fpm
  169  2019-07-28 13:07:23 cd /www/wwwroot/learn2
  170  2019-07-28 13:07:24 php artisan key:generate

0728 history的更多相关文章

  1. History API与浏览器历史堆栈管理

    移动端开发在某些场景中有着特殊需求,如为了提高用户体验和加快响应速度,常常在部分工程采用SPA架构.传统的单页应用基于url的hash值进行路由,这种实现不存在兼容性问题,但是缺点也有--针对不支持o ...

  2. 使用backbone的history管理SPA应用的url

    本文介绍如何使用backbone的history模块实现SPA应用里面的URL管理.SPA应用的核心在于使用无刷新的方式更改url,从而引发页面内容的改变.从实现上来看,url的管理和页面内容的管理是 ...

  3. 使用h5的history改善ajax列表请求体验

    信息比较丰富的网站通常会以分页显示,在点“下一页”时,很多网站都采用了动态请求的方式,避免页面刷新.虽然大家都是ajax,但是从一些小的细节还是 可以区分优劣.一个小的细节是能否支持浏览器“后退”和“ ...

  4. HTML5学习笔记之History API

    这系列文章主要是学习Html5相关的知识点,以学习API知识点为入口,由浅入深的引入实例,让大家一步一步的体会"h5"能够做什么,以及在实际项目中如何去合理的运用达到使用自如,完美 ...

  5. Linux下history命令用法

    如果你经常使用 Linux 命令行,那么使用 history(历史)命令可以有效地提升你的效率.本文将通过实例的方式向你介绍 history 命令的 15 个用法. 使用 HISTTIMEFORMAT ...

  6. safari 浏览器window.history.go(-1)运行无效解决办法

    这几天做了几个手机端app的wap页面,做完之后发现一个问题,那就是ios系统下的safari浏览器不支持window.history.go(-1)..无语... 解决方法很简单!加上return f ...

  7. History lives on in this distinguished Polish city II 2017/1/5

    原文 Some fresh air After your time underground,you can return to ground level or maybe even a little ...

  8. History lives on in this distinguished Polish city 2017/1/4

    原文 History lives on in this distinguished Polish city Though it may be ancient. KraKow, Poland, is a ...

  9. js 中histroy.back()与history.go()的区别

    样例: js6.jsp <%@ page language="java" import="java.util.*" pageEncoding=" ...

随机推荐

  1. 什么是T1与E1线路

    Leased Line 租用线路 租用线路是电信公司为某一机构建造的永久性通信电路.租用线路旁路了本地交换电信局(LEC)上的交换设备,所以在每次数据传输之前无需起始阶段,它们总是连通的.如果线路是长 ...

  2. Spring Boot:整合Swagger文档

    综合概述 spring-boot作为当前最为流行的Java web开发脚手架,越来越多的开发者选择用其来构建企业级的RESTFul API接口.这些接口不但会服务于传统的web端(b/s),也会服务于 ...

  3. .Net上传文件处理三大范式,及开发注意事项

    最近工作内容涉及到一点前端的内容,把学习到的内容记录下来,在今后的开发过程中,不要犯错.本篇只针对一些刚入职的小白及前端开发人员,大牛请绕道!~ 刚开始我们先不讲上传文件的防范问题,先通过一个例子,让 ...

  4. C++几个细节(1)

    标签: C++ 1. 类的初始化 几种不同初始化的区别: A a;和A *a=new A()的区别,示例程序如下: #include <stdio.h> #include <stri ...

  5. 推荐一个Redis管理工具

    Redis是一个开源(BSD许可),内存存储的数据结构服务器,可用作数据库,高速缓存和消息队列代理.它支持字符串.哈希表.列表.集合.有序集合,位图,hyperloglogs等数据类型.内置复制.Lu ...

  6. VsCode 快捷键(Mac)

    按键使用符号: Shift (⇧) Control(或 Ctrl)⌃ Command(或 Cmd)⌘ Option(或 Alt)⌥ 打开文件夹 Cmd+o 调试 // 开启调试 F5 // 停止调试 ...

  7. 【maven 】jar包冲突-记一次冲突解决

    方法一:根据mvn提示一个一个排除 1.请到pom.xml文件所在的目录(包含父子目录)下分别执行下面的命令排查是什么原因导致fastjson版本不正确: mvn dependency:tree -D ...

  8. SSM(四)Mybatis延迟加载

    1.概念 MyBatis中的延迟加载,也称为懒加载,是指在进行关联查询时,按照设置延迟加载规则推迟对关联对象的select查询.延迟加载可以有效的减少数据库压力. 2.关联对象的加载时机 ①.直接加载 ...

  9. JS中的闭包 详细解析大全(面试避必考题)

    JS中闭包的介绍   闭包的概念 闭包就是能够读取其他函数内部变量的函数. 一.变量的作用域 要理解闭包,首先必须理解Javascript特殊的变量作用域. 变量的作用域无非就是两种:全局变量和局部变 ...

  10. 对于BIO/NIO/AIO,你还只停留在烧开水的水平吗?

    1.发发牢骚 相信大家在网上看过不少讲解 BIO/NIO/AIO 的文章,文章中举起栗子来更是夯吃夯吃一大堆,我是越看越觉得 What are you 你讲啥嘞? 本文将针对 BIO/NIO/AIO ...