rpc进程Linux,Linux下实现RPC编程

Linux 下面使用RPC需要使用到命令rpcgen.

在Linux下开发RPC程序流程如下:

1.写一个rpc程序

如test.x

2.使用rpcgen生成必须的文件,通常是客户端和服务器端以及头文件

$rpcgen test.x

3.使用rpcgen生成服务器端和客户端的C语言代码

$rpcgen -Ss -o test_server.c test.x

$rpcgen -Sc -o test_client.c test.x

4.生成Makefile

$rpcgen -Sm test.x>Makefile

5.编辑源文件,加入你想要的服务等

6.编辑Makefile,这很重要!

7.执行测试

问题:

1.服务器无法启动,错误如下:

Cannot register service: RPC: Unable to receive; errno = Connection refused

unable to register (TESTPROG, VERSION, udp).

解决方法:系统没有安装portmap或者没有启动portmap端口映射。

$ls /etc/init.d/

如果没有portmap则安装之

$sudo apt-get install portmap

如果有了,则启动

$sudo /etc/init.d/portmap start

还可以使用chkconfig设置系统开机启动的服务项,如将portmap加入开机启动:

$sudo chkconfig --level 2 -s portmap on

下面是开发一个rpc程序的具体流程,详见

http://zhoulifa.bokee.com/6128714.html

我在编程中遇到以下几个问题:

1.MySQL数据库错误

1)报告连接不上MySQL,代码如下

if(mysql_real_connect(conn,"127.0.0.1","root","password",

"database",0,NULL,0)){

fprintf(stderr,"%s\n%s\n",mysql_error(conn),

"数据库连接失败");

exit(1);

}

原因如下:判断语句错误,应该为if(mysql_real_connect(conn,...)==NULL){

...

}

2.更新数据失败

char *sql="update test_table set balance=1000 where id=1000";

result=mysql_query(conn,sql);

if(result==NULL){

.....

/*错误*/

}

原因如下:还是判断语句错误,由于更新操作不向查询

你可能感兴趣的:(rpc进程Linux)