install

Linux下的ngnix安装与启动

我怕爱的太早我们不能终老 提交于 2020-02-04 03:43:07
Linux安装Nginx 1.安装gcc gcc-c++(如新环境,未安装请先安装) $ yum install -y gcc gcc-c++ 2.安装wget $ yum -y install wget 3.安装PCRE库 $ cd /usr/local/ $ wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.33/pcre-8.33.tar.gz $ tar -zxvf pcre-8.33.tar.gz $ cd pcre-8.33 $ ./configure $ make && make install 如果报错: 在 linux 中执行 wget 命令提示 -bash: wget: command not found 解决方法 解决办法 yum -y install wget 4.安装SSL库 $ cd /usr/local/ $ wget http://www.openssl.org/source/openssl-1.0.1j.tar.gz $ tar -zxvf openssl-1.0.1j.tar.gz $ cd openssl-1.0.1j $ ./config $ make && make install 5.安装zlib库存 $ cd /usr/local/ $ wget http://zlib

Nginx基本安装

匆匆过客 提交于 2020-02-04 03:42:21
Windows安装Nginx 解压:nginx-windows 双击: nginx.exe 能看到nginx欢迎界面说明,nginx安装成功 演示下 nginx做静态服务器 启动Nginx C:\server\nginx-1.0.2>start nginx 或 C:\server\nginx-1.0.2>nginx.exe 注:建议使用第一种,第二种会使你的cmd窗口一直处于执行中,不能进行其他命令操作。 停止Nginx Linux安装Nginx 1.安装gcc gcc-c++(如新环境,未安装请先安装) $ yum install -y gcc gcc-c++ 2.安装wget $ yum -y install wget 3.安装PCRE库 $ cd /usr/local/ $ wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.33/pcre-8.33.tar.gz $ tar -zxvf pcre-8.33.tar.gz $ cd pcre-8.33 $ ./configure $ make && make install 如果报错: 在 linux 中执行 wget 命令提示 -bash: wget: command not found 解决方法 解决办法 yum -y install wget 4.安装SSL库

Linux 安装Nginx详细图解教程

谁说胖子不能爱 提交于 2020-02-04 03:36:40
进入:/usr/java/nginx位置 下载nginx: wget http://nginx.org/download/nginx-1.13.4.tar.gz 下载openssl : wget http://www.openssl.org/source/openssl-fips-2.0.9.tar.gz 下载zlib : wget http://zlib.net/zlib-1.2.11.tar.gz 下载pcre : wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz 如果没有安装c++编译环境,还得安装,通过yum install gcc-c++完成安装 下一步,编译安装 openssl : [root@localhost] tar zxvf openssl-fips-2.0.9.tar.gz [root@localhost] cd openssl-fips-2.0.9 [root@localhost] ./config && make && make install pcre: [root@localhost] tar zxvf pcre-8.36.tar.gz [root@localhost] cd pcre-8.36 [root@localhost] ./configure

源码安装apache

一个人想着一个人 提交于 2020-02-03 23:56:34
准备工作 输入:’yum search apr’ 命令,查找apr相关软件 输入:’yum install apr apr-devel apr-util-devel apr-util’ 安装apr依赖包 输入:’yum groupinstall Development Tools -y’ 安装开发者工具包 下载安装httpd 官网下载httpd (apache在linux中叫做httpd) 下载链接 用FZ传输到虚拟机中 输入:’tar -zxvf httpd-2.4.37.tar.gz’ 解压httpd 在usr/local/下新建apache2的文件夹 cd /usr/local/ mkdir apache2 然后输入:’cd http-2.4.37’ 进入htthd目录 输入: ./configure –grefix=/usr/local/apache2 进行安装 大专栏 源码安装apache 遇到错误(缺少pcre) 下载pcre,传输到虚拟机中 解压pcre 进入到pcre文件中 输入: ‘./configure’ make && make install 错误解决,回到httpd继续安装 继续安装httpd ./configure –grefix=/usr/local/apache2 make && make install 编译于当前软件相依赖的源码,生成可执行程序

widows 10 下解决在npm install python 环境报错的问题

你。 提交于 2020-02-03 13:24:13
1.使用管理员打开cmd 2.安装 node-gyp; gyp是一种根据c++源代码编译的工具,node-gyp就是为node编译c++扩展的时候使用的编译工具。 npm install -g node-gyp 3.python2.7 因为node-gyp需要依赖python2.7和微软的vc++构建工具来进行编译但是windows操作系统在默认情况下不会安装python2.7和vc++构建工具。 为node-gyp配置安装python2.7以及VC++ build Tools依赖 npm install --global --production windows-build-tools; 4.系统变量里面就有python的变量路径,之前是没有的,; 5.现在对项目重新npm install ,会正常安装; 6.主要是node-sass 模块需要这个环境; 来源: https://www.cnblogs.com/-youth/p/12255196.html

Installing OpenCV in Visual Studio 2012

杀马特。学长 韩版系。学妹 提交于 2020-02-03 10:38:50
问题 Im trying to install OpenCV to work with Visual Studio. I'm using the 2012Pro version but I think it should be the same as vs10. I was following this tutorial: http://docs.opencv.org/doc/tutorials/introduction/windows_visual_studio_Opencv/windows_visual_studio_Opencv.html#windows-visual-studio-how-to I have A Solution with only one Project And with only one file. For testing purposes I used the same code as in the tutorial. // Video Image PSNR and SSIM #include <iostream> // for standard I/O

Installing OpenCV in Visual Studio 2012

牧云@^-^@ 提交于 2020-02-03 10:38:09
问题 Im trying to install OpenCV to work with Visual Studio. I'm using the 2012Pro version but I think it should be the same as vs10. I was following this tutorial: http://docs.opencv.org/doc/tutorials/introduction/windows_visual_studio_Opencv/windows_visual_studio_Opencv.html#windows-visual-studio-how-to I have A Solution with only one Project And with only one file. For testing purposes I used the same code as in the tutorial. // Video Image PSNR and SSIM #include <iostream> // for standard I/O

我爱Java系列之---【linux系统centos版本安装软件-宝塔】

佐手、 提交于 2020-02-03 07:24:25
1.登录centos系统,可以使用工具:finalshell或者xshell,也可以直接用宝塔客户端。登录上之后,根据你的系统选择下边对应的命令。 使用 SSH 连接工具,如 宝塔远程桌面助手 连接到您的 Linux 服务器后, 挂载磁盘 ,根据系统执行相应命令开始安装(大约2分钟完成面板安装): Centos安装脚本 yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh Ubuntu/Deepin安装脚本 wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh Debian安装脚本 wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh Fedora安装脚本 wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh 2.上边命令执行完之后,会生成下图界面 3.复制上图的

ClickOnce and GAC

久未见 提交于 2020-02-03 05:43:27
问题 I have WinForms application .net 3.5. I deploy it using clickonce in intranet with several client machines. I publish application in intranet web server (http://desbiz/CarwinClickOnce). In developer environment (my PC), my application uses GAC assemblies, like Fk.Security.Common.dll v.1.0.0.0. In tab Publish -> Application files in Properties of WinForms application csproj, I set value Include for Fk.Security.Common.dll reference. Now, some client machines have Fk.Security.Common.dll v.1.0.0

Hitchhiker编译

纵饮孤独 提交于 2020-02-03 05:16:18
介绍 hitchhiker是一个开源软件,基于nodejs,以typescript语言编写的可视化的web接口文档、测试、压测的工具。支持导入、使用第三方js模块。 源码: https://github.com/brookshi/Hitchhiker 需要切换到 release 分支 编译环境 nodejs 版本要求7.60+,并更新npm到最新 npm install npm -g 。本人采用的8.9.4版本。 全局安装 可以参考 https://github.com/brookshi/Hitchhiker/blob/release/cn/installation/win.md 中的脚本链接 https://raw.githubusercontent.com/brookshi/Hitchhiker/release/deploy/win_deploy.bat 。使用 cnpm 吧,快很多。 cnpm install -g yarn gulp-cli gulp typescript@2.3.3 依赖安装 随着typescript版本的提高,一些默认导入的包的版本过高,导致正常编译报错,需要降低某些包的版本。 首先把版本中 ^ 全部去掉,只使用特定版本。 在package.json中的devDependencies里增加以下配置: "@types/connect": "3.4.32",