
centos7
文章平均质量分 89
傲气也拽拽
莫等闲,白了少年头,空悲切。
展开
-
centos7下安装git服务端,并自动更新到web目录
1.服务器安装git①yum安装[root@localhost home]#yum install -y git②查看版本[root@localhost home]# git --versiongit version 1.7.12.创建git用户并设置密码[root@localhost home]# id gitid: git:无此用户[root@localhost h...原创 2018-10-26 10:37:48 · 669 阅读 · 0 评论 -
linux下安装svn服务端,并配置自动更新项目到web目录
①安装svn服务端[root@vm-31 ~]# yum install svn②创建服务端仓库,并设置权限[root@vm-31 ~]# mkdir -p /var/svn/test[root@vm-31 ~]# svnadmin create /var/svn/test[root@vm-31 test]# vi conf/passwdvi conf/svns...原创 2018-10-30 15:20:17 · 287 阅读 · 0 评论 -
centos7下yum安装lamp,php7.2+mysql5.7
1 安装apache①安装[root@localhost ~]# yum install httpd②启动[root@localhost ~]# systemctl start httpd2 安装php7.2参考博客:https://blog.youkuaiyun.com/qq292913477/article/details/80696606①卸载之前安装的php[root@...原创 2018-12-05 17:12:02 · 765 阅读 · 0 评论 -
centos7下yum安装Supervisor
centos7下yum安装Supervisor# yum install epel-release# yum install -y supervisor# systemctl enable supervisord # 开机自启动# systemctl start supervisord # 启动supervisord服务# systemctl status supervisord #...原创 2019-02-22 09:50:59 · 6596 阅读 · 0 评论 -
centos7下使用docker搭建mysql集群,pxc
1)安装docker,首先更新yum源,然后重启,否则有可能docker启动报错[root@localhost ~]# yum -y update #更新yum[root@localhost ~]# yum install -y docker #yum安装docker[root@localhost ~]# systemctl start docker #启动docker...原创 2019-09-02 11:05:21 · 640 阅读 · 0 评论