source: networking/netprogs/rpcbind.xml@ 89f706b2

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 89f706b2 was 89f706b2, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Tags

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@18310 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY rpcbind-download-http "&sourceforge-repo;/rpcbind/rpcbind-&rpcbind-version;.tar.bz2">
8 <!ENTITY rpcbind-download-ftp " ">
9 <!ENTITY rpcbind-md5sum "cf10cd41ed8228fc54c316191c1f07fe">
10 <!ENTITY rpcbind-size "120 KB">
11 <!ENTITY rpcbind-buildsize "1.6 MB">
12 <!ENTITY rpcbind-time "less than 0.1 SBU">
13]>
14
15<sect1 id="rpcbind" xreflabel="rpcbind-&rpcbind-version;">
16 <?dbhtml filename="rpcbind.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>rpcbind-&rpcbind-version;</title>
24
25 <indexterm zone="rpcbind">
26 <primary sortas="a-rpcbind">rpcbind</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to rpcbind</title>
31
32 <para>The <application>rpcbind</application> program is a replacement for
33 <application>portmap</application>. It is required for import or export
34 of Network File System (NFS) shared directories. </para>
35
36 &lfs80_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&rpcbind-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&rpcbind-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &rpcbind-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &rpcbind-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &rpcbind-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &rpcbind-time;</para>
57 </listitem>
58 </itemizedlist>
59<!--
60 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
61 <itemizedlist spacing="compact">
62 <listitem>
63 <para>
64 Required patch:
65 <ulink url="&patch-root;/rpcbind-&rpcbind-version;-tirpc_fix-1.patch"/>
66 </para>
67 </listitem>
68 </itemizedlist>
69-->
70 <bridgehead renderas="sect3">rpcbind Dependencies</bridgehead>
71
72 <bridgehead renderas="sect4">Required</bridgehead>
73 <para role="required">
74 <xref linkend="libtirpc"/>
75 </para>
76
77 <para condition="html" role="usernotes">User Notes:
78 <ulink url="&blfs-wiki;/rpcbind"/></para>
79
80 </sect2>
81
82 <sect2 role="installation">
83 <title>Installation of rpcbind</title>
84
85 <para revision="systemd">
86 There should be a dedicated user and group to take control
87 of the <command>rpcbind</command> daemon after it is started.
88 Issue the following commands as the
89 <systemitem class="username">root</systemitem> user:
90 </para>
91
92<screen role="root" revision="systemd"><userinput>groupadd -g 28 rpc &amp;&amp;
93useradd -c "RPC Bind Daemon Owner" -d /dev/null -g rpc \
94 -s /bin/false -u 28 rpc</userinput></screen>
95
96 <!-- Packages should adapt to standards, not the other way around -->
97 <para>In order to get <application>rpcbind</application> to work
98 properly, first fix the package to use correct service name:</para>
99
100<screen><userinput>sed -i "/servname/s:rpcbind:sunrpc:" src/rpcbind.c</userinput></screen>
101
102 <para>Install <application>rpcbind</application> by running the following
103 commands:</para>
104
105<screen revision="sysv"><userinput>./configure --prefix=/usr \
106 --bindir=/sbin \
107 --with-rpcuser=root \
108 --enable-warmstarts \
109 --without-systemdsystemunitdir &amp;&amp;
110make</userinput></screen>
111
112<screen revision="systemd"><userinput>./configure --prefix=/usr \
113 --bindir=/sbin \
114 --enable-warmstarts \
115 --with-rpcuser=rpc &amp;&amp;
116make</userinput></screen>
117
118 <para>This package does not come with a test suite.</para>
119
120 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
121
122<screen role="root"><userinput>make install</userinput></screen>
123
124 </sect2>
125
126 <sect2 role="commands">
127 <title>Command Explanations</title>
128
129 <para revision="sysv"><command>--with-rpcuser=root</command>: This works
130 around an error in the configure script.</para>
131
132 <para revision="sysv"><command>--without-systemdsystemunitdir</command>:
133 This version of BLFS does not support systemd.</para>
134
135 <para revision="systemd"><parameter>--with-rpcuser=rpc</parameter>:
136 This switch is used so the <command>rpcbind</command> daemon will
137 run as an unprivileged user instead of the
138 <systemitem class="username">root</systemitem> user.</para>
139
140 </sect2>
141
142 <sect2 role="configuration">
143 <title>Configuring rpcbind</title>
144
145 <sect3 id="rpcbind-init">
146 <title><phrase revision="sysv">Boot Script</phrase>
147 <phrase revision="systemd">Systemd Unit</phrase></title>
148
149 <para>Install the
150 <phrase revision="sysv"><filename>/etc/rc.d/init.d/rpcbind</filename>
151 init script</phrase>
152 <phrase revision="systemd"><filename>rpcbind.service</filename>
153 unit</phrase> included in the
154 <xref linkend="bootscripts" revision="sysv"/>
155 <xref linkend="systemd-units" revision="systemd"/> package.</para>
156
157 <indexterm zone="rpcbind rpcbind-init" revision="sysv">
158 <primary sortas="f-rpcbind">rpcbind</primary>
159 </indexterm>
160
161 <indexterm zone="rpcbind rpcbind-init" revision="systemd">
162 <primary sortas="f-rpcbind">rpcbind.service</primary>
163 </indexterm>
164
165<screen role="root"><userinput>make install-rpcbind</userinput></screen>
166
167 </sect3>
168
169 </sect2>
170
171 <sect2 role="content">
172 <title>Contents</title>
173
174 <segmentedlist>
175 <segtitle>Installed Program</segtitle>
176 <segtitle>Installed Libraries</segtitle>
177 <segtitle>Installed Directories</segtitle>
178
179 <seglistitem>
180 <seg>rpcbind and rpcinfo</seg>
181 <seg>None</seg>
182 <seg>None</seg>
183 </seglistitem>
184 </segmentedlist>
185
186 <variablelist>
187 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
188 <?dbfo list-presentation="list"?>
189 <?dbhtml list-presentation="table"?>
190
191 <varlistentry id="rpcbind-prog">
192 <term><command>rpcbind</command></term>
193 <listitem>
194 <para>is a server that converts RPC program numbers into universal
195 addresses. It must be running on the host to be able to make RPC
196 calls on a server on that machine. </para>
197 <indexterm zone="rpcbind rpcbind-prog">
198 <primary sortas="b-rpcbind">rpcbind</primary>
199 </indexterm>
200 </listitem>
201 </varlistentry>
202
203 <varlistentry id="rpcinfo">
204 <term><command>rpcinfo</command></term>
205 <listitem>
206 <para>makes an RPC call to an RPC server and reports data according
207 to the requested options. </para>
208 <indexterm zone="rpcbind rpcinfo">
209 <primary sortas="b-rpcinfo">rpcinfo</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 </variablelist>
215
216 </sect2>
217
218</sect1>
Note: See TracBrowser for help on using the repository browser.