Autodesk Design Suite 3D Installation Guide - Page 109

ConsoleMessage Stopping Autodesk Network License

Page 109 highlights

#!/bin/sh ./etc/rc.common StartService() { ConsoleMessage "Starting Autodesk Network License Manager" /Users//NLM/lmgrd -c\ /Users//NLM/productlicense.lic -l\ /Users//NLM/debug.log } StopService() { ConsoleMessage "Stopping Autodesk Network License Manager" /Users//NLM/lmutil lmdown -q -all -force } RestartService() { ConsoleMessage "Restarting Autodesk Network License Manager" /Users//NLM/lmutil lmreread -c /Users//NLM/productlicense.lic } RunService "$1" 6 Grant the executable permission to the script by entering the following in Terminal: chmod +x adsknlm 7 Create a property list file named StartupParameters.plist and add it to the directory by entering the following in Terminal: { Description ="Autodesk Network License Manager"; Provides =("adsknlm")OrderPreference ="None"; Messages={start= "Starting Autodesk Network Manager Service"; stop= "Stopping Autodesk Network Manager Service"; };}{ 8 Move the startup item directory to /Library/StartupItems/ and modify your directory permission by entering the following in Terminal: Network Licensing | 103

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138

#!/bin/sh
./etc/rc.common
StartService() {
ConsoleMessage “Starting Autodesk Network License
Manager”
/Users/<user id>/NLM/lmgrd -c\
/Users/<user id>/NLM/productlicense.lic -l\
/Users/<user id>/NLM/debug.log
}
StopService() {
ConsoleMessage “Stopping Autodesk Network License
Manager”
/Users/<user id>/NLM/lmutil lmdown -q -all -force
}
RestartService() {
ConsoleMessage “Restarting Autodesk Network License
Manager”
/Users/<user id>/NLM/lmutil lmreread -c /Users/<user
id>/NLM/productlicense.lic
}
RunService “$1”
6
Grant the executable permission to the script by entering the following
in Terminal:
chmod +x adsknlm
7
Create a property list file named
StartupParameters.plist
and add it to the
directory by entering the following in Terminal:
{
Description
=”Autodesk Network License Manager”;
Provides
=(“adsknlm”)OrderPreference
=”None”;
Messages={start=
“Starting Autodesk Network Manager Service”;
stop=
“Stopping Autodesk Network Manager Service”;
};}{
8
Move the startup item directory to
/Library/StartupItems/
and modify your
directory permission by entering the following in Terminal:
Network Licensing |
103