随着一声惊雷和滂沱的大雨,我的Phabricator页面终于在我的学生机上跑了起来. 想起在这五个小时内踩过的坑甚如大学隔壁炮王干过的妹子,心里的成就感不禁油然而生. 接下来,我将和大家分享一下本人在CentOS7.4版本,利用lnmp搭建Phabricator的实战过程和踩过的坑.这一方面是为我下一步在docker上部署并制作镜像做好铺垫,更重要的是,我能够有幸和游走在这令人头秃的修罗场里的勇士们,分享我自认为史诗一般难得的宝贵经验.好,那么接下来我们进入正题. 一.什么是phabricato…
1  安装12c 1.1  Table 3 x86-64 Supported Linux 7 Operating System Requirements Item Requirements SSH Requirement Ensure that OpenSSH is installed on your servers. OpenSSH is the required SSH software. Oracle Linux 7 Subscribe to the Oracle Linux 7 chan…
Using the MySQL Yum Repository  /  Installing MySQL on Linux Using the MySQL Yum Repository Chapter 1 Installing MySQL on Linux Using the MySQL Yum Repository MySQL provides a Yum-style software repository for the following Linux platforms: EL5, EL6,…
1.9i Oracle官方文档在线查看 http://www.oracle.com/pls/db92/homepage 2.10g Oracle官方文档线查看 http://www.oracle.com/pls/db102/homepage 3.11gR1 Oracle官方文档线查看 http://www.oracle.com/pls/db111/homepage 4.11gR2 Oracle官方文档线查看 http://www.oracle.com/pls/db112/homepage 5.1…
一.模块安装 pip3 install schedule 官方文档 二.常用的使用案例 #基本格式 #创建方法 def func(): print("方法") #创建定时 schedule.every().seconds.do(func) #每秒运行一次 #如果方法需要传参的话do(func,参数1) #开循环 while True: schedule.run_pending() #如果值运行一次schedule.every().day.do(func).run() schedule.…
一.系统及安装包 操作系统:centos 7.4 oracle版本:oracle 11g r2 二.centos环境配置 安装数据库所需要的软件包 [root@localhost data]# yum -y install binutils* compat-libcap1* compat-libstdc++* gcc* gcc-c++* glibc* glibc-devel* ksh* libaio* libaio-devel* libgcc* libstdc++* libstdc++-deve…
oracle 12c 官方文档 http://www.oracle.com/pls/db121/homepage oracle 12c 软件下载 http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html…
oracle软件安装完毕之后,如何创建数据库 学习了:https://zhidao.baidu.com/question/1800966379896476147.html 使用了Database Configuration Assistant 自带软件:…
本指南介绍了如何在 Ubuntu 上安装 TensorFlow.这些指令也可能对其他 Linux 变体起作用, 但是我们只在Ubuntu 14.04 或更高版本上测试了(我们只支持)  这些指令. 一.确定要安装的 TensorFlow 要安装以下类型的 TensorFlow, 必须选择其中一种: 仅使用 CPU 支持的 TensorFlow.如果您的系统没有 NVIDIA® GPU, 则必须安装此版本.请注意, 此版本的 TensorFlow 通常更容易安装 (通常在5或10分钟), 因此,…
安装前记: 近来容器对企业来说已经不是什么陌生的概念,Kubernetes作为Google开源的容器运行平台,受到了大家的热捧.搭建一套完整的kubernetes平台,也成为试用这套平台必须迈过的坎儿.kubernetes1.5版本以及之前,安装还是相对比较方便的,官方就有通过yum源在centos7安装kubernetes.但是在kubernetes1.6之后,安装就比较繁琐了,需要证书各种认证,对于刚接触kubernetes的人来说很不友好,按照官方文档在本地安装"集群"的的话,我…