Linux 开机启动[root@localhost]变成bash-3.2#解决方法
我只是记录一下命令,这个就可以搞定。
source .bashrc
login as: root
root@*****218’s password:
Last login: Thu Jul 1 22:06:47 2010 from 110.203.60.70
-bash-3.2# copy /etc/skel/.bashrc ~
-bash: copy: command not found
-bash-3.2# cp /etc/skel/.bashrc ~
-bash-3.2# source ~/.bashrc
[root@**** ~]#
不同的shell可以去切换:例:
[root@localhost ~]# bash
bash-3.2# sh
sh-3.2# tcsh
[root@localhost ~]# bash
bash-3.2# csh
[root@localhost ~]#
ERROR 2002 (HY000): Can't connect to local MySQL server through socket
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/usr/local/mysql/tmp/mysql.sock' (2)
--------------------------------------------------------------------------------
此类问题如,mysql.sock' 确实存在,请给mysql用户在tmp文件夹的足够权限!
用yum下载rpm包
Linux压力测试工具webbench的安装使用介绍
webbench文件下载:
http://at.liuxinxiu.com/2010/09/file/webbench-1_5_tar.gz
1、适用系统:Linux
2、编译安装:
- # wget ←下载源程序
- # tar zxvf webbench-1.5.tar.gz ←解压源文件
- # make ←编译程序
- # mkdir /usr/local/man ←建立相应目录(否则导致无法正常安装)
- # make install ←安装程序
使用方法/
webbench -c 500 -t 30 http://127.0.0.1/test.jpg
测试结果:
- # Webbench - Simple Web Benchmark 1.5
- # Copyright (c) Radim Kolar 1997-2004, GPL Open Source Software.
- # Benchmarking: GET http://127.0.0.1/test.jpg
- # 500 clients, running 30 sec.
- # Speed=3230 pages/min, 11614212 bytes/sec.
- # Requests: 1615 susceed, 0 failed.
webbench最多可以模拟3万个并发连接去测试网站的负载能力
yum -y remove httpd 如何默认有APACHE先卸载APACHE
spawn-fcgi是一个小程序,这个程序的作用是管理fast-cgi进程,功能和php-fpm类似
先YUM查找需要的库:
- yum -y install gcc gcc-c++ make imake autoconf automake
-
- yum -y install gcc gcc-c++ openssl openssl-devel pcre pcre-devel gdbm gdbm-devel libpng libpng-devel libjpeg-6b libjpeg-devel-6b freetype freetype-devel gd gd-devel zlib zlib-devel libXpm libXpm-devel ncurses ncurses-devel libmcrypt libmcrypt-devel libxml2 libxml2-devel libtool-ltdl libtool-ltdl-devel curl-devel
-
由于mysql编译比较慢我用yum安装了
yum -y install mysql-server mysql-devel
----------------------------------------------------------------------------------------------------
wget http://www.nginx.org/download/nginx-0.8.32.tar.gz
ls
tar zxvf nginx-0.8.32.tar.gz
cd nginx-0.8.32
- groupadd www
- useradd -g www -s /sbin/nologin -d /dev/null www
- ./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
- make && make install
- cd /usr/local/nginx/conf
- mv nginx.conf nginx.conf.bak
vim nginx.conf
=====================================================
- user www www;
-
- worker_processes 8;
-
- error_log logs/error.log crit;
-
- pid logs/nginx.pid;
-
- #Specifies the value for maximum file descriptors that can be opened by this process.
- worker_rlimit_nofile 65535;
-
- events
- {
- use epoll;
- worker_connections 65535;
- }
-
- http
- {
- include mime.types;
- default_type application/octet-stream;
-
- #charset gb2312;
-
- server_names_hash_bucket_size 128;
- client_header_buffer_size 32k;
- large_client_header_buffers 4 32k;
- client_max_body_size 8m;
-
- sendfile on;
- tcp_nopush on;
-
- keepalive_timeout 30;
-
- tcp_nodelay on;
-
- fastcgi_connect_timeout 300;
- fastcgi_send_timeout 300;
- fastcgi_read_timeout 300;
- fastcgi_buffer_size 64k;
- fastcgi_buffers 4 64k;
- fastcgi_busy_buffers_size 128k;
- fastcgi_temp_file_write_size 128k;
-
- gzip on;
- gzip_min_length 1k;
- gzip_buffers 4 16k;
- gzip_http_version 1.0;
- gzip_comp_level 2;
- gzip_types text/plain application/x-javascript text/css application/xml;
- gzip_vary on;
-
- include /usr/local/nginx/conf/vhosts/*.conf;
- }
-
========================================
mkdir vhosts
cd vhosts/
vim s157.com.conf
==============================
- server {
- listen 184.82.2.206:80;
- server_name s157.com www.s157.com;
-
- #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
- # '$status $body_bytes_sent "$http_referer" '
- # '"$http_user_agent" "$http_x_forwarded_for"';
- #access_log /usr/local/nginx/logs/www.access.log;
- access_log off;
-
- location / {
- root /ftp/s157;
- index index.html index.htm index.php;
-
- location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$ {
- expires 30d;
- }
-
- location ~ .*.(htm|html|js|css)$ {
- expires 1h;
- }
-
- }
-
- #error_page 404 =200 http://$host;
- #error_page 404 /404.html;
-
- location ~ .php$ {
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME /ftp/s157/$fastcgi_script_name;
- include fastcgi_params;
- }
-
-
- }
-
- =================================
- 其中 可有可无 功能是防盗链的
- location ~* .(gif|jpg|png|swf|flv)$ {
- valid_referers none blocked abc.com www.abc.com;
- if ($invalid_referer) {
- #rewrite ^/ http://www.abc.com/403.jpg;
- return 404;
- }
- }
- =============
然后 找了个针对 CentOS 的nginx重启控制脚本
chmod 755 nginx
cp nginx /etc/init.d/
/etc/init.d/nginx restart 测试能不能成功 启动 !!!!!!!!!!!!!
LIUXINXIU.COM - 定于凌晨3:30分,本站VPS自动重启设置/
# crontab -e
30 3 * * * /sbin/reboot
# /etc/rc.d/init.d/crond stop
# /etc/rc.d/init.d/crond start
----------------------------------------------------------
之后就不用理睬,每天凌晨3:30分会自动重启一次!如果不需要自动重启,删除红色的内容。重启CROND//
时间到了3:30分 VPS--SSH 自动断开。。。。
共5分钟完成重启,页面访问恢复正常。。。。。。如下:
-----------------------------------------------------------------------------------------------------------------------------------------------------
其他相关资料:
查看/修改Linux时区和时间
一、时区
1. 查看当前时区
date -R
2. 修改设置时区
方法(1)
tzselect
方法(2) 仅限于RedHat Linux 和 CentOS
timeconfig
方法(3) 适用于Debian
dpkg-reconfigure tzdata
3. 复制相应的时区文件,替换系统时区文件;或者创建链接文件
cp /usr/share/zoneinfo/$主时区/$次时区 /etc/localtime
在中国可以使用:
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
二、时间
1、查看时间和日期
date
2、设置时间和日期
将系统日期设定成1996年6月10日的命令
date -s 06/22/96
将系统时间设定成下午1点52分0秒的命令
date -s 13:52:00
3. 将当前时间和日期写入BIOS,避免重启后失效
hwclock -w
三、定时同步时间
* * * * * /usr/sbin/ntpdate 210.72.145.44 > /dev/null 2>&1
=====================================================
VPS修复系统默认美洲时间更改为:中国上海
凌晨3点设置了一个VPS自动重启脚本,本地虚拟机测试无误,晕@ 美国VPS无效,在本地做了测试,才发现是市区的问题。
本人VPS托至美国,新机自然是以美洲时间为标准,总是感觉不爽,比如设置系统自动定时重启等等////
服务器自动重启:http://liuxinxiu.com/s/54/
显示的国内的时间为凌晨3:01
美国VPS系统显示的时间为下午13:00
更新为中国--上海 时区之后,时间已经校正如下@!
LINUX服务器定时重启设置方法
为了保证LINUX系统的稳定运行,及时释放内存资源,CENTNET建议每台基于LINUX的CMC服务器,均每天设置定时重启功能.具体操作方法如下:
使用SSH工具成功登陆后台后,运行如下命令:
crontab -e
然后在文档中根据需要插入如下内容:
0 4 * * * /sbin/reboot ( 0 2表示每天凌晨两点重启.. 0 3表示凌晨3点..)
06 2 * * * /sbin/reboot ( 06 2表示每天凌晨两点零六分重启.. 06 3表示凌晨3点零6分..)
0 4 * * * /sbin/reboot ( 0 4表示每天凌晨四点重启.. 0 3表示凌晨3点..)
:wq保存退出后,执行如下命令重启crond 服务即可.
/etc/rc.d/init.d/crond stop
/etc/rc.d/init.d/crond start
-------------------------------------------------------------------------------------------------
设置系统时钟的操作:
# date 月日时分年.秒
例如:
# date 091713272003.30
SSH使用ROOT更改防火墙,放行80端口
Fedora - 13 虚拟机,成功构架了NGINX 使用内网IP无法访问。则防火墙未通过:
解决如下:
安装路径找到相关防火墙配置文件:
修改/etc/sysconfig/iptables 文件,默认的内容为:
--------------------------------------------------------------------------------
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
复制SSH(22)端口这一行,在以下添加80,更改为以下:
***************************************************************************
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
-A FORWARD -j REJECT --reject-with icmp-host-prohibited
COMMIT
***************************************************************************
[chkconfig ]
永久性生效,重启后不会复原。
开启: chkconfig iptables on
关闭: chkconfig iptables off
[service ]
即时生效,重启后复原。
开启: service iptables start
关闭: service iptables stop