标签/Linux
Centos7.4用yum搭建LAMP环境

Centos7.4下用yum搭建LAMP环境...
git常用命令汇总

git常用命令汇总 1.列出所有本地分支 git branch 2.列出所有远程分支 git branch -r 3.列出所有本地分支和远程分支 git branch -a 4.新建一个分支,但依然停留在当前分支 git branch [branch-name]...
Centos安装MySQL5.7填坑小记

由于项目需要,Centos6.5环境下的Mysql需要升级到5.7版本,中间遇到的一些坑You could try using --skip-broken to work around the problem; You could try running: rpm -Va --nofiles --nodigest;Unknown column 'password' in 'field list';You must reset your password using ALTER USER statemen...
在Centos下用alternatives命令切换JDK版本

Centos自带了openJDK,且有好几个版本,用alternatives命令就可以切换版本;然,新项目需要jdk1.8,于是从官网下载了jdk-8u144-linux-x64.tar.gz进行安装;tar解压到/usr/local/smartCms/java/下一步,将新装的JDK版本登记到alternatives里面...