加载中
flutter 打包变更gradle

改变插件作者不一致的地方 改变文件 build.gradle compileSdkVersion 28 gradle-wrapper.properties distributionUrl=https://services.gradle.org/distributions/gradle-5.6.2-all.zip bui...

mysql 5.7 配置

By default we only accept connections from localhost bind-address = 127.0.0.1 Disabling symbolic-links is recommended to prevent assorted security risks symbolic-links=0 #innodb...

查找tomcat 进程并关闭

#!/bin/bash pid_=$(ps -ef|grep 'tomcat'|grep -v 'grep'|awk '{print $2}') kill -9 $pid_

2017/01/15 00:33
205
oracel备份

#oracle 目录授权读写操作 grant read,write on directory dir1 to user; #进行备份 expdp user/123451 directory=dir1 dumpfile=20161212.dump full=y parallel=10 exclude=statistics logf...

2016/12/12 04:58
27
CENTOS6.0 KVM 虚拟化web管理安装

1安装KVM 略... 2安装 WEB管理系统 ConVirt yum install wget socat cd /etc/yum.repos.d wget --no-cache http://www.convirture.com/repos/definitions/rhel/6.x/convirt.repo cd /root/ w...

2013/04/05 21:53
3.6K
Centos上快速搭建Xen虚拟环境

 趁这个机会,将几台测试服务器全部整成Xen,在Xen里搭建测试环境,环境一旦坏了,重新拷贝一下镜像文件即可,不用重新安装系统了。   宿主系统centos 5.x   yum install xen kernel-xe...

2013/04/05 21:22
351
CentOS6.3安装MySQL5.6.10并修改MySQL的root用户密码

环境:CentOS 6.3 最小化缺省安装,配置好网卡。   安装MySQL前,确认Internet连接正常,以便下载安装文件。   先使用 yum -y update 指令升级系统到最新版本。   本安装将MySQL的数据...

2013/03/17 15:22
798
mongoDB 入门指南、示例

mongoDB 入门指南、示例 一、准备工作 1、 下载mongoDB 下载地址:http://www.mongodb.org/downloads 选择合适你的版本 相关文档:http://www.mongodb.org/display/DOCS/Tutorial 2、 安装m...

2012/12/25 21:46
61
使用SecureCRT设置linux系统登录的ssh公钥认证

linux系统环境:CentOS release 5.5 1.修改ssh配置文件/etc/ssh/sshd_config RSAAuthentication yes //使用RSA加密算法 PubkeyAuthentication yes //使用公钥认证 AuthorizedKeysFile .ssh/...

2012/11/29 22:14
1.9K
给自己的网站加个外链

http://www.baibell.com

2012/10/28 13:03
99
使用postgreSQL+bamboo搭建比lucene方便N倍的全文搜索

所有用到到包有: cmake-2.6.4.tar.gz (编nlpbamboo用) CRF++-0.53.tar.gz(同上) nlpbamboo-1.1.1.tar.bz2(分词用) postgreSQL-8.3.3.tar.gz(索引用) 安装pgsql tar -zxvf postgreSQL-8....

2012/10/13 22:22
615
Ubuntu11.10 源码编译安装PHP5.3.8

一、 准备 环境:64位 Ubuntu 11.10 服务器: Nginx 1.1.13 下载PHP源码:本文使用5.3.8版本 二、 安装 # tar zxvf php5.3.8.tar.gz # cd php5.3.8 # ./configure --prefix=/usr/loc...

2012/10/13 12:29
603
centos下nginx+postgresql+php+memcached+apc安装与配置

具体安装步骤如下: 具体安装软件包: nginx1.0.13 wget http://nginx.org/download/nginx-1.0.13.tar.gz postgresql9.1.2 wget http://ftp.postgresql.org/pub/source/v9.1.2/postg...

2012/10/12 23:31
1.6K
config.status: error: cannot find input file: s...

运行: $aclocal $libtoolize --force $automake --add-missing $autoconf $autoheader $make clean 在重新config...

2012/10/04 01:26
457
wordpress coreseek全文搜索配置

# # Minimal Sphinx configuration sample (clean, simple, functional) # source wp_posts {   # data source type. mandatory, no default value   # known types are mysql, pgsql, mssql, ...

2012/10/03 22:39
3.7K
git对比工具beyond compare3配置

For Git 1.7.6 and newer, edit the global config file to set the path: 新版本的配置方式 Diff At a Windows command prompt enter the commands: git config --global diff.tool bc3 git...

2012/09/26 09:26
3.4K
yii rbac访问规则

Controllers(控制器):这条规则指定了一个包含多个控制器ID的数组,来指明哪些规则需要被应用。 Roles(角色):这条规则指定了一个将被规则使用的授权列表(包括角色,操作,权限等)。这些是为...

2012/08/22 17:42
264
美国主机地理分布图及其速度测试

一次在做友情链接的时候,遇到一位站长,我给他看了我的网站,他说在他那里打开很慢,他用的铁通的线路,我解析说我用的国外的godaddy的空间,不料,他比我还懂这个空间,他问我:“空间是那...

2012/08/21 16:29
444
怎么查看端口占用情况?

开始--运行--cmd 进入命令提示符 输入netstat -ano 即可看到所有连接的PID 之后在任务管理器中找到这个PID所对应的程序如果任务管理器中没有PID这一项,可以在任务管理器中选"查看"-"选择列"...

2012/08/20 22:56
1.5K
nginx pathinfo

fastcgi_split_path_info ^(.+\.php)(.*)$; fastcgi_param SCRIPT_FILENAME /path/to/php$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSL...

2012/08/03 22:25
328

没有更多内容

加载失败,请刷新页面

返回顶部
顶部