简体   繁体   中英

/usr/local/bin/qtpasswd: No such file or directory

I'm Trying to install Darwin Streaming Server on virtualbox ubuntu desktop amd64. Running the darwin setup at the end gives this

./Install: line 406: /usr/local/bin/qtpasswd: No such file or directory
./Install: line 406: /usr/local/bin/qtpasswd: No such file or directory
Setup Complete!

And When I hit the url on the browser it says "Server is not running please start it before attempting to administer it".

you can post your complete installing log. i run into the same error prompt as yours while i build my Darwin Stream Server-5.5.5 source on centOS6.5 .

you can modify part of the installing script "Install" (about line 191)

# Add the unprivileged user qtss as the server's run user
echo "Creating unprivileged user to run the server = \"qtss\"."
if [ $INSTALL_OS = "Linux" ]; then
    /usr/sbin/useradd -M qtss > /dev/null 2>&1
else
    /usr/sbin/useradd qtss > /dev/null 2>&1
fi

into

# Add the unprivileged user qtss as the server's run user
echo "Creating unprivileged user to run the server = \"qtss\"."
if [ $INSTALL_OS = "Linux" ]; then

groupadd -r qtss

/usr/sbin/useradd -M -r -g qtss qtss > /dev/null 2>&1

else
    /usr/sbin/useradd qtss > /dev/null 2>&1
fi

then try to run ./Install again. it works for me.

make sure you have installed perl before you run ./Install

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM