2008/07/30

Ubuntu: LAMP 安装

没有评论:

LAMP套件就是Linux+Apache+Mysql+PHP这四款软件,组成了一个可以使网站运行的套装工具软件。其中P也可代指 PHP/Python/Perl。如果只用后台数据处理,可以考虑用python编写。当然python 也有网页功能。

版本:
Apache 2
Mysql 5.0
Php 5.1

1.搭建基本的web环境,我使用的是apache2 + php5 + mysql 5.0
sudo apt-get install apache2 mysql-server php5-mysql
2.(optional)解决用户登录时图形验证码无法显示的问题
apt-get install php5-gd
3. 安装mysql的web管理软件phpmyadmin
apt-get install phpmyadmin
4. 基于浏览器的图形化管理工具软件 webwin (http://www.webwin.com)

MySQL更改root密码
刚安装mysql后可执行 mysql -u root -p 加上密码。
方法1:
shell>mysqladmin -u root password new_password

方法2:
mysql> SET PASSWORD FOR root=PASSWORD(’new_password’);

方法3:使用 mysqladmin命令
shell> mysql -u root
mysql> UPDATE user SET Password=PASSWORD(’new_password’) WHERE user=’root’;
mysql> FLUSH PRIVILEGES;

2008/07/07

安装 Python for MySQL 的连接扩展

没有评论:

sudo apt-get install python-mysqldb

MySQLdb is an interface for connecting to a MySQL database server from Python. It implements the Python Database API v2.0 (http://www.python.org/dev/peps/pep-0249/), and is built on top of the MySQL C API. Can discuss using MySQL and Python in forum (http://forums.mysql.com/list.php?50).

一个Python访问mysql的 sample script
1. 建立一个 database 和 一个table:
mysql ->
create database my_db;
use my_db;
create table test(
id int,
name varchar(50)
);
insert into test values(1,”hello”);
insert into test values(2,”world”);

2.Python代码 sample.py

import MySQLdb
class Eb_db:
def __init__(self):
try:
connection = MySQLdb.connect(host=”localhost”, user=”root”, passwd=”123456″, db=”my_db” )
cursor = connection.cursor()
cursor.execute( “SELECT * FROM test ” )
except MySQLdb.OperationalError, message:
errorMessage = “Error %d:\n%s” % (message[ 0 ], message[ 1 ] […]

Another script:

#!/usr/bin/env python
# -*-coding:UTF-8-*-#这一句告诉python用UTF-8编码
"""
***** This is a MySQL test *****

select:
conn=Connection()
conn.select_db('test')
cur=conn.cursor()
cur.execute('select * from user')
cur.scroll(0)
row1=cur.fetchone()
row1[0]
row1[1]
row1[2]

insert:
cur.execute('insert into user (name,passwd) values(\'benyur\',\'12345\')')
cur.insert_id()

update:
cur.execute('update user set passwd=\'123456\' where name=\'benyur\'')

delete:
cur.execute('delete from user where id=2')

**********************************
"""

from MySQLdb import *

def conn():
conn=Connection()
conn.select_db('test')
cur=conn.cursor()
cur.execute('select * from user')
cur.scroll(0)
row1=cur.fetchone()
row1[0]
row1[1]
row1[2]

def usage():
print __doc__

if __name__=='__main__':
usage()

3. 使用
import MySQLdb
3.1. 连接
conn = MySQLdb.Connection(host, user, password, dbname)
3.2. 选择数据库
conn.select_db(’database name’)
3.3. 获得cursor
cur = conn.cursor()
3.4. cursor位置设定
cur.scroll(int, mode)
mode可为相对位置或者绝对位置,分别为relative和absolute。
3.5. select
cur.execute(‘select clause’)
例如
cur.execute(‘select * from mytable’)
row = cur.fetchall()
或者:
row1 = cur.fetchone()
3.6. insert
cur.execute(‘inset clause’)
例如
cur.execute(‘insert into table (row1, row2) values (\’111\’, \’222\’)’)
conn.commit()
3.7. update
cur.execute(‘update clause’)
例如
cur.execute(“update table set row1 = ‘’ where row2 = ‘row2 ‘ ”)
conn.commit()
3.8. delete
cur.execute(‘delete clause’)
例如
cur.execute(“delete from table where row1 = ‘row1’ ”)
conn.commit()

LAMP实例: 如何安装bbPress论坛系统

没有评论:
1. go to www.bbPress.org, and download software;
2. edit& save config-sample.php to config.php;
mysql> create database tigerbeach;
3. upload all package to /var/www directory (LAMP ready);
4. open http://155.69.149.85/ to run bb-admin/install.php.

bbPress: upgrade 0.8

(copied from bbpress.org)

To upgrade bbPress from a previous version takes just a few minutes.

First, you should always back up your files and your database in case something goes wrong.

Second, keep the following files and directories.

1. .htaccess
2. config.php
3. my-plugins/ (if you have it)
4. my-templates/ (if you have it)

and delete everything else.

Third, upload the newest version of bbPress to your server.

Fourth, log in and visit your bbPress’ admin panels. If you see an upgrade link instead of the normal screens, click it. If you don’t see an upgrade link (it would have been really obvious), continue to step five.

Fifth, sit back and relax; you’re done!


bbpress theme 主题:

mkdir my-tempates
在 ./my-templates/下拷贝了两个themes,但激活的时候有问题:告诉这是 themes for wordpress 。
需要修改才行!


Allow Images插件

With this plugin, users may include image tags in their posts. Currently the images only support pngs, gifs or jpegs.

== Installation ==
download "allow-images.php" from bbpress.org
Add the allow-images.php file to bbPress/my-plugins/ directory.

插入图片的 HTML 代码是:

csail-mit

<img alt="csail-mit" src="http://www.csail.mit.edu/images/csaillogo150.gif"
/>

所以现在也支持img 这个HTML 标签


MimeTex for WordPress & bbPress

mimetex http://www.forkosh.dreamhost.com/mimetex.html
是一个C语言编写的程序,它直接读入latex表达式,输出一个GIF文件(如果在linux下,输出一个ascii点阵)。编译成CGI文件后,放到支持CGI的服务器上就行了。mimetex如此强大,热门的blog,论坛程序都有专门开发的插件,WordPress也不例外。

1。将编译好的 mimetex.cgi (或直接下载 for linux http://www.forkosh.com/mimetex.exe/linux/mimetex.zip) 移到 /usr/lib/cgi-bin/ 目录下
sudo mv mimetex.cgi /usr/lib/cgi-bin/

访问以下网址,如果正常显示则 mimetex.cgi安装成功
http://155.69.149.85/cgi-bin/mimetex.cgi?x^2+y^2

注: Ubuntu 下 cgi-bin 目录在 apache配置文件中定义
cd /etc/apache2/sites-available
vi default
...
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
...

2 在 http://zhiqiang.org/blog/plugin/mimetex 下载一个 mimetex for bbpress的插件, 拷贝这两个文件 mimetex-plugin.php and Snoopy.class.php 到目录 my-plugins/ 。然后到bbpress admin中激活该插件。修改mimetex-plugin.php的$mimetex_server变量:

// change it to your server
$mimetex_server = "http://localhost/cgi-bin/mimetex.cgi"

// cache directory
$cache_path = BBPATH . '/bb-cache/';

修改 bb-cache/ 目录为可写
sudo chmod 777 bb-cache

3 如果显示 $$x^2+y^2=z^2$$ 而不是 x^2+y^2=z^2,则插件安装成功。

4. 目前是用 两个美元符号把公式括起来(如同latex ),如要修改,则
在mimitex-plugin.php 中 改 function parseTex() 中的变量 $regex

一个直接输入数学公式并直接以图片输出该公式的方法!!

***用此方法的前提是懂得Latex语言,即数学符号的代码,代如根号x就是\sqrt(x),a/b就是\frac{a}{b},等等...***
操作如下:
例如我要输入公式 a^2+b^2=c^2
那么我们只需输入
[img]http://www.imathas.com/cgi-bin/mimetex.cgi?a^2+b^2=c^2[/img ]

或者在bbpress中img tag可以接受如下形式:
<img src="http://www.imathas.com/cgi-bin/mimetex.cgi?a^2+b^2=c^2"
/>



mysqldump 备份:导入和导出

没有评论:

导出整个数据库

mysqldump -u 用户名 -p 数据库名 > 导出的文件名

导入数据库

mysql> create database gsmloc;
mysql> use gsmloc ;
mysql> source gsmloc.sql ;

MySQL 基本知识

一、连接MYSQL。

格式: mysql -h主机地址 -u用户名 -p用户密码
1、例1:连接到本机上的MYSQL。
首先在打开DOS窗口,然后进入目录 mysqlbin,再键入命令mysql -uroot -p,回车后提示你输密码,如果刚安装好MYSQL,超级用户root是没有密码的,故直接回车即可进入到MYSQL中了,MYSQL的提示符是:mysql>
2、例2:连接到远程主机上的MYSQL。假设远程主机的IP为:110.110.110.110,用户名为root,密码为abcd123。则键入以下命令:
mysql -h110.110.110.110 -uroot -pabcd123
(注:u与root可以不用加空格,其它也一样)
3、退出MYSQL命令: exit (回车)

二、修改密码。

格式:mysqladmin -u用户名 -p旧密码 password 新密码
1、例1:给root加个密码ab12。首先在DOS下进入目录mysqlbin,然后键入以下命令
mysqladmin -uroot -password ab12
注:因为开始时root没有密码,所以-p旧密码一项就可以省略了。
2、例2:再将root的密码改为djg345。
mysqladmin -uroot -pab12 password djg345

三、增加新用户。

(注意:和上面不同,下面的因为是MYSQL环境中的命令,所以后面都带一个分号作为命令结束符)

格式:grant select on 数据库.* to 用户名@登录主机 identified by "密码"
例1、增加一个用户test1密码为abc,让他可以在任何主机上登录,并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入MYSQL,然后键入以下命令:
grant select,insert,update,delete on *.* to test1@"%" Identified by "abc";
但例1增加的用户是十分危险的,你想如某个人知道test1的密码,那么他就可以在internet上的任何一台电脑上登录你的mysql数据库并对你的数据可以为所欲为了,解决办法见例2。
例2、增加一个用户test2密码为abc,让他只可以在localhost上登录,并可以对数据库mydb进行查询、插入、修改、删除的操作 (localhost指本地主机,即MYSQL数据库所在的那台主机),这样用户即使用知道test2的密码,他也无法从internet上直接访问数据 库,只能通过MYSQL主机上的web页来访问了。
grant select,insert,update,delete on mydb.* to test2@localhost identified by "abc";
如果你不想test2有密码,可以再打一个命令将密码消掉。
grant select,insert,update,delete on mydb.* to test2@localhost identified by "";

(下篇)
在上篇我们讲了登录、增加用户、密码更改等问题。下篇我们来看看MYSQL中有关数据库方面的操作。注意:你必须首先登录到MYSQL中,以下操作都是在MYSQL的提示符下进行的,而且每个命令以分号结束。

操作技巧
1、如果你打命令时,回车后发现忘记加分号,你无须重打一遍命令,只要打个分号回车就可以了。也就是说你可以把一个完整的命令分成几行来打,完后用分号作结束标志就OK。
2、你可以使用光标上下键调出以前的命令。

四、显示命令

1、显示数据库列表。
show databases;
刚开始时才两个数据库:mysql和test。mysql库很重要它里面有MYSQL的系统信息,我们改密码和新增用户,实际上就是用这个库进行操作。

2、显示库中的数据表:
use mysql;
show tables;


3、显示数据表的结构:
describe 表名;


4、建库:
create database 库名;

5、建表:
use 库名;
create table 表名 (字段设定列表);

6、删库和删表:
drop database 库名;
drop table 表名;


7、将表中记录清空:
delete from 表名;

8、显示表中的记录:
select * from 表名;


五、一个建库和建表以及插入数据的实例

drop database if exists school; //如果存在SCHOOL则删除
create database school; //建立库SCHOOL
use school; //打开库SCHOOL
create table teacher //建立表TEACHER
(
id int(3) auto_increment not null primary key,
name char(10) not null,
address varchar(50) default '深圳',
year date
); //建表结束
//以下为插入字段
insert into teacher values('','glchengang','深圳一中','1976-10-10');
insert into teacher values('','jack','深圳一中','1975-12-23');

注:在建表中

(1)将ID设为长度为3的数字字段:int(3)并让它每个记录自动加一:auto_increment并不能为空:not null而且让他成为主字段primary key

(2)将NAME设为长度为10的字符字段

(3)将ADDRESS设为长度50的字符字段,而且缺省值为深圳。varchar和char有什么区别 呢,只有等以后的文章再说了。

(4)将YEAR设为日期字段。

如果你在mysql提示符键入上面的命令也可以,但不方便调试。你可以将以上命令原样写入一个文本文件中假设为school.sql,然后复制到c:\下,并在DOS状态进入目录\mysql\bin,然后键入以下命令:

mysql -uroot -p密码 <>

如果成功,空出一行无任何显示;如有错误,会有提示。(以上命令已经调试,你只要将//的注释去掉即可使用)。


六、将文本数据转到数据库中

1、文本数据应符合的格式:字段数据之间用tab键隔开,null值用\n来代替.
例:
3 rose 深圳二中 1976-10-10
4 mike 深圳一中 1975-12-23

2、数据传入命令 load data local infile "文件名" into table 表名;

注意:你最好将文件复制到\mysql\bin目录下,并且要先用use命令打表所在的库 。


七、备份数据库

mysqldump --opt school>school.bbb

注释:将数据库school备份到school.bbb文件,school.bbb是一个文本文件,文件名任取,打开看看你会有新发现。