Showing posts with label Applications. Show all posts
Showing posts with label Applications. Show all posts

Sunday, 21 February 2016

How to Add FTP User With LinuxIn Feburary 2016 21,

In Feburary 2016 21,
Log in to the FTP server as user 'root.' Start a shell by either logging in in text mode, or by launching a terminal window from graphical mode. The specific way of performing this step depends on the Linux distribution. For example, for Ubuntu Linux, click on 'Applications' on the taskbar at the top of the screen, then select 'Terminal.'
Create the new FTP user by entering the following command into the shell:adduser -c 'Jake Nix (FTP)' -m jakenixReplace 'Jake Nix' with the user's full name, and 'jakenix' with the user name he will use to access the FTP server.
Set a password for the new account by entering the following command into the shell:passwd jakenixPress 'Enter,' then enter the same password twice, pressing 'Enter' after each time.
Configure the FTP server to make FTP accounts correspond to accounts local to the server, by adding the following line to file '/etc/vsftpd.conf' with a text editor:local_enable=YESSave the file and exit the text editor.
Restart the FTP server to make it read the change to its configuration, by entering the following command into the shell:service vsftpd restartPress 'Enter.' At that point, the new user will have been added to the FTP server, and the server will be ready to accept FTP connections from the new user.
In Feburary 2016 21,

Friday, 19 February 2016

How to Install Microsoft.SQLServer.ManagedDTSIn Feburary 2016 19,

In Feburary 2016 19,
Right-click the 'My Computer' icon on your server's desktop. Select 'Manage' to open the computer management window.
Click the icon labeled 'Service and Applications' in the 'Computer Management' console. In the list of options shown, click 'Services.' This lists all the services installed on the machine.
Right-click the service labeled 'DTS Server.' Select 'Start.' This starts the DTS service on the machine, but the next time you boot, the service is not started. Double-click the 'DTS Server' service to open its properties.
Select 'Automatic' from the drop-down box labeled 'Startup type.' Setting the service to automatic allows it to run each time you reboot the computer.
In Feburary 2016 19,