Control Web Panel
WebPanel => CentOS 8 Problems => Topic started by: adrianofnatal on September 20, 2024, 01:04:54 PM
-
Hi!
I have a CWP Pro server with Nodejs applications and want to allow users to run node commands like "npm run build" in shell access.
I'm testing with one user that already runs Nodejs applications but can't run these commands on shell.
It said:
-bash: npm: command not found
There something missed on CWP pannel user's configuration?
Thanks!
-
Try:
/opt/nvm/versions/node/vXX.XX.XX/bin/npm
where vXX.XX.X is the version of nodejs you want to use (v14.15.3, v16.20.2, etc).
-
Hi!
I got this:
[xxxx@xxxx ~]$ /opt/nvm/versions/node/v18.19.1/bin/npm
/usr/bin/env: ‘node’: No such file or directory
inside /opt/nvm/versions/node/v18.19.1/bin/ I have:
drwxr-xr-x 2 xxxx xxxx 56 Feb 13 2024 .
drwxr-xr-x 6 root root 108 Mar 22 2024 ..
lrwxrwxrwx 1 xxxx xxxx 45 Feb 13 2024 corepack -> ../lib/node_modules/corepack/dist/corepack.js
-rwxr-xr-x 1 xxxx xxxx 91859064 Feb 13 2024 node
lrwxrwxrwx 1 xxxx xxxx 38 Feb 13 2024 npm -> ../lib/node_modules/npm/bin/npm-cli.js
lrwxrwxrwx 1 xxxx xxxx 38 Feb 13 2024 npx -> ../lib/node_modules/npm/bin/npx-cli.js
xxxx is the customer user.
If I run that "node" file above, it runs, but npm (link above) not run.
I installed node environment using CWP server web interface, all automatic.
Thanks!
-
Run:
export PATH=/opt/nvm/versions/node/vXX.XX.XX/bin:$PATH
in shell as the regular user and then:
/opt/nvm/versions/node/vXX.XX.XX/bin/npm
If it work then just add:
export PATH=/opt/nvm/versions/node/vXX.XX.XX/bin:$PATH
into ~/.bashrc of the user (if the user uses bash)
-
Hi!
Worked!
This could be added to CWP new implementation as automatically in case user account has NodeJS enabled.
Thank you!