You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -157,6 +158,7 @@ Apple macOS | [Node-oracledb Installation on macOS](#instosx)
157
158
Linux. My database is on another machine | [Node-oracledb Installation on Linux with Instant Client RPMs](#instrpm) or [Node-oracledb Installation on Linux with Instant Client ZIP files](#instzip)
158
159
Linux. My database is on the same machine as Node.js | [Node-oracledb Installation on Linux with a Local Database or Full Client](#instoh)
159
160
Linux. I have the full Oracle client (installed via `runInstaller`) on the same machine as Node.js | [Node-oracledb Installation on Linux with a Local Database or Full Client](#instoh)
161
+
Linux. I want to install Node.js and node-oracledb RPM packages | [Installing Node.js and Node-oracledb RPMs from yum.oracle.com](#instnoderpms)
160
162
AIX on Power Systems | [Node-oracledb Installation on AIX on Power Systems with Instant Client ZIP files](#instaix)
161
163
Solaris x86-64 (64-Bit) | [Node-oracledb Installation on Oracle Solaris x86-64 (64-Bit) with Instant Client ZIP files](#instsolarisx8664)
162
164
Another OS with Oracle Database 11.2 or 12c, or client libraries available | Update binding.gyp and make any code changes required, sign the [OCA][8], and submit a pull request with your patch.
@@ -1490,6 +1492,46 @@ npm package:
1490
1492
```
1491
1493
from outside the directory.
1492
1494
1495
+
### <aname="instnoderpms"></a> 3.13 Installing Node.js and Node-oracledb RPMs from yum.oracle.com
1496
+
1497
+
Node.js Linux RPM packages are available on [yum.oracle.com][46].
1498
+
1499
+
As an example, to install Node 8 on Oracle Linux 7, run these commands
1500
+
as the root user:
1501
+
1502
+
```
1503
+
cd /etc/yum.repos.d
1504
+
mv public-yum-ol7.repo public-yum-ol7.repo.bak
1505
+
wget http://yum.oracle.com/public-yum-ol7.repo
1506
+
yum install yum-utils
1507
+
yum-config-manager --enable ol7_developer_nodejs8
1508
+
yum install nodejs
1509
+
```
1510
+
1511
+
Download the Oracle Instant Client Basic package from [Instant Client
1512
+
Downloads for Linux x86-64 (64-bit)][12] and install it:
0 commit comments