avatar
文章
826
標籤
177
分類
7
Home
Archives
Tags
Categories
Link
About
米斯特周
搜尋
Home
Archives
Tags
Categories
Link
About

米斯特周

Lisa Ekdah – The color of you
發表於2012-09-05|音乐
Color Of You — Lisa Ekdahl Blue is the color of loveWhen your lover has gone from youYour heart is filled with longing to have new  What came once from othersWhen you open your heart for two But now it’s true and you realize What illusion can do If you close your eyes But the dreaming is over now So blue is the color of you When you’re waiting for someone who Will always make your dreams come trueBut now it’s true and you realize What illusion can do If you close your eyes But the dreaming ...
Linux LVM逻辑卷管理
發表於2012-09-04|Linux
附件内是从网上搜集到的Linux下LVM管理教程,浏览了一下发现和HP-UX一样,如果学习过HP-UX,逻辑卷将会相当容易理解。 下载传送门:#1
How to Install XCache for PHP 5 on CentOS
發表於2012-08-21|Linux
XCache is a open-source opcode cacher, which means that it accelerates the performance of PHP on servers. It optimizes performance by removing the compilation time of PHP scripts by caching the compiled state of PHP scripts into the shm (RAM) and uses the compiled version straight from the RAM. This will increase the rate of page generation time by up to 5 times as it also optimizes many other aspects of php scripts and reduce server load. Download xcahce: cd /opt wget tar -zxvf xcache-2.0.1....
Pure-FTPd完全配置
發表於2012-07-10|Linux
这篇文档描述了在CentOS 6.2下安装Pure-FTPd服务器,包括使用MySQL的虚拟用户,磁盘配额,带宽管理,TLS加密会话和集成病毒检查功能。 在文档开始之前,假设你已经安装好了基本的CentOS 6.2操作系统,且网络正常,安装并配置好了MySQL数据库。如果没有,下面简单说明一下。 安装MySQL数据库服务器yum install mysql mysql-server 使MySQL随系统启动,并启动MySQL。 chkconfig --levels 235 mysqld on service mysqld start 配置MySQL mysql_secure_installation 安装具有MySQL支持的PureFTPdyum install pure-ftpd 之后我们创建一个所有虚拟用户映射的FTP用户组(ftpgroup)和用户(ftpuser)。用你系统中空余的号替代groupid和userid 2001。 groupadd -g 2001 ftpgroup useradd -u 2001 -s /bin/false -d /bin/null -c...
使用Screen使程序继续运行
發表於2012-07-09|Linux
碰到问题: 通过SSH远程登录到Linux系统,要在/home目录下面下载一个mysql-5.5.25.tar.gz的安装包在下载的过程中,不小心把SSH远程连接关闭了,这个时候下载也会中断必须重新登录到系统,再次手动执行命令,才能继续下载之前未下载完成的文件。有没有办法在SSH远程连接被断开或者关闭的时候,系统里面的下载程序还能继续运行? 再次登录到系统之后,还能够看都上次正在下载的文件? 解决办法:(以CentOS系统为例) 1、安装screenyum install screen 2、创建screen会话screen -S mysql5.5 自定义screen虚拟终端的名称,mysql5.5可以改为你想要的名称 3、下载mysql源码包进入/home目录,使用wget命令下载mysql-5.5.25.tar.gz cd /home wget http://mysql.mirror.kangaroot.net/Downloads/MySQL-5.5/mysql-5.5.25.tar.gz 4、测试关闭SSH远程连接窗口,然后重新登录 screen...
CentOS 6.2MySQL主从同步配置
發表於2012-07-07|Linux
主从服务器配置文件设置master: [root@localhost ~]# vi /etc/my.cnf server-id = 1 确认server-id为1 **slave: ** [root@localhost ~]# vi /etc/my.cnf server-id = 2 确认server-id为>1就可以了 启动主从MYSQL服务[root@localhost ~]#service mysql start 在master上建立slave用户并授权,192.168.0.199为slave的IP。 mysql> grant replication slave on *.* to 'slave'@'192.168.0.199' identified by '1234'; mysql> show master status; ------------------ ---------- -------------- ------------------ | File | Position |...
使用rsync同步服务器文件
發表於2012-07-07|Linux
这篇指南告诉你如何使用rsync同步你的web服务器的文件至另一台备份服务器,假如主服务器Down掉,你可以立即手工却换至备份服务器。我们使用rsync进行服务器文件数据同步,通过使用cron的计划任务可以让rsync每X分钟进行同步一次,可以保证备份服务器的数据是最新的。 rsync只同步有变化的或者新的文件,也就是我们通常所说的增量备份。若主服务器上的文件被删除,它也可以从备份服务器删除文件。它能保证主服务器与备份服务器的文件和目录的权限和属主是一致的,但是前提要求是必须以root权限运行rsync。若主服务器上的文件或目录的属性发生了变化,rsync也能同步至备份服务器,始终保持一致。 本指南中rsync是通过更加安全的ssh方式进行同步,使用默认的ssh端口即可,不需要在防火墙中为rsync另开端口,但问题是ssh登录是需要密码的,若我们使用cron计划任务,这就需要人工输入密码。那么还有办法吗?幸运的是,ssh提供公钥登录,只需要在备份服务器生成公钥和私钥,然后将公钥保存至主服务器,这样SSH登录就不再需要密码,那么用cron计划任务来使用rsync同步文件数据就非常方...
CentOS安装php加速软件Zend Guard
發表於2012-07-05|Linux
说明:PHP5.3以上的版本不再支持Zend Optimizer,已经被全新的 Zend Guard Loader 取代,下面是安装Zend Guard具体步骤,以下操作均在终端命令行执行 1、下载Zend Guardcd /home# wget http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz #32位 # wget http://downloads.zend.com/guard/5.5.0/ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz #64位 2、安装Zend Guard# mkdir /usr/zend #建立Zend Guard安装目录 # tar xvfz ZendGuardLoader-php-5.3-linux-glibc23-i386.tar.gz #解压安装文件 # cp ZendGuardLoader-php-5.3-linux-glibc23-i386/php-5...
CentOS安装php加速软件Zend Optimizer 3.3.9
發表於2012-07-05|Linux
引言: php程序代码被加密过后,必须安装解密软件Zend Optimizer才能进行使用,比如Shopex等php程序,下面我们安装Zend Optimizer 3.3.9(针对php5.2,X之前的版本,php5.3.X需要安装Zend Guard),操作如下: 1、下载Zend optimizercd /home wget http://downloads.zend.com/optimizer/3.3.9/ZendOptimizer-3.3.9-linux-glibc23-i386.tar.gz #32位 wget http://downloads.zend.com/optimizer/3.3.9/ZendOptimizer-3.3.9-linux-glibc23-x86_64.tar.gz #64位 2、安装Zend optimizermkdir /usr/zend #建立Zend Optimizer安装目录 tar xvfz ZendOptimizer-3.3.9-linux-glibc23-i386.tar.gz #解压安装文件 cp /home/ZendOptim...
在CentOS 6.2上安装Nginx+PHP5(PHP-FPM)+MySQL
發表於2012-07-03|Linux
1.使用非官方软件源[root@localhost /]# rpm --import https://fedoraproject.org/static/0608B895.txt [root@localhost /]# rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-7.noarch.rpm [root@localhost /]# rpm –import http://rpms.famillecollet.com/RPM-GPG-KEY-remi [root@localhost /]# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm [root@localhost /]# yum install yum-priorities 编辑/etc/yum.repos.d/epel.repo文件,启用这个源,使其优先级最高 [epel] name=Extra Packages for Enterprise Li...
1…121314…83
avatar
zhou
文章
826
標籤
177
分類
7
最新文章
CertBot申请证书2026-04-13
Tailscale-自建Derp中继服务器2026-03-12
Github无法push代码报Connection closed2024-11-28
Cloudflare Tunnels无法建立隧道的解决办法2024-11-26
Stay With Me - Miki Matsubara2024-11-23
分類
  • Andriod2
  • Linux119
  • Windows99
  • 分享69
  • 开发35
  • 我的世界443
  • 音乐59
標籤
ARP Aretha Octoshape Kopete OpenWRT 黑莓 tc ArchLinux Restrepo pdnsd YUM 蒋嘉莹 nscd Exchange2003 FreeBSD Nokia Lisa Ekdah 周杰伦 RSS 和平之月 WingIDE 薬師寺寛邦 Sublime Text 中孝介 Technorati Oracle Proftpd WOW ntop GPG ntp Sygate screen Avira shell ASP.NET Mr.Children Windows Live Mail MarkdownPad Miki Matsubara
歸檔
  • 四月 2026 1
  • 三月 2026 1
  • 十一月 2024 4
  • 六月 2024 1
  • 五月 2024 2
  • 一月 2024 2
  • 八月 2022 2
  • 二月 2022 1
網站資訊
文章數量 :
826
總字數 :
531.8k
訪客數 :
總瀏覽量 :
最後更新時間 :
© 2005 - 2026 By zhou框架 Hexo 8.1.1|主題 Butterfly 5.5.4
搜尋
資料載入中