CentOS7.3安装Python3

从 Python 官网下载源码包wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz 安装 Python 依赖的第三方包 yum install openssl-devel libxslt-devel -y 解压缩源码包然后编译安…

CentOS7安装ghost三部曲

yum install gcc* yum install nodejs npm install -g ghost-cli 不出意外的话就装好了. 然后到网站目录下ghost install比如我的目录就是/var/www/web cd /var/www/web ,ghost install 最后在配…

CentOS7 mini版本安装nginx失败

安装的时候提示:You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest 是因为没有nginx的源加入以下神秘代码便可解决 rpm …

CentOS7 安装mysql

CentOS7之后没有mysql-server端改为mariadb安装过程为. yum install mysql, yum install mariadb-server mariadb. systemctl start mariadb #启动MariaDB systemctl stop maria…