首页
关于
标签合集
友情链接
Search
1
一些简单方面的Linux生产随机密码shell
382 阅读
2
美超微主板IPMI使用教程
350 阅读
3
Ubuntu系统开启root登陆权限
278 阅读
4
linux下502自动重启脚本
269 阅读
5
利用廉价VPS做反代,保护你的真实服务器
216 阅读
OS
促销资讯
管理系统
网站运维
网文资讯
登录
Search
标签搜索
网站架构
linux
网站运营
centos
mysql
google
nginx
ssh
apache
服务器
kloxo
vps
架构分析
PHP
特价VPS
xen
shell
数据库
lamp
vpn
装逼爱好者
累计撰写
163
篇文章
累计收到
20
条评论
首页
栏目
OS
促销资讯
管理系统
网站运维
网文资讯
页面
关于
标签合集
友情链接
搜索到
163
篇与
的结果
2011-04-09
手工配置lamp
yum -y updateyum -y install gcc gcc-c++ authconf automake libtool libevent libevent-develyum -y install ncurse nucrse-devel gd gd-deevel freetype freetype-devel fontconfig fontconfig-devel libjpeg libjpeg-devel zlib zlib-devel pcre pcre-develyum -y install libmcrypt mhashyum -y install mysql mysql-server mysql-develyum -y install httpd httpd-develyum -y install php*启动apache/etc/init.d/httpd restart启动mysql/etc/init.d/mysqld restart设置开机启动chkconfig httpd onchkconfig mysqld on附:如果需要修改的话,那么修改配置文件即可。附1:mysql配置文件所在位置:# ls -l /etc/my.cnf-rw-r--r-- 1 root root 441 Nov4 02:53 /etc/my.cnf#附2:apache配置文件所在位置:# ls -l /etc/httpd/total 8drwxr-xr-x 2 root root 4096 Jan 11 07:06 confdrwxr-xr-x 2 root root 4096 Jan 11 07:03 conf.dlrwxrwxrwx 1 root root 19 Jan 11 06:53 logs -> ../../var/log/httpdlrwxrwxrwx 1 root root 27 Jan 11 06:53 modules -> ../../usr/lib/httpd/moduleslrwxrwxrwx 1 root root 13 Jan 11 06:53 run -> ../../var/run#附3:php配置文件所在位置:# ls -l /etc/php.ini-rw-r--r-- 1 root root 45079 Nov 30 00:53 /etc/php.ini#wget http://bart.eaccelerator.net/source/0.9.6/eaccelerator-0.9.6.tar.bz2tar xjf eaccelerator-0.9.6.tar.bz2cd eaccelerator-0.9.6/usr/bin/phpize./configure --enable-eaccelerator=shared --with-php-config=/usr/bin/php-configmakemake installcd ..rm -rf eaccelerator-0.9.6rm eaccelerator-0.9.6.tar.bz2mkdir /tmp/eacceleratorchmod 777 /tmp/eaccelerator然后在/etc/php.d/中创建一个eaccelerator.ini里面根据你自己情况分别写上1.OPENVZextension="eaccelerator.so"eaccelerator.shm_size="0"eaccelerator.cache_dir="/tmp/eaccelerator"eaccelerator.enable="1"eaccelerator.optimizer="1"eaccelerator.check_mtime="1"eaccelerator.debug="0"eaccelerator.log_file = "/var/log/eaccelerator_log"eaccelerator.filter=""eaccelerator.shm_max="0"eaccelerator.shm_ttl="0"eaccelerator.shm_prune_period="0"eaccelerator.shm_only="0"eaccelerator.compress="1"eaccelerator.compress_level="9"eaccelerator.keys = "disk_only"eaccelerator.sessions = "disk_only"eaccelerator.content = "disk_only"2、xenextension="eaccelerator.so"eaccelerator.shm_size="64"eaccelerator.cache_dir="/tmp/eaccelerator"eaccelerator.enable="1"eaccelerator.optimizer="1"eaccelerator.check_mtime="1"eaccelerator.debug="0"eaccelerator.log_file = "/var/log/eaccelerator_log"eaccelerator.filter=""eaccelerator.shm_max="0"eaccelerator.shm_ttl="0"eaccelerator.shm_prune_period="0"eaccelerator.shm_only="0"eaccelerator.compress="1"eaccelerator.compress_level="9"eaccelerator.keys = "shm_and_disk"eaccelerator.sessions = "shm_and_disk"eaccelerator.content = "shm_and_disk"
2011年04月09日
21 阅读
0 评论
0 点赞
2011-04-09
小内存的福音debian+Nginx+php+mysql超节省内存脚本
手上有个buyvm年付的小鸡,一直浪费着,只是拿来翻墙用,最近决定安装一下这个省资源的脚本,也是LED的脚本改来的安装方法 wget http://vaman.googlecode.com/files/dlnmp1.3.shbash dlnmp1.3.sh全部安装好后,我只是只用了37M,刚才开启WINscp操作了以后变成41M 2.PNG (2.42 KB)2010-10-25 21:55 1.PNG (12.57 KB)2010-10-25 21:55使用方法1、web目录一般在var下面的www目录。如果没有,则自已建立一个(此脚本已安装)mkdir -p /var/wwwchown www-data:www-data -R /var/wwwchmod g+s -R /var/www/ 2、查看Mysql数据库的用户名和密码vim /root/.my.cnf 更改密码/usr/bin/mysqladmin -u root -p password aaaaEnter password:bbbb把bbbb改成aaaa3、添加站点vim /etc/nginx/sites-enabled/www.okvps.com.conf server {server_name www.okvps.com;root /var/www/www.okvps.com;include /etc/nginx/fastcgi_php;}重启nginx./restart.sh 4、安装phpmyadmin,http://ip/phpmyadmin可以登录(此脚本已安装phpmyadmin)apt-get -y install phpmyadminln -s /usr/share/phpmyadmin /var/www/phpmyadmin 5、探针地址:http://ip/p.php6、目录权限:chown -R www-date /var/www/web7、检验nginx/usr/sbin/nginx -t 出现如下提示则成功the configuration file /etc/nginx/nginx.conf syntax is okconfiguration file /etc/nginx/nginx.conf test is successful 8、重启nginx/usr/sbin/nginx -s reload youland整理
2011年04月09日
29 阅读
0 评论
0 点赞
2011-04-09
linux下502自动重启脚本
暂无简介
2011年04月09日
269 阅读
1 评论
0 点赞
1
...
16
17