51CTO博客开发sery
这里使用的mysql版本为5.6.23,并且配置的是全新的mysql主从复制(之前没有数据存在)1. 配置mastervi my.cnf log-bin=mysql-bin server-id=1 innodb_flush_log_at_trx_commit=1 sync_binlog=1 service mysqld restart2. 配置slavevi 
1. 使用openssl生成服务器和客户端证书生成服务器证书,服务器使用自签名证书(也就是自己扮演CA)openssl genrsa -out server-key.pem 2048 openssl req -new -sha256 -key server-key.pem -out ser
1. 安装tar zxvf redis-2.8.19.tgz -C /usr/src cd /usr/src/redis-2.8.19 make make install2. 启动cp redis.conf /etc/ redis-server /etc/redis.conf
1. 安装libeventwget https://sourceforge.net/projects/levent/files/libevent/libevent-2.0/libevent-2.0.22-stable.tar.gz --no-check-certificate tar zxvf libevent-2.0.22-stable.tar.gz&nb
1. 进入php的源码目录cd /usr/src/php-5.3.27/ext/soap/2. 运行phpize/usr/local/php/bin/phpize3. 配置、编译并安装soap./configure --with-php-config=/usr/local/php/bin/php-config --enable-soap make &
问题:cacti安装好后首次访问时页面一片空白解决办法:我的php采用的是源码编译安装,第一次配置时连接mysql用的参数是:./configure --with-mysqli=mysqlnd //这里只列出连接mysql的参数,其他参数省略后来将连接mysql的参数改为如下重新编译安装,首页就可以访问了./configure&n
Juniper Netscreen VPN client for linux
1.需要安装1.5以上版本的mutttar zxvf mutt-1.5.21.tar.gz -C /usr/src/ cd /usr/src/mutt-1.5.21/ ./configure --prefix=/usr/local/mutt make install2.配置发送/usr/local/mutt/bin/mutt -s "数据测试" -e 'set content_type="t
1.安装apachepostfix stop systemctl disable postfix yum erase postfix //卸载系统自带的postfix userdel postfix groupdel postdrop groupadd -g 1000&nbs
1.服务端配置 vi /etc/exports /hello 192.168.10.2(ro) service portmap start service nfs start showmount -e //查看服务器本机的共享内容 mkdir /hello touch /hello/test.txt //测试
1.下载安装 tar zxvf jdk-7u9-linux-i586.tar.gz -C /usr/local/ mv /usr/local/jdk1.7.0_09 /usr/local/jdk tar zxvf apache-tomcat-7.0.32.tar.gz -C /usr/local/ mv /usr/local/apache-tomcat-7.0.32/ /usr/
注:此文参考了以下文章http://300second.blog.51cto.com/7582/780348 1.下载并安装 tar zxvf /home/hello/subversion-1.7.7.tar.gz -C /usr/src/ cd /usr/src/subversion-1.7.7/ ./get-deps.sh ./configure --prefix=/usr/loca
1.安装 yum -y install pcre-devel ncurses-devel useradd -s /sbin/nologin varnish mkdir /data/varnish/cache mkdir /data/varnish/log chown -R varnish:varnish /data/varnish/cache chown -R varnish:varn
这篇文章借鉴了唐光辉的博客http://firefly222.blog.51cto.com/ 1.下载pptp-1.7.2-3.rhel5.src.rpm 源码rpm包 wget http://nchc.dl.sourceforge.net/project/pptpclient/pptp/pptp-1.7.2/pptp-1.7.2-3.rhel5.src.rpm 2.安装 rpmbuild
1.备份 cp Centos-Base.repo 123Centos.Base.repo.back 2.修改Centos-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each
hello~ 今天登录cacti时提示timezone错误: PHP Warning: strtotime(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or t
1.postfix在创建虚拟用户数据库时导入extmail.sql报错(mysql版本为5.5.24):ERROR 1064 (42000) at line 50: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right sy
cisco交换机导出配置信息 1.下载Cisco TFTP Server软件,运行,指定日志和交换机配置文件存储位置 2.在思科交换机上运行copy startup-config tftp 3.按提示输入ip(运行TFTP软件的机器的IP,注意该机器使用的应该是静态IP) 华为交换机导出配置信息 (注:我这里用的是huaweiS2000交换机,不通型号的可能配置不一样
访问www.hello.com转到www.qikangwei.com server_name www.hello.com; if ($host='www.hello.com') { rewrite ^/(.*)$ http://www.qikangwei.com$1 permanent; }
本文参考了以下文章http://longwind.blog.51cto.com/419072/806302 1.环境 eth0:192.168.6.2 网关192.168.6.1 eth1:192.168.7.2 网关192.168.7.1 centos5.7 2.配置网卡 vi /etc/sysconfig/network-script
1.安装apache、mysql、php步骤这里省略...2.安装net-snmp-utilsyum -y install net-snmp-utils3.安装rrdtoolyum -y install pango pango-devel cairo cairo-develtar zxvf /home/rrdtool-1.4.7.tar.gz -C /usr/src/cd /usr/src/rrd
lighttpd安装:1.安装yum -y install bzip2-devel pcre-develtar zxvf /home/lighttpd-1.4.30.tar.gz -C /usr/src/cd /usr/src/lighttpd-1.4.30/./configure --prefix=/usr/local/lighttpd/makemake install2.配置mkdir /us
按照网上的步骤做awstats时最后访问生成的静态页面时提示404...解决:由于我的awstats生成的静态文件不在网站根目录下,所以添加alias,如:location /awstats/ { alias /date/awstats/; index index.html;}location /icon/ { alias /usr/local/awstats/wwwroot/icon/; ind
1.安装源码包 tar jxvf /home/msmtp-1.4.26.tar.bz2 -C /usr/src/ cd /usr/src/msmtp-1.4.26/ ./configure --prefix=/usr/local/msmtp/ make make install (http://down.51cto.com/data/313072) yum -y install
服务器:192.168.10.31 172.28.3.2客户端:192.168.10.2实现客户端可以访问服务器内网172网段1.安装软件包tar zxvf /home/lzo-2.05.tar.gz -C /usr/src/cd /usr/src/lzo-2.05/./configuremake && make install(http://www.oberhumer.com/o
实现目标:来自电信的ip访问电信线路上的服务器,来自网通的ip访问网通线路上的服务器,来自其它区的ip还是访问电信线路上的服务器。 1.安装bind软件包(我这里用系统自带的rpm包)bind-9.7.0-5.P2.el6.i686bind-utils-9.7.0-5.P2.el6.i686bind-chroot-9.7.0-5.P2.el6.i6862.创建主配置文件cd /var/named
centos6.0上安装:nginx-1.0.8 + mysql-5.5.15 + php-5.3.8 1.mysql-5.5.15 的安装前面介绍过了,这里省略...2.nginx-1.0.8 安装安装pcre,我这里用系统自带的rpm包:rpm -qa | grep pcrerpm -ivh /media/Packages/pcre-devel-7.8-3.1.el6.i686.rpm安装其他
我的主机是自动获得公网IP,但只有一个上网账号,我想让虚拟机也能上网...1.主机设置设置虚拟网卡VM8的ip(VMware Network Adapter VMnet8),例如:192.168.10.12.linux虚拟机设置网络连接选择NAT: 虚拟机网络配置:“Edit”--“Virtual Network Editor”,配置vm8的NAT选项...如下图:修改lin
在centos6.0上安装并配置mysql cluster我在这里用的是mysql cluster 7.1.15a的rpm包我用了五台虚拟机:一个管理节点、两个sql节点、两个数据节点简单说一下安装配置步骤:1.管理节点安装rpm -vih /home/aa/MySQL-Cluster-gpl-management-7.1.15a-1.rhel5.i386.rpmrpm -vih /home/aa
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号